diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2007-09-30 22:29:05 +0200 |
---|---|---|
committer | Johannes Berg <johannes@sipsolutions.net> | 2007-09-30 22:29:05 +0200 |
commit | bd08509488b1771e07599e8dcfe7bd99877b1e41 (patch) | |
tree | 57062361533100725571349b65a31137a3a94c68 | |
parent | add0b64ccde36a187c3e1c73b42ee12860df31bf (diff) | |
download | dovecot-antispam-bd08509488b1771e07599e8dcfe7bd99877b1e41.tar.gz dovecot-antispam-bd08509488b1771e07599e8dcfe7bd99877b1e41.tar.xz dovecot-antispam-bd08509488b1771e07599e8dcfe7bd99877b1e41.zip |
add some notes on implementing other requested features
-rw-r--r-- | NOTES | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -0,0 +1,33 @@ + +This file contains just some notes/thoughts on various implementation issues +for other backends or different things. + + +SQL-based logger for later training + + - use dovecot's dict API + - configuration: + antispam_dict_uri = ... + antispam_dict_username = ... + - backend implementation: + 1) dict_init(uri, username) + 2) dict_transaction_begin + 3) for each signature: + dict_atomic_inc(signature, comes_from_spam_folder ? 1 : -1) + 4) dict_transaction_commit + 5) dict_deinit + - later training implementation, to be atomic, needs to use transactions + to get a list of all values and delete them at the same time, or use a + temporary table that is copied from the original while the original is + emptied (again, atomically) + + +Full-message availability + +Pristine retraining or SpamAssassin retraining might need the full message +available. This should be implemented via a BACKEND_WANTS_MAIL configuration +option that gives the backend access to each struct mail we iterate over in +the copy loop so it can get the stream or whatever it needs. On the other +hand, this is then not atomic with failures in the copy loop, so maybe we +should call that option BACKEND_WANTS_SEARCH and create a new search context +for it. |