diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-10-19 20:35:27 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-10-19 20:35:27 +0400 |
commit | 966ffa12854e46ede0e1fe67fa5d02345b6e99a0 (patch) | |
tree | 377f3c79bab3ce1166797d6514776639aa47456d /src/main.h | |
parent | f2fa5e52e91742bcb3111f154ead19fa2f9cf830 (diff) | |
download | rspamd-966ffa12854e46ede0e1fe67fa5d02345b6e99a0.tar.gz rspamd-966ffa12854e46ede0e1fe67fa5d02345b6e99a0.zip |
* Do not really check messages that should be skipped
* Add Skip state for such messages (not False and not True)
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h index 00b2d22bc..35ea627be 100644 --- a/src/main.h +++ b/src/main.h @@ -174,6 +174,7 @@ struct worker_task { struct custom_command *custom_cmd; /**< custom command if any */ int sock; /**< socket descriptor */ gboolean is_mime; /**< if this task is mime task */ + gboolean is_skipped; /**< whether message was skipped by configuration */ char *helo; /**< helo header value */ char *from; /**< from header value */ char *queue_id; /**< queue id if specified */ |