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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
.. _faqs-o-annotations:
What annotations are available?
-------------------------------
Cyrus annotations are based on :rfc:`5464`.
* **/admin** - Sets the administrator email address for the server. (See
:cyrusman:`cyradm(8)`)
* **/check** - Boolean value "true" or "false" that indicates whether this
mailbox should be checked at regular intervals by the client. The interval
in minutes is specified by the ``/checkperiod`` entry. (Draft RFC)
* **/checkperiod** - Numeric value indicating a period of minutes that the
client uses to determine the interval of regular 'new mail' checks for the
corresponding mailbox. (Draft RFC)
* **/comment** - Sets a comment or description associated with the mailbox.
(cyradm(8))
* **/motd** - Sets a "message of the day". The message gets displayed
as an ALERT after authentication.
* **/sort** - Defines the default sort criteria [I-D.ietf-imapext-sort] to use
when first displaying the mailbox contents to the user, or NIL if sorting is
not required. (Draft RFC)
* **/thread** - Defines the default thread criteria [I-D.ietf-imapext-sort] to
use when first displaying the mailbox contents to the user, or NIL if
threading is not required. If both sort and thread are not NIL, then
threading should take precedence over sorting. (Draft RFC)
* **/vendor/cmu/cyrus-imapd/condstore** - Enables the IMAP CONDSTORE extension
(modification sequences) on the mailbox. (See :cyrusman:`cyradm(8)`)
* **vendor/cmu/cyrus-imapd/duplicatedeliver** - Flag signalling that we're
allowing duplicate delivery of messages to the mailbox, overriding
system-wide duplicate suppression.
(:ref:`imap-developer-guidance-mailbox-format`)
* **/vendor/cmu/cyrus-imapd/expire** - Sets the number of days after which
messages will be expired from the mailbox. (cyradm(8))
* **/vendor/cmu/cyrus-imapd/archive** - Sets the number of days after which
messages will be archived from the mailbox. (cyradm(8))
* **/vendor/cmu/cyrus-imapd/delete** - Sets the number of days after which
messages will be deleted from the mailbox. (cyradm(8))
* **/vendor/cmu/cyrus-imapd/freespace** - Undocumented.
* **/vendor/cmu/cyrus-imapd/lastpop** - (time_t) of the last pop3 login to
this INBOX, used to enforce the "poptimeout" imapd.conf option.
(:ref:`imap-developer-guidance-mailbox-format`)
* **vendor/cmu/cyrus-imapd/lastupdate** - (time_t) of the last time a message
was appended
(:ref:`imap-developer-guidance-mailbox-format`)
* **/vendor/cmu/cyrus-imapd/news2mail** - Sets an email address to which
messages injected into the server via NNTP will be sent. (cyradm(8))
* **/vendor/cmu/cyrus-imapd/partition** - Undocumented.
* **/vendor/cmu/cyrus-imapd/pop3newuidl** - Flag signalling that we're using
"uidvalidity.uid" instead of just "uid" for the output of the POP3 UIDL
command.
(:ref:`imap-developer-guidance-mailbox-format`)
* **/vendor/cmu/cyrus-imapd/serve** - Undocumented.
* **/vendor/cmu/cyrus-imapd/sharedseen** - Enables the use of a shared \Seen
flag on messages rather than a per-user \Seen flag. The āsā right in the
mailbox ACL still controls whether a user can set the shared \Seen flag.
(See :cyrusman:`cyradm(8)`)
* **/vendor/cmu/cyrus-imapd/shutdown** - Sets a shutdown message. The message
gets displayed as an ALERT and all users are disconnected from the server
(subsequent logins are disallowed). (cyradm(8))
* **/vendor/cmu/cyrus-imapd/sieve** - Indicates the name of the global sieve
script that should be run when a message is delivered to the shared mailbox
(not used for personal mailboxes). (cyradm(8))
* **/vendor/cmu/cyrus-imapd/size** - Undocumented.
* **/vendor/cmu/cyrus-imapd/squat** - Indicates that the mailbox should be
indexed. (See :cyrusman:`squatter(8)`)
|