mailinabox/tools/editconf.py

8 lines
146 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 19:53:49 +00:00
system(f"management/editconf.py {*argv[1:]}")