Legitimate bounces are never sent to more than one recipient.

tsimtung

Verified User
Joined
Feb 26, 2022
Messages
66
HI, my client have this problem in smtp:
Legitimate bounces are never sent to more than one recipient.


the log:
2022-11-04 13:06:26 H=(i54590) [124.78.76.192] F=<[email protected]> A=login:[email protected] rejected RCPT <[email protected]>: Legitimate bounces are never sent to more than one recipient.

what is the problem?
how to fix it?
thanks
 
Hello,

Either quit using postmaster@ for sending emails or modify exim.conf:

Code:
  drop  message = MULTIPLE_BOUNCE_RECIPIENTS
        senders = : postmaster@*
        condition = ${if >{$recipients_count}{0}{true}{false}}

The string MULTIPLE_BOUNCE_RECIPIENTS is defined in /etc/exim.strings.conf

Code:
MULTIPLE_BOUNCE_RECIPIENTS=Legitimate bounces are never sent to more than one recipient.
 
Back
Top