Commit f184a74f authored by Joshua Tauberer's avatar Joshua Tauberer

merge #647 - open the port for Sieve

parents 3fbbf569 682b1dea
CHANGELOG CHANGELOG
========= =========
In Development
--------------
Mail:
* The Sieve port is now open so tools like the Thunderbird Sieve program can be used to edit mail filters.
v0.15 (January 1, 2016) v0.15 (January 1, 2016)
----------------------- -----------------------
......
...@@ -71,7 +71,6 @@ def run_services_checks(env, output, pool): ...@@ -71,7 +71,6 @@ def run_services_checks(env, output, pool):
{ "name": "OpenDKIM", "port": 8891, "public": False, }, { "name": "OpenDKIM", "port": 8891, "public": False, },
{ "name": "OpenDMARC", "port": 8893, "public": False, }, { "name": "OpenDMARC", "port": 8893, "public": False, },
{ "name": "Memcached", "port": 11211, "public": False, }, { "name": "Memcached", "port": 11211, "public": False, },
{ "name": "Sieve (dovecot)", "port": 4190, "public": False, },
{ "name": "Mail-in-a-Box Management Daemon", "port": 10222, "public": False, }, { "name": "Mail-in-a-Box Management Daemon", "port": 10222, "public": False, },
{ "name": "SSH Login (ssh)", "port": get_ssh_port(), "public": True, }, { "name": "SSH Login (ssh)", "port": get_ssh_port(), "public": True, },
...@@ -80,6 +79,7 @@ def run_services_checks(env, output, pool): ...@@ -80,6 +79,7 @@ def run_services_checks(env, output, pool):
{ "name": "Outgoing Mail (SMTP 587/postfix)", "port": 587, "public": True, }, { "name": "Outgoing Mail (SMTP 587/postfix)", "port": 587, "public": True, },
#{ "name": "Postfix/master", "port": 10587, "public": True, }, #{ "name": "Postfix/master", "port": 10587, "public": True, },
{ "name": "IMAPS (dovecot)", "port": 993, "public": True, }, { "name": "IMAPS (dovecot)", "port": 993, "public": True, },
{ "name": "Mail Filters (Sieve/dovecot)", "port": 4190, "public": True, },
{ "name": "HTTP Web (nginx)", "port": 80, "public": True, }, { "name": "HTTP Web (nginx)", "port": 80, "public": True, },
{ "name": "HTTPS Web (nginx)", "port": 443, "public": True, }, { "name": "HTTPS Web (nginx)", "port": 443, "public": True, },
] ]
......
...@@ -203,5 +203,8 @@ chown -R mail.mail $STORAGE_ROOT/mail/sieve ...@@ -203,5 +203,8 @@ chown -R mail.mail $STORAGE_ROOT/mail/sieve
ufw_allow imaps ufw_allow imaps
ufw_allow pop3s ufw_allow pop3s
# Allow the Sieve port in the firewall.
ufw_allow sieve
# Restart services. # Restart services.
restart_service dovecot restart_service dovecot
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment