espelhamento de
https://github.com/mail-in-a-box/mailinabox.git
sincronizado 2026-09-12 00:18:59 +02:00
8 linhas
171 B
Python
Arquivo Executável
8 linhas
171 B
Python
Arquivo Executável
#!/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:])}")
|