diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2007-10-01 23:55:42 +0200 |
---|---|---|
committer | Johannes Berg <johannes@sipsolutions.net> | 2007-10-01 23:55:42 +0200 |
commit | 08a43776866b6679f6a1f19be5f64f6e2c5b622d (patch) | |
tree | e37a21963eaee3d13fad2cc66f14fc6e23692c09 /crm114-exec.c | |
parent | 94bde817c5a33a8cbfc016e0201a3f4c8664937f (diff) | |
download | dovecot-antispam-08a43776866b6679f6a1f19be5f64f6e2c5b622d.tar.gz dovecot-antispam-08a43776866b6679f6a1f19be5f64f6e2c5b622d.tar.xz dovecot-antispam-08a43776866b6679f6a1f19be5f64f6e2c5b622d.zip |
use configured signature in crm114
Diffstat (limited to 'crm114-exec.c')
-rw-r--r-- | crm114-exec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crm114-exec.c b/crm114-exec.c index 91a72e7..9e701fd 100644 --- a/crm114-exec.c +++ b/crm114-exec.c @@ -34,7 +34,6 @@ static char **extra_args = NULL; static int extra_args_num = 0; #define FIXED_ARGS_NUM 2 -#define CRM_HDR "X-CRM114-CacheID" static int call_reaver(const char *signature, enum classification wanted) { @@ -69,7 +68,7 @@ static int call_reaver(const char *signature, enum classification wanted) /* * Reaver wants the mail but only needs the cache ID */ - write(pipes[1], CRM_HDR, strlen(CRM_HDR)); + write(pipes[1], signature_hdr, strlen(signature_hdr)); write(pipes[1], ": ", 2); write(pipes[1], signature, strlen(signature)); write(pipes[1], "\r\n\r\n", 4); |