diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | lib/network/drakfirewall.pm | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -1,3 +1,5 @@ +- drakfirewall: list SSL flavor of POP3/IMAP/SMTP ports + 1.3: - hostname: update the /etc/hostname (new x-distro standard) file on hostname change (#2983) diff --git a/lib/network/drakfirewall.pm b/lib/network/drakfirewall.pm index baac49e..9c5f0f5 100644 --- a/lib/network/drakfirewall.pm +++ b/lib/network/drakfirewall.pm @@ -39,12 +39,12 @@ my @all_servers = { name => N_("Mail Server"), pkg => 'sendmail postfix qmail exim', - ports => '25/tcp', + ports => '25/tcp 465/tcp', }, { name => N_("POP and IMAP Server"), pkg => 'imap courier-imap-pop', - ports => '109/tcp 110/tcp 143/tcp', + ports => '109/tcp 110/tcp 143/tcp 993/tcp 995/tcp', }, { name => N_("Telnet server"), |