Enable SMTP Port 587 on Exim
Most of the ISP block port 25 for outgoing SMTP. To enable Port 587 on exim, add this configuration to Exim’s configuration file.
daemon_smtp_ports = 25 : 587
Alternatively, with latest exim configuration file, uncomment the line below and you might want to remove 465.
# daemon_smtp_ports = 25 : 465 : 587
After that, save your configuration and restart exim service.
Test on Port 587
After exim service has restarted, make a telnet test to port 587
shell> telnet localhost 587
Connected? If yes, it means Exim on SMTP Port 587 is enabled now.
Related posts:
- Configure Smarthost SMTP Authentication on Postfix My machine at home cannot send email using port 25,...
- How to Enable check_dns on Nagios Monitoring System Most user who are new to Nagios doesn’t know there...
- Exim, refused: too many connections One of our mailserver having problem last week. It’s caused...
- Exim: Restrict Authenticated Outgoing Email with Sender Domain Most of the outgoing SMTP server allowed the user to...
- freebsd port update, monitor outdated port with portsnap we have about 15 freebsd servers with us, ranging from...
- Disabled Sendmail Service on FreeBSD Disabled Sendmail Service on FreeBSD is slightly different compare to...
- Star Wars ASCII Animation Through Telnet Telnet to mail server port? telnet to web server port?...
- Force Email Delivery on Exim Hundred emails are queuing on your mail relay server, and...
- How to Enable Suidperl in FreeBSD Enable Suidperl In FreeBSD Due to security issues, by default...
- Enable SSHD on FreeBSD I believe most system admin does remote access to the...