Re: [Exim] String expansion in filters

Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: David Woodhouse
Ημερομηνία:  
Προς: Doug Jolley
Υ/ο: exim-users
Αντικείμενο: Re: [Exim] String expansion in filters
On Fri, 2004-04-09 at 23:25 -0700, Doug Jolley wrote:
> else
> seen mail to $reply_address return message text "Regretably your message
> was rejected as spam.\n If it was a legitimate message, please re-send\n
> within 5 days and include the authorization\nstring AUTH=83271 in the
> subject line."
> endif


Please don't do this. If the mail is spam, there's a high probability
that the reply addresses are bogus too, and you're spamming an innocent
third party. By doing that you're making yourself part of the _problem_
rather than part of the solution.

Also, autoreplies should be sent to $sender_address, not to any other
address. It looks like your setup is responding to bounces, which it
absolutely must not do. If I encountered this in the wild I'd be
reporting it as network abuse.

If you want to do this kind of thing, then do it with a 'fakereject' at
ACL time. The SMTP error will cause a spammer to silently drop the mail
and move on to the next victim, while a _legitimate_ mail will trigger a
bounce to be generated by the MTA which was trying to deliver it to you.

--
dwmw2