Re: [Exim] ACL to block specific Hello & IP

Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: Tor Slettnes
Ημερομηνία:  
Προς: Christoph Kliemt
Υ/ο: exim-users
Αντικείμενο: Re: [Exim] ACL to block specific Hello & IP
On Apr 6, 2004, at 00:54, Christoph Kliemt wrote:
> Something like this (acl_smtp_mail) ?
>
> deny condition = ${if or { {!def:sender_helo_name} { eq
> {$sender_helo_name}{} }}{true}{false}}
>      message = Polite people say HELO/EHLO first.


This is actually redudant. "def:sender_helo_name" is only true if
$sender_helo_name is non-empty.

      deny message   = Polite people say HELO/EHLO first.
           condition = ${if !def:sender_helo_name {true}{false}}



-tor