diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2007-10-01 15:05:54 +0200 |
---|---|---|
committer | Johannes Berg <johannes@sipsolutions.net> | 2007-10-01 15:05:54 +0200 |
commit | 2822b28cc9840b5ff3ea192aa12b8154fc3a163a (patch) | |
tree | a6a30b43df884945abe65006c4a76b9b7b9f654c /signature.h | |
parent | 74b2bd7184ad32939235be32452d3569bba67370 (diff) | |
download | dovecot-antispam-2822b28cc9840b5ff3ea192aa12b8154fc3a163a.tar.gz dovecot-antispam-2822b28cc9840b5ff3ea192aa12b8154fc3a163a.tar.xz dovecot-antispam-2822b28cc9840b5ff3ea192aa12b8154fc3a163a.zip |
this seems to make the storage-based plugin work
Diffstat (limited to '')
-rw-r--r-- | signature.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/signature.h b/signature.h index ad3841a..a015fd3 100644 --- a/signature.h +++ b/signature.h @@ -7,11 +7,13 @@ struct siglist { struct siglist *next; char *sig; + bool from_spam; }; void signature_init(void); int signature_extract(struct mailbox_transaction_context *t, - struct mail *mail, struct siglist **list); + struct mail *mail, struct siglist **list, + bool from_spam); void signature_list_free(struct siglist **list); #endif /* _ANTISPAM_SIGNATURE_H */ |