Re: [Exim] Rejecting bounce messages with multiple recipient…

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Kevin P. Fleming
日付:  
To: Sheldon Hearn
CC: Mike Meredith, exim-users
題目: Re: [Exim] Rejecting bounce messages with multiple recipients
Sheldon Hearn wrote:
> This may affect your decision to enable your check, which I've enabled
> as:
>
>   deny    senders       = :
>           condition     = ${if >{$rcpt_count}{1} {1}}
>           message       = invalid use of null sender

>


Note that this should be:

   deny    senders       = :
           message       = invalid use of null sender
           condition     = ${if >{$rcpt_count}{1} {1}}


i.e. the message to be returned needs to be listed _before_ the
condition that could cause the denial. Otherwise the sending server
could get something ambiguous like "administrative prohibition".