Petar Bogdanovic <petar@...> wrote:
> Erm, maybe it's too early and I don't see what you see, but this
> actually is the problem.
>
> I did a quick test with:
>
> - if ((idx = rindex(tmpfrom, '=')) == NULL)
> + /* if ((idx = rindex(tmpfrom, '=')) == NULL) */
> idx = tmpfrom;
>
> and it worked:
So what about this?
if ((idx = rindex(tmpfrom, '=')) != NULL)
idx++;
else
idx = tmpfrom;
--
Emmanuel Dreyfus
http://hcpnet.free.fr/pubz
manu@...Message
Re: [milter-greylist] garbled envelope-from in milter-greylist 4.0.1
2008-09-12 by manu@netbsd.org