power-mailinabox/tools/editconf.py
2020-04-17 22:16:08 +01:00

7 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])}")