Make DC options explicit
This commit is contained in:
parent
eeb387d694
commit
1b7b0a5bc8
2 changed files with 10 additions and 10 deletions
|
|
@ -25,19 +25,19 @@ def run_madmail_installer():
|
|||
child.expect("Configuration directory")
|
||||
child.sendline("")
|
||||
child.expect("TLS mode")
|
||||
child.sendline("")
|
||||
child.sendline("self_signed")
|
||||
child.expect("Disable TLS verification for clients")
|
||||
child.sendline("y")
|
||||
child.expect("SMTP port")
|
||||
child.sendline("")
|
||||
child.sendline("25")
|
||||
child.expect("Submission port")
|
||||
child.sendline("")
|
||||
child.sendline("587")
|
||||
child.expect("Submission TLS port")
|
||||
child.sendline("")
|
||||
child.sendline("465")
|
||||
child.expect("IMAP port")
|
||||
child.sendline("")
|
||||
child.sendline("143")
|
||||
child.expect("IMAP TLS port")
|
||||
child.sendline("")
|
||||
child.sendline("993")
|
||||
child.expect("Allow insecure")
|
||||
child.sendline("n")
|
||||
child.expect("Enable chatmail endpoint for user registration")
|
||||
|
|
@ -47,9 +47,9 @@ def run_madmail_installer():
|
|||
child.expect("Chatmail HTTPS port")
|
||||
child.sendline("8443")
|
||||
child.expect("Chatmail username length")
|
||||
child.sendline("")
|
||||
child.sendline("8")
|
||||
child.expect("Chatmail password length")
|
||||
child.sendline("")
|
||||
child.sendline("16")
|
||||
child.expect("Enable Shadowsocks proxy for faster messaging")
|
||||
child.sendline("n")
|
||||
child.expect("Enable TURN server")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue