448191 Posted June 11, 2008 Share Posted June 11, 2008 I've been trying to get Postfix setup, and it didn't seem too hard, but I can't make remote connections :-\ From the server itself, I'm able to telnet 25, auth and all... From the outside the connection times out. I have every possible firewall disabled, domain and subdomain can be resolved. Here's my config: smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU) biff = no append_dot_mydomain = no myhostname = * mydomain = * myorigin = $mydomain inet_interfaces = all mydestination = $mydomain, localhost.$mydomain, localhost mynetworks = 127.0.0.0/8 smtpd_sasl_auth_enable = yes smtpd_sasl_security_options = noanonymous smtpd_sasl_local_domain = $mydomain broken_sasl_auth_clients = yes smtpd_sender_restrictions = reject_unknown_sender_domain, reject_unverified_sender smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination Quote Link to comment Share on other sites More sharing options...
448191 Posted June 11, 2008 Author Share Posted June 11, 2008 SOMEWHERE, port 25 was being blocked. So I created a new entry in master.cf to listen to a different port, it connects fine now. Still, strange. Quote Link to comment Share on other sites More sharing options...
steviewdr Posted June 12, 2008 Share Posted June 12, 2008 Do a netstat -tap. It should have: tcp 0 0 *:smtp *:* LISTEN - (if there is a localhost/127.0.0.1:smtp, its bound to localhost only) A lot of ISPs block port 25 to prevent spam from been sent via hijacked pcs. Its strange to see incoming traffic on port 25 to be blocked however. -steve Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.