1234567891011121314151617181920212223242526272829303132333435363738 |
- ##
- ## Plugin settings
- ##
-
- # All wanted plugins must be listed in mail_plugins setting before any of the
- # settings take effect. See <doc/wiki/Plugins.txt> for list of plugins and
- # their configuration. Note that %variable expansion is done for all values.
-
- plugin {
- # Antispam (DSPAM)
- antispam_backend = dspam
- antispam_allow_append_to_spam = YES
- antispam_spam = Spam;Junk
- antispam_trash = trash;Trash
- antispam_signature = X-DSPAM-Signature
- antispam_signature_missing = error
- antispam_dspam_binary = /usr/bin/dspam
- antispam_dspam_args = --user;%u;--deliver=;--source=error
- antispam_dspam_spam = --class=spam
- antispam_dspam_notspam = --class=innocent
- antispam_dspam_result_header = X-DSPAM-Result
-
- # FTS (full text search with Solr)
- fts = solr
- fts_solr = break-imap-search url=http://localhost:8080/solr/
-
- # Autocreate (specify mailboxes that must always exist for all users)
- autocreate = Drafts
- autocreate2 = Sent
- autocreate3 = Junk
- autocreate4 = Trash
- autocreate5 = Archive
- autosubscribe = Drafts
- autosubscribe2 = Sent
- autosubscribe3 = Junk
- autosubscribe4 = Trash
- autosubscribe5 = Archive
- }
|