Penguin
Note: You are viewing an old revision of this page. View the current version.

POP before SMTP is a way of allowing hosts to relay through you for a set period of time. This is useful when you host domains for people who are not on the same local network as you, and need to send mail coming from these domains.

This assumes you use some kind of POP server on the same server as you use for SMTP. You'll want a piece of software that listens on your POP daemon's log file for any connections, and when it sees a valid connection, will add the IP address to a file. You configure your MTA to check this file as a list of allowed relay IP addresses.

One such piece of software is called exact , and it works great with Exim, provided you make a small modification to your exim startup script after following the installation instructions for exact.

For me, running debian, I had to edit /etc/init.d/exim , and just under the line that says

echo -n "Starting MTA: "

put something like

/usr/local/sbin/exact

and just after the lines where it says

start-stop-daemon --stop --pidfile /var/run/exim/exim.pid \

--oknodo --retry 30 --exec $DAEMON

put

kill `cat /var/run/exact/exact.pid`

Note, I could never get it going properly on sendmail using the provided instructions.

See also EximSmtpAuth for an alternative method of achieving the same end.