Changing Exim’s Sending IP
Posted by Vanessa | Tagged under exim,howto,tricks | Posted on January 11, 2010
12
Anyone running a shared hosting server is probably now accustomed to dealing with constant complaints about blacklisting. It’s exim’s default setup on a cPanel server to use the shared IP of the server to send email, which means that all your clients on one server are sending out email on the same IP. All it takes is for one spammer to send out a mailing list or one customer to get hacked and run a Darkmailer script, and suddenly everyone on your server seems to be complaining about getting their mail bounced.
You can change the server’s IP address for sending email. Assuming you already have an IP set up on your server with a valid PTR, you probably already saw on the cPanel forums or some other location that you can simply change the interface lines in your /etc/exim.conf file and restart exim:
remote_smtp:
driver = smtp
interface = ${if exists {/etc/mailips}{${lookup{$sender_address_domain}lsearch*{/etc/mailips}{$value}{}}}{}}
helo_data = ${if exists {/etc/mailhelo}{${lookup{$sender_address_domain}lsearch*{/etc/mailhelo}{$value}{$primary_hostname}}}{$primary_hostname}}
dk_remote_smtp:
driver = smtp
interface = ${if exists {/etc/mailips}{${lookup{$sender_address_domain}lsearch*{/etc/mailips}{$value}{}}}{}}
helo_data = ${if exists {/etc/mailhelo}{${lookup{$sender_address_domain}lsearch*{/etc/mailhelo}{$value}{$primary_hostname}}}{$primary_hostname}}
dk_private_key = "/var/cpanel/domain_keys/private/${dk_domain}"
dk_canon = nofws
dk_selector = default
In the above example, all you’d do is comment out the interface lines and replace them with:
interface = xx.xx.xx.xx
However, this tends to be a band-aid fix, as a cPanel update or any change made in WHM’s Exim Configuration Editor will regenerate the Exim config and overwrite your change. To make this more permanent, you’ll want to use the /etc/mailips file.
To set this up initially, go into WHM > Exim Configuration and enable this option:
** Send outgoing mail from the ip that matches the domain name in /etc/mailips (*: IP can be added to the file to change the main outgoing interface) [?]
Or, in /etc/exim.conf.localopts, add/change this line:
per_domain_mailips=1
Then run
/scripts/buildeximconf
service exim restart
*The /etc/mailips file should be root:exim, chmod 440 if it doesn’t already exist.
chattr +i /etc/mailips
Now for actually changing the IP:
Changing the IP Globally
If you want everyone on the server to send out on the same IP, just add the following to /etc/mailips:
*: xxx.xxx.xxx.xxx
Then add the IP and it’s matching PTR to /etc/mail_reverse_dns:
xxx.xxx.xxx.xxx hostname.tld
This will tell Exim to use that IP for any sender on the server.
Changing the IP Per Domain
If you want your users with dedicated IP addresses to be able to use those IPs to send email as well, you can add them to /etc/mailips. cPanel actually now has documentation on how to do this properly:
http://docs.cpanel.net/twiki/bin/view/AllDocumentation/WHMDocs/EximDifferentIps
If you have multiple dedicated IP domains already, I’ve devised a simple loop you can use to populate /etc/mailips automatically:
while read line ; do DOMAIN=`echo -e $line |awk '{print $2}'` && IP=`echo -e $line |awk '{print $1}' |cut -d: -f1` && echo "$DOMAIN: $IP" >> /etc/mailips ;done < /etc/domainips
You’ll always want the wildcard line to be in there to account for any domain not listed in the file, whether it is the main server’s IP or another that you have assigned for email:
*: xxx.xxx.xxx.xxx
Then:
cp /etc/domainips /etc/mail_reverse_dns
This will set all the existing sites on dedicated IPs to send out mail on those IPs.
Related posts:





sending...

[...] Changing Exim’s Sending IP :: The cPanel Admin It mentions both fixes you can use __________________ http://www.thecpaneladmin.com [...]
Hey Vanessa,
Worked like a charm!! Fixed my yahoo defers (for now).
Two notes, if you change Exim from WHM then WHM will run rebuild the conf & restart exim for you.
Also, chattr +i /etc/mailips before chaging the mailips is a problem :>
Again, thanks for the writeup, found it at cPanel forums.
Jay
[...] Continue reading…. [...]
[...] See: Changing Exim’s Sending IP [...]
@Jay Levine, true chattr +i /etc/mailips does cause an issue after doing this I got “Error writing mailips: Permission denied” when trying to edit the mailips file. I have to reverse it in order to edit the file
Yo!
chattr +i /etc/mailips must be applied after modification on file /etc/mailips are complete.
If this command has already been applied to / etc / mailips, or you need to do some other change other changes, the following command must be run before to modify the file:
chattr-i / etc / mailips
Hello,
After I bought and installed the SSL certificate which my server gave me another IP address for https, my web page with http works fine all the text and photos are there and visible but not on my https which is most of things are missing, how do I correct the situation,
thanks
georges
Do you maybe have hotlink protection enabled, without https added? Do you have an example of what’s happening?
http://tsharkar.com/index.php?/topic/408-change-ip-address-for-exim-mail-smtp/
This post should help you :)
Don’t forget to Vote up :)
I wouldn’t recommend setting exim.conf to be immutable.
new cpanel and tweak setting avalible this options.
[...] Here is the link which I found after I googled it. http://www.thecpaneladmin.com/changi…ms-sending-ip/ [...]