The following patch mg-chunks.diff fixes a bug in milter-greylist.c that causes loss of small message parts of chunky emails. If a message chunk doesn t
Manuel Badzong <manuel@...> wrote:
> The following patch "mg-chunks.diff" fixes a bug in milter-greylist.c
> that causes loss of small message parts of "chunky" emails. If a
> message chunk doesn't end with a newline but contains at least one. The
> remains behind the last newline are cut off.
Wow, thank you for digging this out.
> The second patch "spamd-env.diff" removes duplicate <> after envelope
> sender in spamd.c.
Both patches were committed.
--
Emmanuel Dreyfus
http://hcpnet.free.fr/pubz
manu@...
Sorry, I missed an off by one condition, in case of no newline at all. i is used as array index in the for loop and then as byte counter wich should be i++. If
Manuel Badzong <manuel@...> wrote:
> Sorry, I missed an off by one condition, in case of no newline at all.
> i is used as array index in the for loop and then as byte counter wich
> should be i++.
Hope that one is fine :-)
--
Emmanuel Dreyfus
http://hcpnet.free.fr/pubz
manu@...