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 Link to comment https://forums.phpfreaks.com/topic/109728-setting-up-postfix-cant-connect-remotely-on-port-25/ 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. Link to comment https://forums.phpfreaks.com/topic/109728-setting-up-postfix-cant-connect-remotely-on-port-25/#findComment-563097 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 Link to comment https://forums.phpfreaks.com/topic/109728-setting-up-postfix-cant-connect-remotely-on-port-25/#findComment-563823 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.