aboutsummaryrefslogtreecommitdiffstats
path: root/src/libserver
diff options
context:
space:
mode:
Diffstat (limited to 'src/libserver')
-rw-r--r--src/libserver/protocol.c6
-rw-r--r--src/libserver/protocol_internal.h1
2 files changed, 7 insertions, 0 deletions
diff --git a/src/libserver/protocol.c b/src/libserver/protocol.c
index ef14e45ff..640d778e6 100644
--- a/src/libserver/protocol.c
+++ b/src/libserver/protocol.c
@@ -24,6 +24,7 @@
#include "unix-std.h"
#include "protocol_internal.h"
#include "libserver/mempool_vars_internal.h"
+#include "task.h"
#include <math.h>
static GQuark
@@ -260,6 +261,11 @@ rspamd_protocol_handle_headers (struct rspamd_task *task,
task->flags |= RSPAMD_TASK_FLAG_BROKEN_HEADERS;
}
}
+ IF_HEADER (FILENAME_HEADER) {
+ task->msg.fpath = rspamd_mempool_ftokdup (task->task_pool,
+ hv_tok);
+ debug_task ("read filename header, value: %s", task->msg.fpath);
+ }
else {
debug_task ("wrong header: %V", hn);
}
diff --git a/src/libserver/protocol_internal.h b/src/libserver/protocol_internal.h
index 41ba13d86..2b6c1e377 100644
--- a/src/libserver/protocol_internal.h
+++ b/src/libserver/protocol_internal.h
@@ -80,5 +80,6 @@
#define TLS_VERSION_HEADER "TLS-Version"
#define MTA_NAME_HEADER "MTA-Name"
#define MILTER_HEADER "Milter"
+#define FILENAME_HEADER "Filename"
#endif //RSPAMD_PROTOCOL_INTERNAL_H