From: Timo Sirainen Date: Mon, 31 Aug 2009 17:00:47 +0000 (-0400) Subject: dovecot-example.conf: Removed (most) settings that are no longer used. X-Git-Tag: 2.0.alpha1~216 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4e38145de28d20a314730c0a9d61c15ed6812db4;p=thirdparty%2Fdovecot%2Fcore.git dovecot-example.conf: Removed (most) settings that are no longer used. --HG-- branch : HEAD --- diff --git a/dovecot-example.conf b/dovecot-example.conf index 5e148b723e..a331caddaf 100644 --- a/dovecot-example.conf +++ b/dovecot-example.conf @@ -24,24 +24,6 @@ # If you only want to use dovecot-auth, you can set this to "none". #protocols = imap imaps -# A space separated list of IP or host addresses where to listen in for -# connections. "*" listens in all IPv4 interfaces. "[::]" listens in all IPv6 -# interfaces. Use "*, [::]" for listening both IPv4 and IPv6. -# -# If you want to specify ports for each service, you will need to configure -# these settings inside the protocol imap/pop3 { ... } section, so you can -# specify different ports for IMAP/POP3. For example: -# protocol imap { -# listen = *:10143 -# ssl_listen = *:10943 -# .. -# } -# protocol pop3 { -# listen = *:10100 -# .. -# } -#listen = * - # Disable LOGIN command and all other plaintext authentications unless # SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP # matches the local IP (ie. you're connecting from the same computer), the @@ -81,11 +63,6 @@ ## SSL settings ## -# IP or host address where to listen in for SSL connections. Remember to also -# add imaps and/or pop3s to protocols setting. Defaults to same as "listen" -# setting if not specified. -#ssl_listen = - # SSL/TLS support: yes, no, required. #ssl = yes @@ -133,43 +110,12 @@ ssl_key = -# Directory where authentication process places authentication UNIX sockets -# which login needs to be able to connect to. The sockets are created when -# running as root, so you don't have to worry about permissions. Note that -# everything in this directory is deleted when Dovecot is started. -#login_dir = /var/run/dovecot/login - -# chroot login process to the login_dir. Only reason not to do this is if you -# wish to run the whole Dovecot without roots. -#login_chroot = yes - -# User to use for the login process. Create a completely new user for this, -# and don't use it anywhere else. The user must also belong to a group where -# only it has access, it's used to control access for authentication process. -# Note that this user is NOT used to access mails. -#login_user = dovecot - -# Set max. process size in megabytes. If you don't use -# login_process_per_connection you might need to grow this. -#login_process_size = 64 - # Should each login be processed in it's own process (yes), or should one # login process be allowed to process multiple connections (no)? Yes is more # secure, espcially with SSL/TLS enabled. No is faster since there's no need # to create processes all the time. #login_process_per_connection = yes -# Number of login processes to keep for listening new connections. -#login_processes_count = 3 - -# Maximum number of login processes to create. The listening process count -# usually stays at login_processes_count, but when multiple users start logging -# in at the same time more extra processes are created. To prevent fork-bombing -# we check only once in a second if new processes should be created - if all -# of them are used at the time, we double their amount until the limit set by -# this setting is reached. -#login_max_processes_count = 128 - # Maximum number of connections allowed per each login process. This setting # is used only if login_process_per_connection=no. Once the limit is reached, # the process notifies master so that it can create a new login process. @@ -361,12 +307,6 @@ ssl_key = - # - # This would attach gdb into the imap process and write backtraces into - # /tmp/gdbhelper.* files: - # mail_executable = /usr/libexec/dovecot/gdbhelper /usr/libexec/dovecot/imap - # - #mail_executable = /usr/libexec/dovecot/imap - # Maximum IMAP 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 "IMAP command line too large" errors often. @@ -618,13 +534,6 @@ protocol imap { ## protocol pop3 { - # Login executable location. - #login_executable = /usr/libexec/dovecot/pop3-login - - # POP3 executable location. See IMAP's mail_executable above for examples - # how this could be changed. - #mail_executable = /usr/libexec/dovecot/pop3 - # Don't try to set mails non-recent or seen with POP3 sessions. This is # mostly intended to reduce disk I/O. With maildir it doesn't move files # from new/ to cur/, with mbox it doesn't write Status-header. @@ -740,9 +649,6 @@ protocol lda { ## Authentication processes ## -# Executable location -#auth_executable = /usr/libexec/dovecot/dovecot-auth - # Authentication cache size in kilobytes. 0 means it's disabled. # Note that bsdauth, PAM and vpopmail require cache_key to be set for caching # to be used.