use secure pop3 server

This commit is contained in:
Andris Reinman 2017-12-22 18:32:53 +02:00
parent e4ac01bd58
commit 8425671aa6
2 changed files with 4 additions and 4 deletions

View file

@ -1,12 +1,11 @@
# If enabled then Wild Duck exposes a limited POP3 interface for listing and fetching emails
enabled=true
port=9110
port=9995
# by default bind to localhost only
host="0.0.0.0"
# Use `true` for port 995 and `false` for 110. Try to always use `true` as the included
# POP3 server is limited and does not support the STLS command
secure=false
# Use `true` for port 995 and `false` for 110
secure=true
# If true, then do not show server info in CAPA response
disableVersionString=false

View file

@ -350,6 +350,7 @@ ufw allow 443/tcp
ufw allow 25/tcp
ufw allow 587/tcp
ufw allow 993/tcp
ufw allow 995/tcp
ufw --force enable
#### SSL CERTS ####