search for: mail_log_event_mailbox_renam

Displaying 1 result from an estimated 1 matches for "mail_log_event_mailbox_renam".

2010 Jul 29
1
Patch: New event "mailbox_create" for the mail_log plugin
...Tobias Index: src/plugins/mail-log/mail-log-plugin.c =================================================================== --- src/plugins/mail-log/mail-log-plugin.c (revision 571) +++ src/plugins/mail-log/mail-log-plugin.c (working copy) @@ -43,12 +43,14 @@ MAIL_LOG_EVENT_MAILBOX_DELETE = 0x10, MAIL_LOG_EVENT_MAILBOX_RENAME = 0x20, MAIL_LOG_EVENT_FLAG_CHANGE = 0x40, - MAIL_LOG_EVENT_APPEND = 0x80 + MAIL_LOG_EVENT_APPEND = 0x80, + MAIL_LOG_EVENT_MAILBOX_CREATE = 0x100 }; #define MAIL_LOG_DEFAULT_EVENTS \ (MAIL_LOG_EVENT_DELETE | MAIL_LOG_EVENT_UNDELETE | \ MAIL_LOG_EVENT_EXPUNGE | MAIL_LOG_EVENT_COPY | \ - MAIL...