My ISP blocked my port 25 (comcast), so I can't send mailout (via postfix). Can I modify to send mail out on 587 or so? I'm having issues figuring it out correctly.
feedback
|
migrated from stackoverflow.com May 18 '11 at 5:23
This question came from our site for professional and enthusiast programmers.
|
You may want to use port 587 as the submission port for SMTP mail rather than 25 (many ISPs block port 25), you will need to edit /etc/postfix/master.cf to uncomment the relevant line for port 587 there. | |||
feedback
|
|
May be this link will help you: http://www.freebsddiary.org/postfix-transport.php | |||
feedback
|
|
Do you want to relay mail through the Comcast mail server? If so, checkout this article. | |||||
feedback
|
|
You can configure Postfix to send mail to port 587 of other servers. The problem is that they won't accept it. 587, the "Message submission" port, is strictly limited to users sending outgoing mail, and always requires authentication; for mail incoming from other servers, only port 25 is used. | |||
|
feedback
|
