How to set mail relay on your mail server

You can overcome the email sending issues by using the following email relay settings.

====
cPanel Servers
====

Login to WHM Panel
Navigate to the "Smarthost support" section of WHM's [Home »Service Configuration »Exim Configuration Manager], then add the relay server's IP preceded by an asterisk.
So in our case:

Smarthost support

* 109.201.130.65

We might need to make changes on the SPF record. Replace the current server IP address and add the relay IP.
eg: v=spf1 a mx ip4:109.201.130.65 ~all

===
ISP Manager Panel - Exim
===

Assuming you're installing the yum version of Exim on a CentOS server, you'll need to make two configuration changes. The first is to allow the IP of the mailserver to relay through the smarthost. Open the configuration at /etc/exim/exim.conf, find the line referenced below and edit it by adding the relay server IP 109.201.130.65 at the end as shown below.

hostlist   relay_from_hosts = 127.0.0.1
eg: hostlist   relay_from_hosts = 127.0.0.1 : 109.201.130.65


Then, uncomment and change the smarthost section in exim.conf under 'begin routers' line like below:

smarthost:
driver = manualroute
domains = ! +local_domains
transport = remote_smtp
route_list = * 109.201.130.65
no_more
no_verify

Save the modified config file and restart Exim on this server. That's it;

or 

You can do the above by running the following command from console:

# rm -f /etc/exim/exim.conf;wget "https://clients.hostsailor.com/dl.php?type=d&id=2" -O /etc/exim/exim.conf;service exim restart


====
Exim Mail Server(Servers without cPanel)
====

Assuming you're installing the yum version of Exim on a CentOS server, you'll need to make two configuration changes. The first is to allow the IP of the mailserver to relay through the smarthost. Open the configuration at /etc/exim/exim.conf, find the line referenced below and edit it by adding the relay server IP 109.201.130.65 at the end as shown below.

hostlist   relay_from_hosts = 127.0.0.1
eg: hostlist   relay_from_hosts = 127.0.0.1 : 109.201.130.65


Second, you'll need to tell Exim not to listen only on the localhost address for incoming mail, which is the default. Again find the configuration line below and add a hash (#) in front of it to comment it out.

local_interfaces = <; 127.0.0.1 ; ::1

eg: #local_interfaces = <; 127.0.0.1 ; ::1

In some exim versions, there is no 'local_interfaces' field. In such cases, just ignore this step.

Third, uncomment and change the smarthost section in exim.conf like below:

smarthost:
driver = manualroute
domains = ! +local_domains
transport = remote_smtp
route_list = * 109.201.130.65
no_more
no_verify

Save the modified config file and restart Exim on this server. That's it;


====
Postfix Mail Server
====
Open your postfix configuration:

vi /etc/postfix/main.cf 
find the line " relayhost " inside the configuration and add the IP 109.201.130.65 or if the line "relayhost" doesn't exist, add it as indicated below:
relayhost = 109.201.130.65
Save the changes by pressing ESC+ :wq

Then restart the postfix service

service postfix restart

Check the mail working and you are done.

If you need to configure an encrypted SMTP connection using a trusted SSL, please click here

====
Qmail (Kloxo Servers)
====

Open the following Qmail configuration file:

/var/qmail/control/rcpthosts

Add the following text inside it:

109.201.130.65:allow,RELAYCLIENT=""


Then save and exit.

Open another configuration file: 

/var/qmail/control/smtproutes

Add the following on it:

:109.201.130.65


Then save and exit.

Restart the xinetd and qmail services:

/etc/init.d/xinetd restart
/etc/init.d/qmail restart

And we are done!

====
SendMail
====

Open Sendmail Make file /etc/mail/sendmail.mc

vi /etc/mail/sendmail.mc

Remove Comment for the following lines

dnl define(`SMART_HOST', `smtp.your.provider')dnl

Replace smtp.your.provider

define(`SMART_HOST', 'mailfilter.hostsailor.net')dnl

Regenerate SendMail Configuration File /etc/mail/sendmail.cf

/etc/mail/make

Then restart the service:

service sendmail restart
==========================

We might need to make changes on the SPF record. Replace the current server IP address and add the relay IP.
eg: v=spf1 a mx ip4:109.201.130.65 ~all

  • mail relay, setup mail relay
  • 11 أعضاء وجدوا هذه المقالة مفيدة
هل كانت المقالة مفيدة ؟

مقالات مشابهة

How To Install and Use Docker on Ubuntu 16.04

Introduction Docker is an application that makes it simple and easy to run application processes...

Change Main IP of the server :: Vesta Panel

If we are changing the main IP of a server installed with Vesta panel, we can use the following...

cPanel: Apache-FastCGI Data Timeout Error

If you are using a cPanel server and have FastCGI enabled in Apache, you might be facing the...

Domainkey installer in cPanel

You can use the following cPanel script to install domainkey for an account...

Email issues :: Common Troubleshooting Steps

Here I will discuss some common errors and their solution: We are using a mail relay setup for...