dovecot-2.0-pigeonhole: Changed config file names to match Dovec...

pigeonhole at rename-it.nl pigeonhole at rename-it.nl
Wed Apr 14 17:47:16 EEST 2010


details:   http://hg.rename-it.nl/dovecot-2.0-pigeonhole/rev/9a486cf905dc
changeset: 1250:9a486cf905dc
user:      Stephan Bosch <stephan at rename-it.nl>
date:      Wed Apr 14 16:47:05 2010 +0200
description:
Changed config file names to match Dovecot numeric config file names.

diffstat:

 doc/example-config/conf.d/20-managesieve.conf |  62 +++++++++++++++++++++++++++++++
 doc/example-config/conf.d/90-sieve.conf       |  42 +++++++++++++++++++++
 doc/example-config/conf.d/Makefile.am         |   4 +-
 doc/example-config/conf.d/managesieve.conf    |  62 -------------------------------
 doc/example-config/conf.d/sieve.conf          |  42 ---------------------
 5 files changed, 106 insertions(+), 106 deletions(-)

diffs (238 lines):

diff -r ece958a18920 -r 9a486cf905dc doc/example-config/conf.d/20-managesieve.conf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/doc/example-config/conf.d/20-managesieve.conf	Wed Apr 14 16:47:05 2010 +0200
@@ -0,0 +1,62 @@
+##
+## ManageSieve specific settings
+##
+
+# Service definitions
+
+service managesieve-login {
+  #inet_listener sieve {
+  #  port = 4190
+  #}
+
+  #inet_listener sieve_deprecated {
+  #  port = 2000
+  #}
+
+  # Number of connections to handle before starting a new process. Typically
+  # the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0
+  # is faster. <doc/wiki/LoginProcess.txt>
+  #service_count = 1
+
+  # Number of processes to always keep waiting for more connections.
+  #process_min_avail = 0
+
+  # If you set service_count=0, you probably need to grow this.
+  #vsz_limit = 64M
+}
+
+service managesieve {
+  # Max. number of ManageSieve processes (connections)
+  #process_count = 1024
+}
+
+# Service configuration
+
+protocol managesieve {
+  # Maximum ManageSieve command line length in bytes. Some clients generate very long
+  # command lines with huge mailboxes, so you may need to raise this if you get
+  # "Too long argument" or "ManageSieve command line too large" errors often.
+  #managesieve_max_line_length = 65536
+
+  # Maximum number of ManageSieve connections allowed for a user from each IP address.
+  # NOTE: The username is compared case-sensitively.
+  #mail_max_userip_connections = 10
+
+  # Space separated list of plugins to load (none known so far).
+  #mail_plugins =
+
+  # MANAGESIEVE logout format string:
+  #  %i - total number of bytes read from client
+  #  %o - total number of bytes sent to client
+  #managesieve_logout_format = bytes=%i/%o
+
+  # To fool ManageSieve clients that are focused on CMU's timesieved you can specify
+  # the IMPLEMENTATION capability that the dovecot reports to clients.
+  # For example: 'Cyrus timsieved v2.2.13' 
+  #managesieve_implementation_string = Dovecot
+
+  # Explicitly specify the SIEVE capability reported by the server before login.
+  # After login, the sieve capabilities are reported by the Sieve interpreter and
+  # reflect what's really allowed/supported for the user that is logged in. 
+  #managesieve_sieve_capability = 
+}
diff -r ece958a18920 -r 9a486cf905dc doc/example-config/conf.d/90-sieve.conf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/doc/example-config/conf.d/90-sieve.conf	Wed Apr 14 16:47:05 2010 +0200
@@ -0,0 +1,42 @@
+##
+## Settings for the Sieve interpreter
+## 
+
+# Do not forget to enable the Sieve plugin in lda.conf and lmtp.conf
+# by adding it to the mail_plugins= settings.
+
+plugin {
+  # The path to the user's main active script. 
+  sieve = ~/.dovecot.sieve
+
+  # A path to a global sieve script file, which gets executed ONLY
+  # if user's private Sieve script doesn't exist. Be sure to 
+  # pre-compile this script manually using the sievec command line 
+  # tool.
+  #sieve_global_path = /var/lib/dovecot/sieve/default.sieve
+
+  # Directory for :personal include scripts for the include extension. 
+  sieve_dir = ~/sieve
+
+  # Directory for :global include scripts for the include extension. 
+  #sieve_global_dir =
+
+  # Which Sieve language extensions are available to users. By default,
+  # all supported extensions are available, except for deprecated
+  # extensions or those that are still under development. Some system
+  # administrators may want to disable certain Sieve extensions or 
+  # enable those that are not available by default. This setting can 
+  # use '+' and '-' to specify differences relative to the default. 
+  # For example `sieve_extensions = +imapflags' will enable the 
+  # deprecated imapflags extension in addition to all extensions 
+  # enabled by default. 
+  #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 = +
+}
diff -r ece958a18920 -r 9a486cf905dc doc/example-config/conf.d/Makefile.am
--- a/doc/example-config/conf.d/Makefile.am	Thu Apr 08 09:13:54 2010 +0200
+++ b/doc/example-config/conf.d/Makefile.am	Wed Apr 14 16:47:05 2010 +0200
@@ -2,8 +2,8 @@
 
 exampledir = $(dovecot_docdir)/example-config/conf.d
 example_DATA = \
