]> git.pld-linux.org Git - packages/spamass-milter.git/blame - spamass-milter-rcvd.patch
- updated to 0.4.0, note: some options from patches are now merged but
[packages/spamass-milter.git] / spamass-milter-rcvd.patch
CommitLineData
faedd0d7 1The code in spamass-milter.cpp that tries to create a
2Sendmail-compatible header was broken and generated a header
3that was incorrectly parsed by SpamAssassin.
4
5This is mostly fixed now apart from the space that needs
6adding prior to the "(" between macro_j and macro_v.
7
8https://savannah.nongnu.org/bugs/index.php?17178
9http://bugs.debian.org/510665
10http://bugzilla.redhat.com/496763
11
5afa6aa0
MK
12diff -urNpa spamass-milter-0.4.0.orig/spamass-milter.cpp spamass-milter-0.4.0/spamass-milter.cpp
13--- spamass-milter-0.4.0.orig/spamass-milter.cpp 2014-09-11 00:38:00.000000000 +0000
14+++ spamass-milter-0.4.0/spamass-milter.cpp 2019-01-11 21:07:24.916000000 +0000
15@@ -996,7 +996,7 @@ mlfi_envrcpt(SMFICTX* ctx, char** envrcp
faedd0d7 16
17 assassin->output((string)
18 "Received: from "+macro_s+" ("+macro__+")\r\n\t"+
19- "by "+macro_j+"("+macro_v+"/"+macro_Z+") with "+macro_r+" id "+macro_i+";\r\n\t"+
20+ "by "+macro_j+" ("+macro_v+"/"+macro_Z+") with "+macro_r+" id "+macro_i+";\r\n\t"+
21 macro_b+"\r\n\t"+
22 "(envelope-from "+assassin->from()+")\r\n");
23
This page took 0.14406 seconds and 4 git commands to generate.