1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-07-05 23:30:55 +00:00
mailinabox/tools/editconf.py
2020-04-17 22:21:06 +01:00

8 lines
171 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 {' '.join(str(x) for x in argv[1:])}")