On Fri, Oct 10, 2003 at 10:37:25AM +0100, Miguel Cabe�a wrote: > I think you didn't understand what I wrote. > Let me make a drawing: > > Client Server > --- imap ---> imapd with STLS (xxx.xxx.xxx.xxx:143)---> mail > --- pop3 ---> pop3d with STLS (xxx.xxx.xxx.xxx:110) ---> mail > --- imaps ---> imapd-ssl (xxx.xxx.xxx.xxx:993) ---> mail > --- pop3s ---> pop3d-ssl (xxx.xxx.xxx.xxx:995) ---> mail > --- https ---> apache with mod_ssl (webmail) (xxx.xxx.xxx.xxx:443) > ---> imap ---> imapd without STLS > (127.0.0.1:143)---> mail
Hello Miguel, you did not tell, which OS you are running, assuming it is Linux, I just did add a iptables-rule to exclude non-SSL access via all devices except the loopback device: iptables -I INPUT -i ! lo -p tcp --dport 143 -j DROP Regards Mirko ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. SourceForge.net hosts over 70,000 Open Source Projects. See the people who have HELPED US provide better services: Click here: http://sourceforge.net/supporters.php _______________________________________________ courier-users mailing list [EMAIL PROTECTED] Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users
