<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Hello people!!<br>
<br>
First, thanks very much to <span class="390462217-22112006"><font
 color="#0000ff" face="Arial" size="2"><font color="#000000">Ejay Hire</font>
</font><font face="Arial" size="2">and to </font></span>John Peacock
for your quickly answer!!<br>
<br>
Now, I've dovecot installed, I downloaded the source and I compiled
them. It's running ok now.<br>
<br>
But.....as I am new in all these issues I have some problems with the
configuration.<br>
<br>
I have a user called "webmaster" that have a mail into /var/spool/mail,
I want to redirect these mails to the "Evolution Mail" program from my
Linux Desktop.<br>
I have doubts in two ways:<br>
<br>
1.- Is the dovecot.conf file correct?<br>
2.- Are the "Evolution Mail" setting correct?<br>
<br>
Evolution Account Settings:<br>
Name: <a class="moz-txt-link-abbreviated" href="mailto:webmaster@bar.ses.alcatel.es">webmaster@bar.ses.alcatel.es</a><br>
Full Name: webmaster<br>
Email Address: <a class="moz-txt-link-abbreviated" href="mailto:webmaster@bar.ses.alcatel.es">webmaster@bar.ses.alcatel.es</a><br>
Server Type: POP<br>
Host: 159.23.98.66<br>
Username: webmaster<br>
Server Type: SMTP<br>
Server Configuration: 159.23.98.66<br>
<br>
<br>
<br>
## Dovecot configuration file<br>
<br>
# If you're in a hurry, see <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/QuickConfiguration">http://wiki.dovecot.org/QuickConfiguration</a><br>
<br>
# '#' character and everything after it is treated as comments. Extra
spaces<br>
# and tabs are ignored. If you want to use either of these explicitly,
put the<br>
# value inside quotes, eg.: key = "# char and trailing whitespace&nbsp; "<br>
<br>
# Default values are shown for each setting, it's not required to
uncomment<br>
# any of the lines. Exception to this are paths, they're just examples
with<br>
# the real defaults being based on configure options. The paths listed
here<br>
# are for configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var<br>
# --with-ssldir=/etc/ssl<br>
<br>
# Base directory where to store runtime data.<br>
#base_dir = /var/run/dovecot/<br>
<br>
# Protocols we want to be serving: imap imaps pop3 pop3s<br>
# If you only want to use dovecot-auth, you can set this to "none".<br>
protocols = imap imaps pop3 pop3s<br>
<br>
# IP or host address where to listen in for connections. It's not
currently<br>
# possible to specify multiple addresses. "*" listens in all IPv4
interfaces.<br>
# "[::]" listens in all IPv6 interfaces, but may also listen in all IPv4<br>
# interfaces depending on the operating system.<br>
#<br>
# If you want to specify ports for each service, you will need to
configure<br>
# these settings inside the protocol imap/pop3 { ... } section, so you
can<br>
# specify different ports for IMAP/POP3. For example:<br>
#&nbsp;&nbsp; protocol imap {<br>
#&nbsp;&nbsp;&nbsp;&nbsp; listen = *:10143<br>
#&nbsp;&nbsp;&nbsp;&nbsp; ssl_listen = *:10943<br>
#&nbsp;&nbsp;&nbsp;&nbsp; ..<br>
#&nbsp;&nbsp; }<br>
#&nbsp;&nbsp; protocol pop3 {<br>
#&nbsp;&nbsp;&nbsp;&nbsp; listen = *:10100<br>
#&nbsp;&nbsp;&nbsp;&nbsp; ..<br>
#&nbsp;&nbsp; }<br>
#listen = *<br>
<br>
# Disable LOGIN command and all other plaintext authentications unless<br>
# SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP<br>
# matches the local IP (ie. you're connecting from the same computer),
the<br>
# connection is considered secure and plaintext authentication is
allowed.<br>
#disable_plaintext_auth = yes<br>
<br>
# Should all IMAP and POP3 processes be killed when Dovecot master
process<br>
# shuts down. Setting this to "no" means that Dovecot can be upgraded
without<br>
# forcing existing client connections to close (although that could
also be<br>
# a problem if the upgrade is eg. because of a security fix). This
however<br>
# means that after master process has died, the client processes can't
write<br>
# to log files anymore.<br>
#shutdown_clients = yes<br>
<br>
##<br>
## Logging<br>
##<br>
<br>
# Use this logfile instead of syslog(). /dev/stderr can be used if you
want to<br>
# use stderr for logging (ONLY /dev/stderr - otherwise it is closed).<br>
#log_path = <br>
<br>
# For informational messages, use this logfile instead of the default<br>
#info_log_path = <br>
<br>
# Prefix for each line written to log file. % codes are in strftime(3)<br>
# format.<br>
#log_timestamp = "%b %d %H:%M:%S "<br>
<br>
# Syslog facility to use if you're logging to syslog. Usually if you
don't<br>
# want to use "mail", you'll use local0..local7. Also other standard<br>
# facilities are supported.<br>
#syslog_facility = mail<br>
<br>
##<br>
## SSL settings<br>
##<br>
<br>
# IP or host address where to listen in for SSL connections. Defaults<br>
# to above if not specified.<br>
#ssl_listen =<br>
<br>
# Disable SSL/TLS support.<br>
ssl_disable = yes<br>
<br>
# PEM encoded X.509 SSL/TLS certificate and private key. They're opened
before<br>
# dropping root privileges, so keep the key file unreadable by anyone
but<br>
# root. Included doc/mkcert.sh can be used to easily generate
self-signed<br>
# certificate, just make sure to update the domains in
dovecot-openssl.cnf<br>
#ssl_cert_file = /etc/ssl/certs/dovecot.pem<br>
#ssl_key_file = /etc/ssl/private/dovecot.pem<br>
<br>
# If key file is password protected, give the password here.
Alternatively<br>
# give it when starting dovecot with -p parameter.<br>
#ssl_key_password =<br>
<br>
# File containing trusted SSL certificate authorities. Usually not
needed.<br>
# The CAfile should contain the CA-certificate(s) followed by the
matching <br>
# CRL(s). CRL checking is new in dovecot .rc1<br>
#ssl_ca_file = <br>
<br>
# Request client to send a certificate.<br>
#ssl_verify_client_cert = no<br>
<br>
# How often to regenerate the SSL parameters file. Generation is quite
CPU<br>
# intensive operation. The value is in hours, 0 disables regeneration<br>
# entirely.<br>
#ssl_parameters_regenerate = 168<br>
<br>
# SSL ciphers to use<br>
#ssl_cipher_list = ALL:!LOW<br>
<br>
# Show protocol level SSL errors.<br>
#verbose_ssl = no<br>
<br>
##<br>
## Login processes<br>
##<br>
<br>
# Directory where authentication process places authentication UNIX
sockets<br>
# which login needs to be able to connect to. The sockets are created
when<br>
# running as root, so you don't have to worry about permissions. Note
that<br>
# everything in this directory is deleted when Dovecot is started.<br>
#login_dir = /var/run/dovecot/login<br>
<br>
# chroot login process to the login_dir. Only reason not to do this is
if you<br>
# wish to run the whole Dovecot without roots.<br>
# <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/Rootless">http://wiki.dovecot.org/Rootless</a><br>
#login_chroot = yes<br>
<br>
# User to use for the login process. Create a completely new user for
this,<br>
# and don't use it anywhere else. The user must also belong to a group
where<br>
# only it has access, it's used to control access for authentication
process.<br>
# Note that this user is NOT used to access mails.<br>
# <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/UserIds">http://wiki.dovecot.org/UserIds</a><br>
login_user = linus<br>
<br>
# Set max. process size in megabytes. If you don't use<br>
# login_process_per_connection you might need to grow this.<br>
#login_process_size = 32<br>
<br>
# Should each login be processed in it's own process (yes), or should
one<br>
# login process be allowed to process multiple connections (no)? Yes is
more<br>
# secure, espcially with SSL/TLS enabled. No is faster since there's no
need<br>
# to create processes all the time.<br>
#login_process_per_connection = yes<br>
<br>
# Number of login processes to keep for listening new connections.<br>
#login_processes_count = 3<br>
<br>
# Maximum number of login processes to create. The listening process
count<br>
# usually stays at login_processes_count, but when multiple users start
logging<br>
# in at the same time more extra processes are created. To prevent
fork-bombing<br>
# we check only once in a second if new processes should be created -
if all<br>
# of them are used at the time, we double their amount until the limit
set by<br>
# this setting is reached.<br>
#login_max_processes_count = 128<br>
<br>
# Maximum number of connections allowed per each login process. This
setting<br>
# is used only if login_process_per_connection=no. Once the limit is
reached,<br>
# the process notifies master so that it can create a new login process.<br>
# You should make sure that the process has at least<br>
# 16 + login_max_connections * 2 available file descriptors.<br>
#login_max_connections = 256<br>
<br>
# Greeting message for clients.<br>
#login_greeting = Dovecot ready.<br>
<br>
# Space-separated list of elements we want to log. The elements which
have<br>
# a non-empty variable value are joined together to form a
comma-separated<br>
# string.<br>
#login_log_format_elements = user=&lt;%u&gt; method=%m rip=%r lip=%l %c<br>
<br>
# Login log format. %$ contains login_log_format_elements string, %s
contains<br>
# the data we want to log.<br>
#login_log_format = %$: %s<br>
<br>
##<br>
## Mailbox locations and namespaces<br>
##<br>
<br>
# Location for users' mailboxes. This is the same as the old
default_mail_env<br>
# setting. The default is empty, which means that Dovecot tries to find
the<br>
# mailboxes automatically. This won't work if the user doesn't have any
mail<br>
# yet, so you should explicitly tell Dovecot the full location.<br>
#<br>
# If you're using mbox, giving a path to the INBOX file (eg.
/var/mail/%u)<br>
# isn't enough. You'll also need to tell Dovecot where the other
mailboxes are<br>
# and where Dovecot can place its index files. This is called the "root
mail<br>
# directory", and it must be the first path given in the mail_location
setting.<br>
#<br>
# There are a few special variables you can use, eg.:<br>
#<br>
#&nbsp;&nbsp; %u - username<br>
#&nbsp;&nbsp; %n - user part in user@domain, same as %u if there's no domain<br>
#&nbsp;&nbsp; %d - domain part in user@domain, empty if there's no domain<br>
#&nbsp;&nbsp; %h - home directory<br>
#<br>
# See doc/variables.txt for full list. Some examples:<br>
#<br>
#&nbsp;&nbsp; mail_location = maildir:~/Maildir<br>
#&nbsp;&nbsp; mail_location = mbox:~/mail:INBOX=/var/mail/%u<br>
#&nbsp;&nbsp; mail_location =
mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%n<br>
#<br>
# <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/MailLocation">http://wiki.dovecot.org/MailLocation</a><br>
#<br>
mail_location = mbox:~/mail:INBOX=/var/mail/%u:INDEX=/var/indexes/%u <br>
<br>
# If you need to set multiple mailbox locations or want to change
default<br>
# namespace settings, you can do it by defining namespace sections:<br>
#<br>
# You can have private, shared and public namespaces. The only
difference<br>
# between them is how Dovecot announces them to client via NAMESPACE<br>
# extension. Shared namespaces are meant for user-owned mailboxes which
are<br>
# shared to other users, while public namespaces are for more globally<br>
# accessible mailboxes.<br>
#<br>
# REMEMBER: If you add any namespaces, the default namespace must be
added<br>
# explicitly, ie. mail_location does nothing unless you have a namespace<br>
# without a location setting. Default namespace is simply done by
having a<br>
# namespace with empty prefix.<br>
#namespace private {<br>
&nbsp;&nbsp; # Hierarchy separator to use. You should use the same separator for
all<br>
&nbsp;&nbsp; # namespaces or some clients get confused. '/' is usually a good one.<br>
&nbsp;&nbsp; # The default however depends on the underlying mail storage format.<br>
&nbsp;&nbsp; #separator = <br>
<br>
&nbsp;&nbsp; # Prefix required to access this namespace. This needs to be
different for<br>
&nbsp;&nbsp; # all namespaces. For example "Public/".<br>
&nbsp;&nbsp; #prefix = <br>
<br>
&nbsp;&nbsp; # Physical location of the mailbox. This is in same format as<br>
&nbsp;&nbsp; # mail_location, which is also the default for it.<br>
&nbsp;&nbsp; #location =<br>
<br>
&nbsp;&nbsp; # There can be only one INBOX, and this setting defines which
namespace<br>
&nbsp;&nbsp; # has it.<br>
&nbsp;&nbsp; #inbox = yes<br>
<br>
&nbsp;&nbsp; # If namespace is hidden, it's not advertised to clients via
NAMESPACE<br>
&nbsp;&nbsp; # extension or shown in LIST replies. This is mostly useful when
converting<br>
&nbsp;&nbsp; # from another server with different namespaces which you want to
depricate<br>
&nbsp;&nbsp; # but still keep working. For example you can create hidden
namespaces with<br>
&nbsp;&nbsp; # prefixes "~/mail/", "~%u/mail/" and "mail/".<br>
&nbsp;&nbsp; #hidden = yes<br>
#}<br>
<br>
# Grant access to these extra groups for mail processes. Typical use
would be<br>
# to give "mail" group write access to /var/mail to be able to create
dotlocks.<br>
#mail_extra_groups =<br>
<br>
# Allow full filesystem access to clients. There's no access checks
other than<br>
# what the operating system does for the active UID/GID. It works with
both<br>
# maildir and mboxes, allowing you to prefix mailboxes names with eg.
/path/<br>
# or ~user/.<br>
#mail_full_filesystem_access = no<br>
<br>
##<br>
## Mail processes<br>
##<br>
<br>
# Enable mail process debugging. This can help you figure out why
Dovecot<br>
# isn't finding your mails.<br>
#mail_debug = no<br>
<br>
# Log prefix for mail processes. See doc/variables.txt for list of
possible<br>
# variables you can use.<br>
#mail_log_prefix = "%Us(%u): "<br>
<br>
# Use mmap() instead of read() to read mail files. read() seems to be a
bit<br>
# faster with my Linux/x86 and it's better with NFS, so that's the
default.<br>
# Note that OpenBSD 3.3 and older don't work right with
mail_read_mmaped = yes.<br>
#mail_read_mmaped = no<br>
<br>
# Don't use mmap() at all. This is required if you store indexes to
shared<br>
# filesystems (NFS or clustered filesystem).<br>
#mmap_disable = no<br>
<br>
# Don't write() to mmaped files. This is required for some operating
systems<br>
# which use separate caches for them, such as OpenBSD.<br>
#mmap_no_write = no<br>
<br>
# Locking method for index files. Alternatives are fcntl, flock and
dotlock.<br>
# Dotlocking uses some tricks which may create more disk I/O than other
locking<br>
# methods. NOTE: If you use NFS, remember to change also mmap_disable
setting!<br>
#lock_method = fcntl<br>
<br>
# Drop all privileges before exec()ing the mail process. This is mostly<br>
# meant for debugging, otherwise you don't get core dumps. It could be
a small<br>
# security risk if you use single UID for multiple users, as the users
could<br>
# ptrace() each others processes then.<br>
#mail_drop_priv_before_exec = no<br>
<br>
# Show more verbose process titles (in ps). Currently shows user name
and<br>
# IP address. Useful for seeing who are actually using the IMAP
processes<br>
# (eg. shared mailboxes or if same uid is used for multiple accounts).<br>
#verbose_proctitle = no<br>
<br>
# Valid UID range for users, defaults to 500 and above. This is mostly<br>
# to make sure that users can't log in as daemons or other system users.<br>
# Note that denying root logins is hardcoded to dovecot binary and can't<br>
# be done even if first_valid_uid is set to 0.<br>
#first_valid_uid = 500<br>
#last_valid_uid = 0<br>
<br>
# Valid GID range for users, defaults to non-root/wheel. Users having<br>
# non-valid GID as primary group ID aren't allowed to log in. If user<br>
# belongs to supplementary groups with non-valid GIDs, those groups are<br>
# not set.<br>
#first_valid_gid = 1<br>
#last_valid_gid = 0<br>
<br>
# Maximum number of running mail processes. When this limit is reached,<br>
# new users aren't allowed to log in.<br>
#max_mail_processes = 1024<br>
<br>
# Set max. process size in megabytes. Most of the memory goes to
mmap()ing<br>
# files, so it shouldn't harm much even if this limit is set pretty
high.<br>
#mail_process_size = 256<br>
<br>
# Maximum allowed length for mail keyword name. It's only forced when
trying<br>
# to create new keywords.<br>
#mail_max_keyword_length = 50<br>
<br>
# Default umask to use for mail files and directories.<br>
#umask = 0077<br>
<br>
# ':' separated list of directories under which chrooting is allowed
for mail<br>
# processes (ie. /var/mail will allow chrooting to /var/mail/foo/bar
too).<br>
# This setting doesn't affect login_chroot or auth_chroot variables.<br>
# WARNING: Never add directories here which local users can modify, that<br>
# may lead to root exploit. Usually this should be done only if you
don't<br>
# allow shell access for users. See doc/configuration.txt for more
information.<br>
#valid_chroot_dirs = <br>
<br>
# Default chroot directory for mail processes. This can be overridden
for<br>
# specific users in user database by giving /./ in user's home directory<br>
# (eg. /home/./user chroots into /home). Note that usually there is no
real<br>
# need to do chrooting, Dovecot doesn't allow users to access files
outside<br>
# their mail directory anyway.<br>
#mail_chroot = <br>
<br>
##<br>
## Mailbox handling optimizations<br>
##<br>
<br>
# Space-separated list of fields to initially save into cache file.
Currently<br>
# these fields are allowed:<br>
#<br>
#&nbsp; flags, date.sent, date.received, size.virtual, size.physical<br>
#&nbsp; mime.parts, imap.body, imap.bodystructure<br>
#<br>
# Different IMAP clients work in different ways, so they benefit from<br>
# different cached fields. Some do not benefit from them at all.
Caching more<br>
# than necessary generates useless disk I/O, so you don't want to do
that<br>
# either.<br>
#<br>
# Dovecot attempts to automatically figure out what client wants and it
keeps<br>
# only that. However the first few times a mailbox is opened, Dovecot
hasn't<br>
# yet figured out what client needs, so it may not perform optimally.
If you<br>
# know what fields the majority of your clients need, it may be useful
to set<br>
# these fields by hand. If client doesn't actually use them, Dovecot
will<br>
# eventually drop them.<br>
#<br>
# Usually you should just leave this field alone. The potential
benefits are<br>
# typically unnoticeable.<br>
#mail_cache_fields = <br>
<br>
# Space-separated list of fields that Dovecot should never save to
cache file.<br>
# Useful if you want to save disk space at the cost of more I/O when
the fields<br>
# needed.<br>
#mail_never_cache_fields = <br>
<br>
# The minimum number of mails in a mailbox before updates are done to
cache<br>
# file. This allows optimizing Dovecot's behavior to do less disk
writes at<br>
# the cost of more disk reads.<br>
#mail_cache_min_mail_count = 0<br>
<br>
# When IDLE command is running, mailbox is checked once in a while to
see if<br>
# there are any new mails or other changes. This setting defines the
minimum<br>
# time to wait between those checks. Dovecot is however able to use
dnotify<br>
# and inotify with Linux to reply immediately after the change occurs.<br>
#mailbox_idle_check_interval = 30<br>
<br>
# Save mails with CR+LF instead of plain LF. This makes sending those
mails<br>
# take less CPU, especially with sendfile() syscall with Linux and
FreeBSD.<br>
# But it also creates a bit more disk I/O which may just make it slower.<br>
# Also note that if other software reads the mboxes/maildirs, they may
handle<br>
# the extra CRs wrong and cause problems.<br>
#mail_save_crlf = no<br>
<br>
##<br>
## Maildir-specific settings<br>
##<br>
<br>
# By default LIST command returns all entries in maildir beginning with
dot.<br>
# Enabling this option makes Dovecot return only entries which are
directories.<br>
# This is done by stat()ing each entry, so it causes more disk I/O.<br>
# (For systems setting struct dirent-&gt;d_type, this check is free and
it's<br>
# done always regardless of this setting)<br>
#maildir_stat_dirs = no<br>
<br>
# Copy mail to another folders using hard links. This is much faster
than<br>
# actually copying the file. This is problematic only if something
modifies<br>
# the mail in one folder but doesn't want it modified in the others. I
don't<br>
# know any MUA which would modify mail files directly. IMAP protocol
also<br>
# requires that the mails don't change, so it would be problematic in
any case.<br>
# If you care about performance, enable it.<br>
#maildir_copy_with_hardlinks = no<br>
<br>
##<br>
## mbox-specific settings<br>
##<br>
<br>
# Which locking methods to use for locking mbox. There are four
available:<br>
#&nbsp; dotlock: Create &lt;mailbox&gt;.lock file. This is the oldest and
most NFS-safe<br>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; solution. If you want to use /var/mail/ like directory, the
users<br>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; will need write access to that directory.<br>
#&nbsp; fcntl&nbsp; : Use this if possible. Works with NFS too if lockd is used.<br>
#&nbsp; flock&nbsp; : May not exist in all systems. Doesn't work with NFS.<br>
#&nbsp; lockf&nbsp; : May not exist in all systems. Doesn't work with NFS.<br>
#<br>
# You can use multiple locking methods; if you do the order they're
declared<br>
# in is important to avoid deadlocks if other MTAs/MUAs are using
multiple<br>
# locking methods as well. Some operating systems don't allow using
some of<br>
# them simultaneously.<br>
#mbox_read_locks = fcntl<br>
#mbox_write_locks = dotlock fcntl<br>
<br>
# Maximum time in seconds to wait for lock (all of them) before
aborting.<br>
#mbox_lock_timeout = 300<br>
<br>
# If dotlock exists but the mailbox isn't modified in any way, override
the<br>
# lock file after this many seconds.<br>
#mbox_dotlock_change_timeout = 120<br>
<br>
# When mbox changes unexpectedly we have to fully read it to find out
what<br>
# changed. If the mbox is large this can take a long time. Since the
change<br>
# is usually just a newly appended mail, it'd be faster to simply read
the<br>
# new mails. If this setting is enabled, Dovecot does this but still
safely<br>
# fallbacks to re-reading the whole mbox file whenever something in
mbox isn't<br>
# how it's expected to be. The only real downside to this setting is
that if<br>
# some other MUA changes message flags, Dovecot doesn't notice it
immediately.<br>
# Note that a full sync is done with SELECT, EXAMINE, EXPUNGE and CHECK
<br>
# commands.<br>
#mbox_dirty_syncs = yes<br>
<br>
# Like mbox_dirty_syncs, but don't do full syncs even with SELECT,
EXAMINE,<br>
# EXPUNGE or CHECK commands. If this is set, mbox_dirty_syncs is
ignored.<br>
#mbox_very_dirty_syncs = no<br>
<br>
# Delay writing mbox headers until doing a full write sync (EXPUNGE and
CHECK<br>
# commands and when closing the mailbox). This is especially useful for
POP3<br>
# where clients often delete all mails. The downside is that our changes<br>
# aren't immediately visible to other MUAs.<br>
#mbox_lazy_writes = yes<br>
<br>
# If mbox size is smaller than this (in kilobytes), don't write index
files.<br>
# If an index file already exists it's still read, just not updated.<br>
#mbox_min_index_size = 0<br>
<br>
##<br>
## dbox-specific settings<br>
##<br>
<br>
# Maximum dbox file size in kilobytes until it's rotated.<br>
#dbox_rotate_size = 2048<br>
<br>
# Minimum dbox file size in kilobytes before it's rotated<br>
# (overrides dbox_rotate_days)<br>
#dbox_rotate_min_size = 16<br>
<br>
# Maximum dbox file age in days until it's rotated. Day always begins
from<br>
# midnight, so 1 = today, 2 = yesterday, etc. 0 = check disabled.<br>
#dbox_rotate_days = 0<br>
<br>
##<br>
## IMAP specific settings<br>
##<br>
<br>
protocol imap {<br>
&nbsp; # Login executable location.<br>
&nbsp; #login_executable = /usr/libexec/dovecot/imap-login<br>
<br>
&nbsp; # IMAP executable location. Changing this allows you to execute other<br>
&nbsp; # binaries before the imap process is executed.<br>
&nbsp; #<br>
&nbsp; # This would write rawlogs into ~/dovecot.rawlog/ directory:<br>
&nbsp; #&nbsp;&nbsp; mail_executable = /usr/libexec/dovecot/rawlog
/usr/libexec/dovecot/imap<br>
&nbsp; #<br>
&nbsp; # This would attach gdb into the imap process and write backtraces
into<br>
&nbsp; # /tmp/gdbhelper.* files:<br>
&nbsp; #&nbsp;&nbsp; mail_executable = /usr/libexec/dovecot/gdbhelper
/usr/libexec/dovecot/imap<br>
&nbsp; #<br>
&nbsp; #mail_executable = /usr/libexec/dovecot/imap<br>
<br>
&nbsp; # Maximum IMAP command line length in bytes. Some clients generate
very long<br>
&nbsp; # command lines with huge mailboxes, so you may need to raise this if
you get<br>
&nbsp; # "Too long argument" or "IMAP command line too large" errors often.<br>
&nbsp; #imap_max_line_length = 65536<br>
<br>
&nbsp; # Support for dynamically loadable plugins. mail_plugins is a space
separated<br>
&nbsp; # list of plugins to load.<br>
&nbsp; #mail_plugins = <br>
&nbsp; #mail_plugin_dir = /usr/lib/dovecot/imap<br>
<br>
&nbsp; # Send IMAP capabilities in greeting message. This makes it
unnecessary for<br>
&nbsp; # clients to request it with CAPABILITY command, so it saves one
round-trip.<br>
&nbsp; # Many clients however don't understand it and ask the CAPABILITY
anyway.<br>
&nbsp; #login_greeting_capability = no<br>
<br>
&nbsp; # Override the IMAP CAPABILITY response.<br>
&nbsp; #imap_capability = <br>
<br>
&nbsp; # Workarounds for various client bugs:<br>
&nbsp; #&nbsp;&nbsp; delay-newmail:<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; Send EXISTS/RECENT new mail notifications only when replying to
NOOP<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; and CHECK commands. Some clients ignore them otherwise, for
example<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; OSX Mail. Outlook Express breaks more badly though, without
this it<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; may show user "Message no longer in server" errors. Note that
OE6 still<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; breaks even with this workaround if synchronization is set to<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; "Headers Only".<br>
&nbsp; #&nbsp;&nbsp; outlook-idle:<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; Outlook and Outlook Express never abort IDLE command, so if no
mail<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; arrives in half a hour, Dovecot closes the connection. This is
still<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; fine, except Outlook doesn't connect back so you don't see if
new mail<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; arrives.<br>
&nbsp; #&nbsp;&nbsp; netscape-eoh:<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; Netscape 4.x breaks if message headers don't end with the empty
"end of<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; headers" line. Normally all messages have this, but setting this<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; workaround makes sure that Netscape never breaks by adding the
line if<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; it doesn't exist. This is done only for FETCH
BODY[HEADER.FIELDS..]<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; commands. Note that RFC says this shouldn't be done.<br>
&nbsp; #&nbsp;&nbsp; tb-extra-mailbox-sep:<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; With mbox storage a mailbox can contain either mails or
submailboxes,<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; but not both. Thunderbird separates these two by forcing server
to<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; accept '/' suffix in mailbox names in subscriptions list.<br>
&nbsp; # The list is space-separated.<br>
&nbsp; #imap_client_workarounds = outlook-idle<br>
}<br>
&nbsp; <br>
##<br>
## POP3 specific settings<br>
##<br>
<br>
protocol pop3 {<br>
&nbsp; # Login executable location.<br>
&nbsp; #login_executable = /usr/libexec/dovecot/pop3-login<br>
<br>
&nbsp; # POP3 executable location. See IMAP's mail_executable above for
examples<br>
&nbsp; # how this could be changed.<br>
&nbsp; #mail_executable = /usr/libexec/dovecot/pop3<br>
<br>
&nbsp; # Don't try to set mails non-recent or seen with POP3 sessions. This
is<br>
&nbsp; # mostly intended to reduce disk I/O. With maildir it doesn't move
files<br>
&nbsp; # from new/ to cur/, with mbox it doesn't write Status-header.<br>
&nbsp; #pop3_no_flag_updates = no<br>
<br>
&nbsp; # Support LAST command which exists in old POP3 specs, but has been
removed<br>
&nbsp; # from new ones. Some clients still wish to use this though. Enabling
this<br>
&nbsp; # makes RSET command clear all \Seen flags from messages.<br>
&nbsp; #pop3_enable_last = no<br>
<br>
&nbsp; # If mail has X-UIDL header, use it as the mail's UIDL.<br>
&nbsp; #pop3_reuse_xuidl = no<br>
<br>
&nbsp; # Keep the mailbox locked for the entire POP3 session.<br>
&nbsp; #pop3_lock_session = no<br>
<br>
&nbsp; # POP3 UIDL format to use. You can use following variables:<br>
&nbsp; #<br>
&nbsp; #&nbsp; %v - Mailbox UIDVALIDITY<br>
&nbsp; #&nbsp; %u - Mail UID<br>
&nbsp; #&nbsp; %m - MD5 sum of the mailbox headers in hex (mbox only)<br>
&nbsp; #&nbsp; %f - filename (maildir only)<br>
&nbsp; #<br>
&nbsp; # If you want UIDL compatibility with other POP3 servers, use:<br>
&nbsp; #&nbsp; UW's ipop3d&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : %08Xv%08Xu<br>
&nbsp; #&nbsp; Courier version 0&nbsp;&nbsp; : %f<br>
&nbsp; #&nbsp; Courier version 1&nbsp;&nbsp; : %u<br>
&nbsp; #&nbsp; Courier version 2&nbsp;&nbsp; : %v-%u<br>
&nbsp; #&nbsp; Cyrus (&lt;= 2.1.3)&nbsp;&nbsp;&nbsp; : %u<br>
&nbsp; #&nbsp; Cyrus (&gt;= 2.1.4)&nbsp;&nbsp;&nbsp; : %v.%u<br>
&nbsp; #&nbsp; Older Dovecots&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : %v.%u<br>
&nbsp; #&nbsp; tpop3d&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : %Mf<br>
&nbsp; #<br>
&nbsp; # Note that Outlook 2003 seems to have problems with %v.%u format
which was<br>
&nbsp; # Dovecot's default, so if you're building a new server it would be a
good<br>
&nbsp; # idea to change this. %08Xu%08Xv should be pretty fail-safe.<br>
&nbsp; #<br>
&nbsp; # NOTE: Nowadays this is required to be set explicitly, since the old<br>
&nbsp; # default was bad but it couldn't be changed without breaking existing<br>
&nbsp; # installations. %08Xu%08Xv will be the new default, so use it for new<br>
&nbsp; # installations.<br>
&nbsp; #<br>
&nbsp; #pop3_uidl_format = <br>
<br>
&nbsp; # POP3 logout format string:<br>
&nbsp; #&nbsp; %t - number of TOP commands<br>
&nbsp; #&nbsp; %p - number of bytes sent to client as a result of TOP command<br>
&nbsp; #&nbsp; %r - number of RETR commands<br>
&nbsp; #&nbsp; %b - number of bytes sent to client as a result of RETR command<br>
&nbsp; #&nbsp; %d - number of deleted messages<br>
&nbsp; #&nbsp; %m - number of messages (before deletion)<br>
&nbsp; #&nbsp; %s - mailbox size in bytes (before deletion)<br>
&nbsp; #pop3_logout_format = top=%t/%p, retr=%r/%b, del=%d/%m, size=%s<br>
<br>
&nbsp; # Support for dynamically loadable plugins. mail_plugins is a space
separated<br>
&nbsp; # list of plugins to load.<br>
&nbsp; #mail_plugins = <br>
&nbsp; #mail_plugin_dir = /usr/lib/dovecot/pop3<br>
<br>
&nbsp; # Workarounds for various client bugs:<br>
&nbsp; #&nbsp;&nbsp; outlook-no-nuls:<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; Outlook and Outlook Express hang if mails contain NUL
characters.<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; This setting replaces them with 0x80 character.<br>
&nbsp; #&nbsp;&nbsp; oe-ns-eoh:<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; Outlook Express and Netscape Mail breaks if end of headers-line
is<br>
&nbsp; #&nbsp;&nbsp;&nbsp;&nbsp; missing. This option simply sends it if it's missing.<br>
&nbsp; # The list is space-separated.<br>
&nbsp; #pop3_client_workarounds = <br>
}<br>
<br>
##<br>
## LDA specific settings<br>
##<br>
<br>
protocol lda {<br>
&nbsp; # Address to use when sending rejection mails.<br>
&nbsp; postmaster_address = <a class="moz-txt-link-abbreviated" href="mailto:postmaster@example.com">postmaster@example.com</a><br>
<br>
&nbsp; # Hostname to use in various parts of sent mails, eg. in Message-Id.<br>
&nbsp; # Default is the system's real hostname.<br>
&nbsp; #hostname = <br>
<br>
&nbsp; # Support for dynamically loadable plugins. mail_plugins is a space
separated<br>
&nbsp; # list of plugins to load.<br>
&nbsp; #mail_plugins = <br>
&nbsp; #mail_plugin_dir = /usr/lib/dovecot/lda<br>
<br>
&nbsp; # Binary to use for sending mails.<br>
&nbsp; #sendmail_path = /usr/lib/sendmail<br>
<br>
&nbsp; # UNIX socket path to master authentication server to find users.<br>
&nbsp; #auth_socket_path = /var/run/dovecot/auth-master<br>
}<br>
<br>
##<br>
## Authentication processes<br>
##<br>
<br>
# Executable location<br>
#auth_executable = /usr/libexec/dovecot/dovecot-auth<br>
<br>
# Set max. process size in megabytes.<br>
#auth_process_size = 256<br>
<br>
# Authentication cache size in kilobytes. 0 means it's disabled.<br>
# Note that bsdauth, PAM and vpopmail require cache_key to be set for
caching<br>
# to be used. Also note that currently auth cache doesn't work very
well if <br>
# you're using multiple passdbs with same usernames in them.<br>
#auth_cache_size = 0<br>
# Time to live in seconds for cached data. After this many seconds the
cached<br>
# record is no longer used, *except* if the main database lookup returns<br>
# internal failure. We also try to handle password changes
automatically: If<br>
# user's previous authentication was successful, but this one wasn't,
the<br>
# cache isn't used. For now this works only with plaintext
authentication.<br>
#auth_cache_ttl = 3600<br>
<br>
# Space separated list of realms for SASL authentication mechanisms
that need<br>
# them. You can leave it empty if you don't want to support multiple
realms.<br>
# Many clients simply use the first one listed here, so keep the
default realm<br>
# first.<br>
#auth_realms =<br>
<br>
# Default realm/domain to use if none was specified. This is used for
both<br>
# SASL realms and appending @domain to username in plaintext logins.<br>
#auth_default_realm = <br>
<br>
# List of allowed characters in username. If the user-given username
contains<br>
# a character not listed in here, the login automatically fails. This
is just<br>
# an extra check to make sure user can't exploit any potential quote
escaping<br>
# vulnerabilities with SQL/LDAP databases. If you want to allow all
characters,<br>
# set this value to empty.<br>
#auth_username_chars =
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@<br>
<br>
# Username character translations before it's looked up from databases.
The<br>
# value contains series of from -&gt; to characters. For example "#@/@"
means<br>
# that '#' and '/' characters are translated to '@'.<br>
#auth_username_translation =<br>
<br>
# Username formatting before it's looked up from databases. You can use<br>
# the standard variables here, eg. %Lu would lowercase the username, %n
would<br>
# drop away the domain if it was given, or "%n-AT-%d" would change the
'@' into<br>
# "-AT-". This translation is done after auth_username_translation
changes.<br>
#auth_username_format =<br>
<br>
# If you want to allow master users to log in by specifying the master<br>
# username within the normal username string (ie. not using SASL
mechanism's<br>
# support for it), you can specify the separator character here. The
format<br>
# is then &lt;username&gt;&lt;separator&gt;&lt;master username&gt;.
UW-IMAP uses "*" as the<br>
# separator, so that could be a good choice.<br>
#auth_master_user_separator =<br>
<br>
# Username to use for users logging in with ANONYMOUS SASL mechanism<br>
#auth_anonymous_username = anonymous<br>
<br>
# More verbose logging. Useful for figuring out why authentication isn't<br>
# working.<br>
#auth_verbose = no<br>
<br>
# Even more verbose logging for debugging purposes. Shows for example
SQL<br>
# queries.<br>
#auth_debug = no<br>
<br>
# In case of password mismatches, log the passwords and used scheme so
the<br>
# problem can be debugged. Requires auth_debug=yes to be set.<br>
#auth_debug_passwords = no<br>
<br>
# Maximum number of dovecot-auth worker processes. They're used to
execute<br>
# blocking passdb and userdb queries (eg. MySQL and PAM). They're<br>
# automatically created and destroyed as needed.<br>
#auth_worker_max_count = 30<br>
<br>
# Kerberos keytab to use for the GSSAPI mechanism. Will use the system <br>
# default (usually /etc/krb5.keytab) if not specified.<br>
#auth_krb5_keytab = <br>
<br>
auth default {<br>
&nbsp; # Space separated list of wanted authentication mechanisms:<br>
&nbsp; #&nbsp;&nbsp; plain login digest-md5 cram-md5 ntlm rpa apop anonymous gssapi<br>
&nbsp; mechanisms = plain<br>
<br>
&nbsp; #<br>
&nbsp; # Password database is used to verify user's password (and nothing
more).<br>
&nbsp; # You can have multiple passdbs and userdbs. This is useful if you
want to<br>
&nbsp; # allow both system users (/etc/passwd) and virtual users to login
without<br>
&nbsp; # duplicating the system users into virtual database.<br>
&nbsp; #<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/PasswordDatabase">http://wiki.dovecot.org/PasswordDatabase</a><br>
&nbsp; #<br>
&nbsp; # By adding master=yes setting inside a passdb you make the passdb a
list<br>
&nbsp; # of "master users", who can log in as anyone else. Unless you're
using PAM,<br>
&nbsp; # you probably still want the destination user to be looked up from
passdb<br>
&nbsp; # that it really exists. This can be done by adding pass=yes setting
to the<br>
&nbsp; # master passdb.<br>
&nbsp; #<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/MasterPassword">http://wiki.dovecot.org/MasterPassword</a><br>
<br>
&nbsp; # Users can be temporarily disabled by adding a passdb with deny=yes.<br>
&nbsp; # If the user is found from that database, authentication will fail.<br>
&nbsp; # The deny passdb should always be specified before others, so it gets<br>
&nbsp; # checked first. Here's an example:<br>
<br>
&nbsp; #passdb passwd-file {<br>
&nbsp;&nbsp;&nbsp; # File contains a list of usernames, one per line<br>
&nbsp;&nbsp;&nbsp; #args = /etc/dovecot.deny<br>
&nbsp;&nbsp;&nbsp; #deny = yes<br>
&nbsp; #}<br>
<br>
&nbsp; # PAM authentication. Preferred nowadays by most systems. <br>
&nbsp; # Note that PAM can only be used to verify if user's password is
correct,<br>
&nbsp; # so it can't be used as userdb. If you don't want to use a separate
user<br>
&nbsp; # database (passwd usually), you can use static userdb.<br>
&nbsp; # REMEMBER: You'll need /etc/pam.d/dovecot file created for PAM<br>
&nbsp; # authentication to actually work.<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/PasswordDatabase/PAM">http://wiki.dovecot.org/PasswordDatabase/PAM</a><br>
&nbsp; passdb pam {<br>
&nbsp;&nbsp;&nbsp; #&nbsp; [session=yes] [setcred=yes] [cache_key=&lt;key&gt;] [&lt;service
name&gt;]<br>
&nbsp;&nbsp;&nbsp; #<br>
&nbsp;&nbsp;&nbsp; # session=yes makes Dovecot open and immediately close PAM session.
Some<br>
&nbsp;&nbsp;&nbsp; # PAM plugins need this to work, such as pam_mkhomedir.<br>
&nbsp;&nbsp;&nbsp; #<br>
&nbsp;&nbsp;&nbsp; # setcred=yes makes Dovecot establish PAM credentials if some PAM
plugins<br>
&nbsp;&nbsp;&nbsp; # need that. They aren't ever deleted though, so this isn't enabled
by<br>
&nbsp;&nbsp;&nbsp; # default.<br>
&nbsp;&nbsp;&nbsp; #<br>
&nbsp;&nbsp;&nbsp; # cache_key can be used to enable authentication caching for PAM<br>
&nbsp;&nbsp;&nbsp; # (auth_cache_size also needs to be set). It isn't enabled by
default<br>
&nbsp;&nbsp;&nbsp; # because PAM modules can do all kinds of checks besides checking
password,<br>
&nbsp;&nbsp;&nbsp; # such as checking IP address. Dovecot can't know about these checks<br>
&nbsp;&nbsp;&nbsp; # without some help. cache_key is simply a list of variables (see<br>
&nbsp;&nbsp;&nbsp; # doc/variables.txt) which must match for the cached data to be
used.<br>
&nbsp;&nbsp;&nbsp; # Here are some examples:<br>
&nbsp;&nbsp;&nbsp; #&nbsp;&nbsp; %u - Username must match. Probably sufficient for most uses.<br>
&nbsp;&nbsp;&nbsp; #&nbsp;&nbsp; %u%r - Username and remote IP address must match.<br>
&nbsp;&nbsp;&nbsp; #&nbsp;&nbsp; %u%s - Username and service (ie. IMAP, POP3) must match.<br>
&nbsp;&nbsp;&nbsp; # <br>
&nbsp;&nbsp;&nbsp; # If service name is "*", it means the authenticating service name<br>
&nbsp;&nbsp;&nbsp; # is used, eg. pop3 or imap (/etc/pam.d/pop3, /etc/pam.d/imap).<br>
&nbsp;&nbsp;&nbsp; #<br>
&nbsp;&nbsp;&nbsp; # Some examples:<br>
&nbsp;&nbsp;&nbsp; #&nbsp;&nbsp; args = session=yes *<br>
&nbsp;&nbsp;&nbsp; #&nbsp;&nbsp; args = cache_key=%u dovecot<br>
&nbsp;&nbsp;&nbsp; #args = dovecot<br>
&nbsp; }<br>
<br>
&nbsp; # /etc/passwd or similar, using getpwnam()<br>
&nbsp; # In many systems nowadays this uses Name Service Switch, which is<br>
&nbsp; # configured in /etc/nsswitch.conf.<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/AuthDatabase/Passwd">http://wiki.dovecot.org/AuthDatabase/Passwd</a><br>
&nbsp; #passdb passwd {<br>
&nbsp; #}<br>
<br>
&nbsp; # /etc/shadow or similiar, using getspnam(). Deprecated by PAM
nowadays.<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/PasswordDatabase/Shadow">http://wiki.dovecot.org/PasswordDatabase/Shadow</a><br>
&nbsp; #passdb shadow {<br>
&nbsp; #}<br>
<br>
&nbsp; # PAM-like authentication for OpenBSD.<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/PasswordDatabase/BSDAuth">http://wiki.dovecot.org/PasswordDatabase/BSDAuth</a><br>
&nbsp; #passdb bsdauth {<br>
&nbsp;&nbsp;&nbsp; # [cache_key=&lt;key&gt;] - See cache_key in PAM for explanation.<br>
&nbsp;&nbsp;&nbsp; #args =<br>
&nbsp; #}<br>
<br>
&nbsp; # passwd-like file with specified location<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/AuthDatabase/PasswdFile">http://wiki.dovecot.org/AuthDatabase/PasswdFile</a><br>
&nbsp; #passdb passwd-file {<br>
&nbsp;&nbsp;&nbsp; # Path for passwd-file<br>
&nbsp;&nbsp;&nbsp; #args = <br>
&nbsp; #}<br>
<br>
&nbsp; # checkpassword executable authentication<br>
&nbsp; # NOTE: You will probably want to use "userdb prefetch" with this.<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/PasswordDatabase/CheckPassword">http://wiki.dovecot.org/PasswordDatabase/CheckPassword</a><br>
&nbsp; #passdb checkpassword {<br>
&nbsp;&nbsp;&nbsp; # Path for checkpassword binary<br>
&nbsp;&nbsp;&nbsp; #args = <br>
&nbsp; #}<br>
<br>
&nbsp; # SQL database<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/AuthDatabase/SQL">http://wiki.dovecot.org/AuthDatabase/SQL</a><br>
&nbsp; #passdb sql {<br>
&nbsp;&nbsp;&nbsp; # Path for SQL configuration file, see doc/dovecot-sql.conf for
example<br>
&nbsp;&nbsp;&nbsp; #args = <br>
&nbsp; #}<br>
<br>
&nbsp; # LDAP database<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/AuthDatabase/LDAP">http://wiki.dovecot.org/AuthDatabase/LDAP</a><br>
&nbsp; #passdb ldap {<br>
&nbsp;&nbsp;&nbsp; # Path for LDAP configuration file, see doc/dovecot-ldap.conf for
example<br>
&nbsp;&nbsp;&nbsp; #args = <br>
&nbsp; #}<br>
<br>
&nbsp; # vpopmail authentication<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/AuthDatabase/VPopMail">http://wiki.dovecot.org/AuthDatabase/VPopMail</a><br>
&nbsp; #passdb vpopmail {<br>
&nbsp;&nbsp;&nbsp; # [cache_key=&lt;key&gt;] - See cache_key in PAM for explanation.<br>
&nbsp;&nbsp;&nbsp; #args =<br>
&nbsp; #}<br>
<br>
&nbsp; #<br>
&nbsp; # User database specifies where mails are located and what user/group
IDs<br>
&nbsp; # own them. For single-UID configuration use "static".<br>
&nbsp; #<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/UserDatabase">http://wiki.dovecot.org/UserDatabase</a><br>
&nbsp; #<br>
<br>
&nbsp; # /etc/passwd or similar, using getpwnam()<br>
&nbsp; # In many systems nowadays this uses Name Service Switch, which is<br>
&nbsp; # configured in /etc/nsswitch.conf. WARNING: nss_ldap is known to be
broken<br>
&nbsp; # with Dovecot. Don't use it, or users might log in as each others!<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/AuthDatabase/Passwd">http://wiki.dovecot.org/AuthDatabase/Passwd</a><br>
&nbsp; userdb passwd {<br>
&nbsp; }<br>
<br>
&nbsp; # passwd-like file with specified location<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/AuthDatabase/PasswdFile">http://wiki.dovecot.org/AuthDatabase/PasswdFile</a><br>
&nbsp; #userdb passwd-file {<br>
&nbsp;&nbsp;&nbsp; # Path for passwd-file<br>
&nbsp;&nbsp;&nbsp; #args =<br>
&nbsp; #}<br>
<br>
&nbsp; # static settings generated from template<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/UserDatabase/Static">http://wiki.dovecot.org/UserDatabase/Static</a><br>
&nbsp; #userdb static {<br>
&nbsp;&nbsp;&nbsp; # Template for the fields. Can return anything a userdb could
normally<br>
&nbsp;&nbsp;&nbsp; # return. For example:<br>
&nbsp;&nbsp;&nbsp; #<br>
&nbsp;&nbsp;&nbsp; #&nbsp; args = uid=500 gid=500 home=/var/mail/%u<br>
&nbsp;&nbsp;&nbsp; #<br>
&nbsp;&nbsp;&nbsp; #args =<br>
&nbsp; #}<br>
<br>
&nbsp; # SQL database<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/AuthDatabase/SQL">http://wiki.dovecot.org/AuthDatabase/SQL</a><br>
&nbsp; #userdb sql {<br>
&nbsp;&nbsp;&nbsp; # Path for SQL configuration file, see doc/dovecot-sql.conf for
example<br>
&nbsp;&nbsp;&nbsp; #args = <br>
&nbsp; #}<br>
<br>
&nbsp; # LDAP database<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/AuthDatabase/LDAP">http://wiki.dovecot.org/AuthDatabase/LDAP</a><br>
&nbsp; #userdb ldap {<br>
&nbsp;&nbsp;&nbsp; # Path for LDAP configuration file, see doc/dovecot-ldap.conf for
example<br>
&nbsp;&nbsp;&nbsp; #args = <br>
&nbsp; #}<br>
<br>
&nbsp; # vpopmail<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/AuthDatabase/VPopMail">http://wiki.dovecot.org/AuthDatabase/VPopMail</a><br>
&nbsp; #userdb vpopmail {<br>
&nbsp; #}<br>
<br>
&nbsp; # "prefetch" user database means that the passdb already provided the<br>
&nbsp; # needed information and there's no need to do a separate userdb
lookup.<br>
&nbsp; # This can be made to work with SQL and LDAP databases, see their
example<br>
&nbsp; # configuration files for more information how to do it.<br>
&nbsp; # <a class="moz-txt-link-freetext" href="http://wiki.dovecot.org/UserDatabase/Prefetch">http://wiki.dovecot.org/UserDatabase/Prefetch</a><br>
&nbsp; #userdb prefetch {<br>
&nbsp; #}<br>
<br>
&nbsp; # User to use for the process. This user needs access to only user and<br>
&nbsp; # password databases, nothing else. Only shadow and pam authentication<br>
&nbsp; # requires roots, so use something else if possible. Note that passwd<br>
&nbsp; # authentication with BSDs internally accesses shadow files, which
also<br>
&nbsp; # requires roots. Note that this user is NOT used to access mails.<br>
&nbsp; # That user is specified by userdb above.<br>
&nbsp; user = root<br>
<br>
&nbsp; # Directory where to chroot the process. Most authentication backends
don't<br>
&nbsp; # work if this is set, and there's no point chrooting if auth_user is
root.<br>
&nbsp; # Note that valid_chroot_dirs isn't needed to use this setting.<br>
&nbsp; #chroot = <br>
<br>
&nbsp; # Number of authentication processes to create<br>
&nbsp; #count = 1<br>
<br>
&nbsp; # Require a valid SSL client certificate or the authentication fails.<br>
&nbsp; #ssl_require_client_cert = no<br>
<br>
&nbsp; # Take the username from client's SSL certificate, using <br>
&nbsp; # X509_NAME_get_text_by_NID() which returns the subject's DN's<br>
&nbsp; # CommonName. <br>
&nbsp; #ssl_username_from_cert = no<br>
<br>
&nbsp; # It's possible to export the authentication interface to other
programs:<br>
&nbsp; #socket listen {<br>
&nbsp;&nbsp;&nbsp; #master {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # Master socket is typically used to give Dovecot's local delivery<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # agent access to userdb so it can find mailbox locations. It can<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # however also be used to disturb regular user authentications.<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # WARNING: Giving untrusted users access to master socket may be
a <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # security risk, don't give too wide permissions to it!<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #path = /var/run/dovecot/auth-master<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #mode = 0600<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # Default user/group is the one who started dovecot-auth (root)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #user = <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #group = <br>
&nbsp;&nbsp;&nbsp; #}<br>
&nbsp;&nbsp;&nbsp; #client {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # The client socket is generally safe to export to everyone.
Typical use<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # is to export it to your SMTP server so it can do SMTP AUTH
lookups<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # using it.<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #path = /var/run/dovecot/auth-client<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #mode = 0660<br>
&nbsp;&nbsp;&nbsp; #}<br>
&nbsp; #}<br>
}<br>
<br>
# If you wish to use another authentication server than dovecot-auth,
you can<br>
# use connect sockets. They assumed to be already running, Dovecot's
master<br>
# process only tries to connect to them. They don't need any other
settings<br>
# than the path for the master socket, as the configuration is done
elsewhere.<br>
# Note that the client sockets must exist in the login_dir.<br>
#auth external {<br>
#&nbsp; socket connect {<br>
#&nbsp;&nbsp;&nbsp; master {<br>
#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; path = /var/run/dovecot/auth-master<br>
#&nbsp;&nbsp;&nbsp; }<br>
#&nbsp; }<br>
#}<br>
<br>
##<br>
## Dictionary server settings<br>
##<br>
<br>
# Dictionary can be used by some plugins to store key=value lists.<br>
# Currently this is only used by dict quota backend. The dictionary can
be<br>
# used either directly or though a dictionary server. The following
dict block<br>
# maps dictionary names to URIs when the server is used. These can then
be<br>
# referenced using URIs in format "proxy:&lt;name&gt;".<br>
<br>
dict {<br>
&nbsp; #quota = mysql:/etc/dovecot-dict-quota.conf <br>
}<br>
<br>
##<br>
## Plugin settings<br>
##<br>
<br>
plugin {<br>
&nbsp; # Here you can give some extra environment variables to mail
processes.<br>
&nbsp; # This is mostly meant for passing parameters to plugins. %variable<br>
&nbsp; # expansion is done for all values.<br>
<br>
&nbsp; # Quota plugin. Multiple backends are supported:<br>
&nbsp; #&nbsp;&nbsp; dirsize: Find and sum all the files found from mail directory<br>
&nbsp; #&nbsp;&nbsp; dict: Keep quota stored in dictionary (eg. SQL)<br>
&nbsp; #&nbsp;&nbsp; maildir: Maildir++ quota<br>
&nbsp; #&nbsp;&nbsp; fs: Read-only support for filesystem quota<br>
&nbsp; #quota = maildir<br>
<br>
&nbsp; # ACL plugin. vfile backend reads ACLs from "dovecot-acl" file from
maildir<br>
&nbsp; # directory. You can also optionally give a global ACL directory path
where<br>
&nbsp; # ACLs are applied to all users' mailboxes. The global ACL directory
contains<br>
&nbsp; # one file for each mailbox, eg. INBOX or sub.mailbox.<br>
&nbsp; #acl = vfile:/etc/dovecot-acls<br>
<br>
&nbsp; # Convert plugin. If set, specifies the source storage path which is<br>
&nbsp; # converted to destination storage (mail_location).<br>
&nbsp; #convert_mail = mbox:%h/mail<br>
<br>
&nbsp; # Trash plugin. When saving a message would make user go over quota,
this<br>
&nbsp; # plugin automatically deletes the oldest mails from configured
mailboxes<br>
&nbsp; # until the message can be saved within quota limits. The
configuration file<br>
&nbsp; # is a text file where each line is in format: &lt;priority&gt;
&lt;mailbox name&gt;<br>
&nbsp; # Mails are first deleted in lowest -&gt; highest priority number
order<br>
&nbsp; #trash = /etc/dovecot-trash.conf<br>
}<br>
<br>
</body>
</html>