On Tue, May 15, 2018 at 07:21:48AM -0700, Bill Levering yidbill@... [milter-greylist] wrote:
> I?m troubleshooting a blocked email and noticed that the ?from address? looks like it is getting truncated at an ?=? , and getting snagged by the rule:
> /^<?planx\.com.+\@.*$/ \ # fake username
The code contains this:
/*
* Strip anything before the last '=' in the
* source address. This avoid problems with
* mailing lists using a unique sender address
* for each retry.
*/
if ((idx = rindex(tmpfrom, '=')) == NULL)
idx = tmpfrom;
strncpy(priv->priv_from, idx, ADDRLEN);
--
Emmanuel Dreyfus
manu@...Message
Re: [milter-greylist] Filtered email address?
2018-05-16 by Emmanuel Dreyfus