1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
Mail logger plugin
==================
This plugin can be used to log several actions done in a mail session:
* Setting and removing \Deleted flag
* Expunging
* Copying mails to another mailbox
* Mailbox creations
* Mailbox deletions
* Mailbox renames
* Any flag changes
* Saves
Messages' UID and Message-ID header is logged for each action. Here's an
example:
---%<-------------------------------------------------------------------------
imap(user): copy -> Trash: uid=908, msgid=<123.foo@bar>
imap(user): deleted: uid=908, msgid=<123.foo@bar>
imap(user): expunged: uid=908, msgid=<123.foo@bar>
---%<-------------------------------------------------------------------------
You can enable the plugin globally for all services by setting:
---%<-------------------------------------------------------------------------
mail_plugins = $mail_plugins mail_log notify
---%<-------------------------------------------------------------------------
The notify plugin is required for the mail_log plugin's operation, so be
certain it's also enabled.
Configuration
-------------
You can configure what and how mail_log plugin logs:
---%<-------------------------------------------------------------------------
plugin {
# Events to log. Also available: flag_change save mailbox_create
mail_log_events = delete undelete expunge copy mailbox_delete mailbox_rename
# Also available: flags vsize from subject
mail_log_fields = uid box msgid size
}
---%<-------------------------------------------------------------------------
(This file was created from the wiki on 2013-11-24 04:42)
|