changelog/status checks updated for opening the sieve port

This commit is contained in:
Joshua Tauberer 2016-01-01 17:53:05 -05:00
parent 2835d9b468
commit 682b1dea5e
2 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,13 @@
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 Release Candidate
-----------------------

View File

@ -71,7 +71,6 @@ def run_services_checks(env, output, pool):
{ "name": "OpenDKIM", "port": 8891, "public": False, },
{ "name": "OpenDMARC", "port": 8893, "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": "SSH Login (ssh)", "port": get_ssh_port(), "public": True, },
@ -80,6 +79,7 @@ def run_services_checks(env, output, pool):
{ "name": "Outgoing Mail (SMTP 587/postfix)", "port": 587, "public": True, },
#{ "name": "Postfix/master", "port": 10587, "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": "HTTPS Web (nginx)", "port": 443, "public": True, },
]