From 8425671aa6f33ce0d3a1c2a16ceeec22b46b6115 Mon Sep 17 00:00:00 2001 From: Andris Reinman Date: Fri, 22 Dec 2017 18:32:53 +0200 Subject: [PATCH] use secure pop3 server --- config/pop3.toml | 7 +++---- setup/install.sh | 1 + 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/pop3.toml b/config/pop3.toml index c9378fa8..c4cfa3a9 100644 --- a/config/pop3.toml +++ b/config/pop3.toml @@ -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 diff --git a/setup/install.sh b/setup/install.sh index 8d1885cc..3ec922d0 100755 --- a/setup/install.sh +++ b/setup/install.sh @@ -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 ####