On Tue, 22 Jun 2004, Jeff Grossman wrote:

> It seems that when I am connecting remotely to my Sendmail machine using
> SMTP Auth, it still temp fails my mail.  How do I make it so that my mail
> sent using SMTP Auth is not tempfailed, but sent immediately?

You have to check the auth_authen Sendmail macro (in
$SendmailMacros{'auth_authen'} and skip the greylisting code
if it is defined and exists.  Something like:

if (exists($SendmailMacros{'auth_authen'}) and
    defined($SendmailMacros{'auth_authen'})) {
    # Don't do greylisting
} else {
    # Do greylisting
}

--
David.
_______________________________________________
Visit http://www.mimedefang.org and http://www.canit.ca
MIMEDefang mailing list
[EMAIL PROTECTED]
http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

Reply via email to