Howto change interface ip address of Exim mail server ???

Mar-7th-2009

On shared hosting servers you probably find your mail server’s ip blocked by other mail servers because of high mail volume or one of your users doing spamming. To change your exim IP for outgoing mail, you can edit your /etc/exim.conf file:— You can change the interface IP address for exim mail server in the [...]

Exim Command Tips

Feb-8th-2009

Here are some Important commnads :- ==== REMOVE MAILS BY ID ==== /usr/sbin/exim -v -Mrm (MAIL ID HERE) ==== LIST QUEDED MAILS ==== /usr/sbin/exim -bp ==== OUTPUT NUMBER OF QUEDED MAILS ==== /usr/sbin/exim -bpc ==== DELETE FROZEN MAILS ==== /usr/sbin/exim -bp | awk ‘$6~”frozen” { print $3 }’ | xargs exim -Mrm ==== DELIVER FORCEFULLY [...]