On Tue, Jun 10, 2008 at 09:58:44AM -0600, Neale Pickett wrote: > pysieved (http://woozle.org/~neale/src/pysieved/) is a MANAGESIEVE > server with a plugin architecture for storage. We just made our 1.0 > release and would very much like to get a storage mechanism for Exim in > addition to the Dovecot one we already have. If there are any folks on > this list who know how Exim does SIEVE, and are comfortable working in > Python, we'd love to have you join our mail list > (http://woozle.org/lists/pysieved) or IRC channel (irc.oftc.net, channel > #pysieved) and help us get this thing working on Exim.
Exim does not use a particular mechanism. Filters may be stored in files or retrieved by lookups. If your server uses anything that may be addressed by a lookup (like LDAP or the various DB query methods), Exim can use it. Exim does require the line "# sieve filter" at the top, but the lookup may prepend that, and it requires NL separated lines (Unix environment), not CRLF. You can change that with a string operation after the lookup, should your server store filters in wire format. Michael -- ## List details at http://lists.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://wiki.exim.org/
