Troubleshooting Delivery Issues

Troubleshooting SMTP Relay Issues in VPS Hosting: A Comprehensive Guide

Published · Updated 3 min read
Knowledge base article
Contents (11 sections)

Introduction

SMTP (Simple Mail Transfer Protocol) relay issues can significantly disrupt email delivery on a VPS (Virtual Private Server), causing email failures, delays, or rejections. Misconfigurations, firewall restrictions, authentication failures, and DNS errors are common culprits.

This guide provides a structured, step-by-step approach to diagnosing and resolving SMTP relay problems in a VPS hosting environment.


Common Causes of SMTP Relay Issues

SMTP Server Misconfiguration
Network or Firewall Blocking SMTP Ports
Authentication & Authorization Failures
Incorrect DNS Records (MX, SPF, DKIM, DMARC)
TLS/SSL Certificate Issues
Server Blacklisting & Greylisting

Identifying the root cause is the first step toward an effective fix!


Diagnosing SMTP Relay Problems

1. Check the SMTP Error Message

Review SMTP response codes when an email fails to send:

Common SMTP Error Codes:

  • 550 Relay Access Denied Server rejects email relay

  • 451 Temporary Local Problem DNS or server overload

  • 530 Authentication Required SMTP authentication missing

Use logs & error messages as clues to proceed further.

Check Mail Logs:

code
tail -f /var/log/mail.log # Postfix Logs
tail -f /var/log/exim_mainlog # Exim Logs

2. Checking Network & Firewall Settings

SMTP ports may be blocked by the firewall or hosting provider.

Allow SMTP Ports in UFW Firewall:

code
sudo ufw allow 25
sudo ufw allow 465
sudo ufw allow 587
sudo ufw enable

Allow SMTP Traffic in iptables:

code
sudo iptables -A INPUT -p tcp --dport 25 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 465 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 587 -j ACCEPT
sudo systemctl restart ufw

Important: Some VPS providers block port 25. If so, use port 465 or 587 instead!


3. Verifying SMTP Server Configuration

Ensure your mail server (Postfix, Exim, etc.) is correctly configured.

Check Configuration Files:

  • Postfix: /etc/postfix/main.cf

  • Exim: /etc/exim/exim.conf

Key SMTP Settings to Verify:

code
myhostname = mail.yourdomain.com
relayhost = [smtp.yourrelayserver.com]
smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination

Restart SMTP Service After Changes:

code
sudo systemctl restart postfix # For Postfix
sudo systemctl restart exim # For Exim

4. Authentication & Authorization Issues

Enable SASL Authentication (Postfix):

code
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous

Test SMTP Authentication via Telnet:

code
telnet mail.yourdomain.com 25
EHLO yourdomain.com
AUTH LOGIN

If authentication fails, SMTP relay will be denied.


Correct DNS configuration is essential for SMTP relay.

Check Your MX, SPF, DKIM & DMARC Records:

code
dig MX yourdomain.com

Example SPF Record:

code
v=spf1 a mx ip4:your.ip.address include:yourdomain.com ~all

Ensure DKIM & DMARC Are Set Up Correctly.

Need Help Understanding SPF, DKIM, and DMARC


6. TLS/SSL & Encryption Issues

Many mail providers require TLS encryption for outgoing emails.

Enable TLS in Postfix:

code
smtpd_use_tls = yes
smtpd_tls_cert_file = /etc/ssl/certs/your_cert.pem
smtpd_tls_key_file = /etc/ssl/private/your_key.pem

Check TLS Certificates:

code
openssl s_client -connect mail.yourdomain.com:465 -starttls smtp

7. Monitoring & Debugging SMTP Logs

To analyze SMTP relay issues, monitor your mail server logs.

Postfix Logs:

code
tail -f /var/log/mail.log

Exim Logs:

code
tail -f /var/log/exim_mainlog

Search for Specific SMTP Errors:

code
grep -i "relay" /var/log/mail.log

Conclusion

Troubleshooting SMTP relay issues requires a systematic approach, focusing on error messages, firewall settings, SMTP authentication, DNS records, and TLS encryption.

Key Takeaways:

  • Check error messages & logs for clues

  • Ensure firewall allows SMTP ports

  • Verify SMTP server authentication

  • Confirm DNS records (MX, SPF, DKIM, DMARC)

  • Enable TLS encryption for outgoing mail

Related Guides:

Need Additional Help Contact Domain India Support! https://www.domainindia.com/support

Was this article helpful?

Your answer helps us decide what to improve next.

Still need help? Open a support ticket and our team will reply.

Prefer an app? Add this site to your home screen.Get the app
Troubleshooting SMTP Relay Issues in VPS Hosting: A Comprehensive Guide - Knowledge Base