dovecot-2.0-pigeonhole: Updated documentation.
pigeonhole at rename-it.nl
pigeonhole at rename-it.nl
Sat Jun 19 12:32:06 EEST 2010
details: http://hg.rename-it.nl/dovecot-2.0-pigeonhole/rev/fb437717ff10
changeset: 1295:fb437717ff10
user: Stephan Bosch <stephan at rename-it.nl>
date: Sat Jun 19 11:32:00 2010 +0200
description:
Updated documentation.
diffstat:
INSTALL | 22 +++++++++++-----------
doc/example-config/conf.d/90-sieve.conf | 13 +++++++------
2 files changed, 18 insertions(+), 17 deletions(-)
diffs (96 lines):
diff -r d4509075374d -r fb437717ff10 INSTALL
--- a/INSTALL Sat Jun 19 11:00:37 2010 +0200
+++ b/INSTALL Sat Jun 19 11:32:00 2010 +0200
@@ -304,25 +304,25 @@
There are two things to have be done to activate the ManageSieve support in
Dovecot:
- - The first step is to add `managesieve' to the protocols= configuration line in
+ - The first step is to add `sieve' to the protocols= configuration line in
your dovecot.conf.
- The next step is specifying an additional service type for the ManageSieve
service. This could be done in Dovecot's conf.d/master.conf or you can use
- the managesieve.conf file from the doc/example-config/conf.d directory of
+ the 20-managesieve.conf file from the doc/example-config/conf.d directory of
this package.
For example:
service managesieve-login {
- inet_listener {
+ inet_listener sieve {
port = 4190
}
}
Because the implementation of the ManageSieve daemon is largely based on the
original IMAP implementation, it is very similar in terms of configuration. The
-following settings can be configured in the 'protocol managesieve' section:
+following settings can be configured in the 'protocol sieve' section:
managesieve_max_line_length = 65536
The maximum ManageSieve command line length in bytes. This setting is directly
@@ -371,14 +371,14 @@
The following provides an example configuration for Sieve and ManageSieve.
Only sections and settings relevant to ManageSieve are shown. Refer to
-managesieve.conf in the doc/example-config/conf.d directory for a full example
-with comments, but don't forget to configure Sieve and add sieve to the
+20-managesieve.conf in the doc/example-config/conf.d directory for a full
+example with comments, but don't forget to configure Sieve and add sieve to the
'protocols = ...' setting if you use it.
-# *** conf.d/managesieve.conf ***
+# *** conf.d/20-managesieve.conf ***
service managesieve-login {
- inet_listener {
+ inet_listener sieve {
# Bind the daemon only to the specified address(es)
# (default: *, ::)
address = 127.0.0.1
@@ -388,11 +388,11 @@
}
}
-protocol managesieve {
+protocol sieve {
managesieve_sieve_capability = fileinto reject
}
-# *** conf.d/sieve.conf ***
+# *** conf.d/90-sieve.conf ***
plugin {
sieve=~/.dovecot.sieve
@@ -404,7 +404,7 @@
# .... (other config items)
# Start imap, pop3, lmtp and managesieve services
-protocols = imap pop3 lmtp managesieve
+protocols = imap pop3 lmtp sieve
# .... (other config items)
diff -r d4509075374d -r fb437717ff10 doc/example-config/conf.d/90-sieve.conf
--- a/doc/example-config/conf.d/90-sieve.conf Sat Jun 19 11:00:37 2010 +0200
+++ b/doc/example-config/conf.d/90-sieve.conf Sat Jun 19 11:32:00 2010 +0200
@@ -33,10 +33,11 @@
#sieve_extensions = +notify +imapflags
# The separator that is expected between the :user and :detail
- # address parts introduced by the subaddress extension. This may also
- # be a sequence of characters (e.g. '--'). The current implementation
- # looks for the separator from the left of the localpart and uses the
- # first one encountered. The :user part is left of the separator and
- # the :detail part is right.
- #sieve_subaddress_sep = +
+ # address parts introduced by the subaddress extension. This may
+ # also be a sequence of characters (e.g. '--'). The current
+ # implementation looks for the separator from the left of the
+ # localpart and uses the first one encountered. The :user part is
+ # left of the separator and the :detail part is right. This setting
+ # is also used by Dovecot's LMTP service.
+ #recipient_delimiter = +
}
More information about the dovecot-cvs
mailing list