mailinabox/tools/editconf.py

8 lines
171 B
Python
Raw Normal View History

#!/usr/bin/python3
2020-04-17 18:16:31 +00:00
from os import system
from sys import argv
2020-04-17 17:54:13 +00:00
# Pass control to the actual script
2020-04-17 21:21:06 +00:00
system(f"management/editconf.py {' '.join(str(x) for x in argv[1:])}")