mirror of
https://github.com/moparisthebest/imapfilter
synced 2024-11-14 13:25:25 -05:00
3690506986
A persistent failure that could lead to a session not being able to be recovered, or a failure during the login process (which is not covered by the recovery function), would normally cause the process to terminate. This is expected when the configuration is run once, but not desirable when running in daemon mode. And thus just after the process has become a daemon, a session that could not be restored, either because the connection to the server could not be established or the login and its related negotiations failed, is now disabled temporarily, and a recoqnection is attempted at the beginning of the next daemon loop iteration. There is one exception to that, and that is when there is an authentication error, for example when a wrong username or password has been supplied, and in this case the process terminates and a relevant error is printed. |
||
---|---|---|
doc | ||
samples | ||
src | ||
AUTHORS | ||
LICENSE | ||
Makefile | ||
NEWS | ||
README |
IMAPFilter Description IMAPFilter is a mail filtering utility. It connects to remote mail servers using the Internet Message Access Protocol (IMAP), sends searching queries to the server and processes mailboxes based on the results. It can be used to delete, copy, move, flag, etc. messages residing in mailboxes at the same or different mail servers. The 4rev1 and 4 versions of the IMAP protocol are supported. IMAPFilter uses the Lua programming language as a configuration and extension language. Website http://github.com/lefcha/imapfilter Changes All the changes in each new release up to the latest are in the NEWS file. Installation Compile time requirements are Lua (version 5.2 or 5.1), the PCRE library, and the OpenSSL library. Compile and install the program: make all make install Documentation There is detailed description of the command line options in the imapfilter(1) manual page, and of the configuration file format in the imapfilter_config(5) manual page. There are also more configuration examples in the samples/config.lua file, and some examples of extensions through Lua in the samples/extend.lua file. License Released under the terms and conditions of the MIT/X11 license, included in the LICENSE file. Authors See AUTHORS file.