mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-07-13 00:40:54 +00:00
8 lines
146 B
Python
Executable File
8 lines
146 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
from os import system
|
|
from sys import argv
|
|
|
|
# Pass control to the actual script
|
|
system(f"management/editconf.py {*argv[1:]}")
|