-	sieve.conf \
-	managesieve.conf
+	20-managesieve.conf \
+	90-sieve.conf
 
 EXTRA_DIST = \
 	$(example_DATA)
diff -r ece958a18920 -r 9a486cf905dc doc/example-config/conf.d/managesieve.conf
--- a/doc/example-config/conf.d/managesieve.conf	Thu Apr 08 09:13:54 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,62 +0,0 @@
-##
-## ManageSieve specific settings
-##
-
-# Service definitions
-
-service managesieve-login {
-  #inet_listener sieve {
-  #  port = 4190
-  #}
-
-  #inet_listener sieve_deprecated {
-  #  port = 2000
-  #}
-
-  # Number of connections to handle before starting a new process. Typically
-  # the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0
-  # is faster. <doc/wiki/LoginProcess.txt>
-  #service_count = 1
-
-  # Number of processes to always keep waiting for more connections.
-  #process_min_avail = 0
-
-  # If you set service_count=0, you probably need to grow this.
-  #vsz_limit = 64M
-}
-
-service managesieve {
-  # Max. number of ManageSieve processes (connections)
-  #process_count = 1024
-}
-
-# Service configuration
-
-protocol managesieve {
-  # Maximum ManageSieve command line length in bytes. Some clients generate very long
-  # command lines with huge mailboxes, so you may need to raise this if you get
-  # "Too long argument" or "ManageSieve command line too large" errors often.
-  #managesieve_max_line_length = 65536
-
-  # Maximum number of ManageSieve connections allowed for a user from each IP address.
-  # NOTE: The username is compared case-sensitively.
-  #mail_max_userip_connections = 10
-
-  # Space separated list of plugins to load (none known so far).
-  #mail_plugins =
-
-  # MANAGESIEVE logout format string:
-  #  %i - total number of bytes read from client
-  #  %o - total number of bytes sent to client
-  #managesieve_logout_format = bytes=%i/%o
-
-  # To fool ManageSieve clients that are focused on CMU's timesieved you can specify
-  # the IMPLEMENTATION capability that the dovecot reports to clients.
-  # For example: 'Cyrus timsieved v2.2.13' 
-  #managesieve_implementation_string = Dovecot
-
-  # Explicitly specify the SIEVE capability reported by the server before login.
-  # After login, the sieve capabilities are reported by the Sieve interpreter and
-  # reflect what's really allowed/supported for the user that is logged in. 
-  #managesieve_sieve_capability = 
-}
diff -r ece958a18920 -r 9a486cf905dc doc/example-config/conf.d/sieve.conf
--- a/doc/example-config/conf.d/sieve.conf	Thu Apr 08 09:13:54 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,42 +0,0 @@
-##
-## Settings for the Sieve interpreter
-## 
-
-# Do not forget to enable the Sieve plugin in lda.conf and lmtp.conf
-# by adding it to the mail_plugins= settings.
-
-plugin {
-  # The path to the user's main active script. 
-  sieve = ~/.dovecot.sieve
-
-  # A path to a global sieve script file, which gets executed ONLY
-  # if user's private Sieve script doesn't exist. Be sure to 
-  # pre-compile this script manually using the sievec command line 
-  # tool.
-  #sieve_global_path = /var/lib/dovecot/sieve/default.sieve
-
-  # Directory for :personal include scripts for the include extension. 
-  sieve_dir = ~/sieve
-
-  # Directory for :global include scripts for the include extension. 
-  #sieve_global_dir =
-
-  # Which Sieve language extensions are available to users. By default,
-  # all supported extensions are available, except for deprecated
-  # extensions or those that are still under development. Some system
-  # administrators may want to disable certain Sieve extensions or 
-  # enable those that are not available by default. This setting can 
-  # use '+' and '-' to specify differences relative to the default. 
-  # For example `sieve_extensions = +imapflags' will enable the 
-  # deprecated imapflags extension in addition to all extensions 
-  # enabled by default. 
-  #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 = +
-}


More information about the dovecot-cvs mailing list