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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
|
Dovecot Lua support
===================
Since v2.3.0 dovecot supports Lua scripting. Dovecot supports lua 5.0 or newer.
See also:
* <Lua based authentication> [AuthDatabase.Lua.txt]. Since v2.3.0
* <Lua push notifications> [Plugins.PushNotification.txt]. Since v2.3.4
lib-lua
-------
Dovecot provides a lib-lua internal helper as part of libdovecot.so. It has
facilities for loading scripts from various sources, and also helps with
reusing scripts by keeping track of which scripts are loaded. Each script has
it's own memory pool, which is guaranteed to be released when script is
unloaded.
When script is loaded, *script_load* function is called if found. This can
return non-zero to indicate that the script has a problem.
C API
-----
* 'dlua_register_dovecot(script)'
Register dovecot variable. This item can also be extended by context specific
tables, like authentication database adds *dovecot.auth*.
* 'dlua_push_event(event)'
Pushes an Dovecot Event to stack.
Lua API
-------
* 'i_debug(text)'
* 'i_error(text)'
* 'i_info(text)'
* 'i_warning(text)'
Functions within dovecot variable that do generic logging
Event functions are available from v2.3.4 on
* 'dovecot.event()'
* 'dovecot.event(parent)'
Creates a new event for dovecot
object event
------------
Note:
* object event_passthrough has same API, except the 'passthrough_event' method
is not present.
Functions:
* 'append_log_prefix("prefix")' - set prefix to append
* 'replace_log_prefix("prefix")' - replace append prefix
* 'set_name("name")' - set name for event
* 'add_str("key","value")' - add a key-value pair to event
* 'add_int("key",1)' - add a key-value pair to event
* 'add_timeval("key",seconds)' - add a key-value pair to event
* 'inc_int("key",1)' - increment key-value pair
* 'log_debug("message")' - emit debug message
* 'log_info("message")' - emit info message
* 'log_warning("message")' - emit warning message
* 'log_error("message")' - emit error message
* 'passthrough_event()' - returns an passthrough event. A log message *must
be* logged or else a panic will occur.
mail-lua
--------
Available from v2.3.4 on
mail-lua is a plugin that can be loaded to provide API for mail storage Lua
plugins. Mail-lua provides a common script to be used in mail storage instead
of per-plugin scripts.
C API
-----
* 'dlua_register_mail_storage(script)'
Register storage Lua interface to script context
* 'bool mail_lua_plugin_get_script(user, script_r)'
Returns script context if available. If FALSE is returned, no Lua script has
been loaded, and you should optionally deal this yourself.
* 'dlua_push_mail_user(script, user)'
Pushes a mail user on top of stack.
* 'dlua_push_mailbox(script, box)'
Pushes a mailbox on top of stack.
* 'dlua_push_mail(script, mail)'
Pushes a mail on top of stack.
Lua API
-------
When mail user is created, a script is loaded if present as *mail_lua_script*
and *mail_user_created* is called if present in script.
On deinitialization, *mail_user_deinit_pre* is called first, if present,
followed by *mail_user_deinit*.
dovecot.storage
---------------
Following constants are specified
* 'STATUS_MESSAGES'
* 'STATUS_RECENT'
* 'STATUS_UIDNEXT'
* 'STATUS_UIDVALIDITY'
* 'STATUS_UNSEEN'
* 'STATUS_FIRST_UNSEEN_SEQ'
* 'STATUS_KEYWORDS'
* 'STATUS_HIGHESTMODSEQ'
* 'STATUS_PERMANENT_FLAGS'
* 'STATUS_FIRST_RECENT_UID'
* 'STATUS_HIGHESTPVTMODSEQ'
* 'MAILBOX_FLAG_READONLY'
* 'MAILBOX_FLAG_SAVEONLY'
* 'MAILBOX_FLAG_DROP_RECENT'
* 'MAILBOX_FLAG_NO_INDEX_FILES'
* 'MAILBOX_FLAG_KEEP_LOCKED'
* 'MAILBOX_FLAG_IGNORE_ACLS'
* 'MAILBOX_FLAG_AUTO_CREATE'
* 'MAILBOX_FLAG_AUTO_SUBSCRIBE'
* 'MAILBOX_SYNC_FLAG_FULL_READ'
* 'MAILBOX_SYNC_FLAG_FULL_WRITE'
* 'MAILBOX_SYNC_FLAG_FAST'
* 'MAILBOX_SYNC_FLAG_NO_EXPUNGES'
* 'MAILBOX_SYNC_FLAG_FIX_INCONSISTENT'
* 'MAILBOX_SYNC_FLAG_EXPUNGE'
* 'MAILBOX_SYNC_FLAG_FORCE_RESYNC'
object mail_user
----------------
Meta:
* has tostring
* is comparable (by username)
Functions:
* 'plugin_getenv(key)' - returns key from user plugin settings or userdb
environment
* 'var_expand(template)' - expands mail user variables (see <Variables.txt>)
* 'mailbox(name, flags)' - allocates a mailbox, flags optional
Variables:
* 'home' - home directory (if available)
* 'username' - user's name
* 'uid' - system uid
* 'gid' - system gid
* 'service' - IMAP/POP3/LMTP/LDA/...
* 'session_id' - Current session ID
* 'session_create_time' - When session was created
* 'nonexistent' - If user does not really exist
* 'anonymous' - If user is anonymous
* 'autocreated' - If user was automatically created internally for some
operation
* 'mail_debug' - If debugging is turned on
* 'fuzzy_search' - FIXME: Undocumented
* 'dsyncing' - If user is being dsync'd
* 'session_restored' - If this is a restored session
object mailbox
--------------
Meta:
* has tostring
* is comparable (by full mailbox name)
Functions:
* 'open()' - opens the mailbox
* 'close()' - closes the mailbox
* 'free()' - releases mailbox (must be done)
* 'sync(flags)' - synchronizes the mailbox (should usually be done, flags
optional)
* 'status(item,item,item...)' - returns requested mailbox status items as
table
Variables:
* 'vname' - Full mailbox name
* 'name' - Mailbox name
table mailbox status
--------------------
Variables:
* 'mailbox' - full name of mailbox
* 'messages' - number of messages
* 'recent' - number of \Recent messages
* 'unseen' - number of \Unseen messages
* 'uidvalidity' - current UID validity
* 'uidnext' - next UID
* 'first_unseen_seq' - first seqno of unseen mail
* 'first_recent_uid' - first UID of unseen mail
* 'highest_modseq' - highest modification sequence
* 'highest_pvt_modseq' - highest private modification sequence
* 'permanent_flags' - supported permanent flags as a bitmask
* 'flags' - supported flags as a bitmask
* 'permanent_keywords' - if permanent keywords are supported
* 'allow_new_keywords' - if new keywords can be added
* 'nonpermanent_modseqs' - whether non-permanent keywords are allowed
* 'no_modseq_tracking' - no modification sequence tracking
* 'have_guids' - whether GUIDs exist
* 'have_save_guids' - whether GUIDs can be saved
* 'have_only_guid128' - whether GUIDs are 128 bit always
* 'keywords' - table of current keywords
object mail
-----------
Meta:
* has tostring
* is comparable (within same mailbox, by UID)
Functions:
* None yet
Variables:
* 'mailbox' - mailbox object
* 'seq' - Sequence number (can change)
* 'uid' - UID number (immutable)
(This file was created from the wiki on 2019-06-19 12:42)
|