Server IP : 23.254.227.96 / Your IP : 216.73.216.7 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.1.1k System : Linux hwsrv-1277026.hostwindsdns.com 4.18.0-477.13.1.el8_8.x86_64 #1 SMP Tue May 30 14:53:41 EDT 2023 x86_64 User : viralblo ( 1001) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/dovecot/wiki/ |
Upload File : |
notify_status plugin (v2.2.33+) =============================== This plugin updates a dict every time a mailbox changes. The status can contain total message count and unseen count. It will update key priv/status/<mailbox name>. See <Dictionary.txt> for how to configure dict. Configuration ------------- ---%<------------------------------------------------------------------------- mail_plugins = $mail_plugins notify notify_status plugin { notify_status_dict = <dict uri> # For example proxy:dict-async:notify_status # Value written to dict: #notify_status_value = {"messages":%%{messages},"unseen":%%{unseen}} # By default all mailboxes are added to dict. This can be limited with: #notify_status_mailbox = INBOX #notify_status_mailbox2 = pattern2/* #... } ---%<------------------------------------------------------------------------- If SQL dict is used, you can use this map: ---%<------------------------------------------------------------------------- map { pattern = priv/status/$box table = mailbox_status value_field = status username_field = username fields { mailbox = $box } } ---%<------------------------------------------------------------------------- The matching SQL schema is: ---%<------------------------------------------------------------------------- CREATE TABLE mailbox_status ( username VARCHAR(255) NOT NULL, mailbox VARCHAR(255) NOT NULL, status VARCHAR(255), PRIMARY KEY (username, mailbox) ); ---%<------------------------------------------------------------------------- Supported fields ---------------- These fields can be used as %%{variables} in notify_status_value setting: * username - Username (user@domain) * mailbox - name of mailbox * messages - n. of messages * unseen - n. unseen message * recent - n. recent messages (not accurate) * uidvalidity - current UID validity * uidnext - predicted next UID value * first_recent_uid - first recent UID * highest_modseq - higest modification sequence number * highest_pvt_modseq - highest private modification sequence number (This file was created from the wiki on 2019-06-19 12:42)