Hi,
I tried qpsmtpd and found it quite useful. I'm running SMPT-after-POP
and had to make the following change in order to get $ENV{RELAYCLIENT}
working. Might be useful in other situations as well.
Jukka
-- Jukka Zitting -- [EMAIL PROTECTED] -- +358 40 705 6946 --
cvs server: Diffing .
Index: qpsmtpd
===================================================================
RCS file: /home/perlcvs/qpsmtpd/qpsmtpd,v
retrieving revision 1.9
diff -r1.9 qpsmtpd
172c172,173
< return respond(550, "will not relay for ". $rcpt->host) unless
check_relay($rcpt->host);
---
> return respond(550, "will not relay for ". $rcpt->host)
> unless exists $ENV{RELAYCLIENT} or check_relay($rcpt->host);