Advertisement
Guest User

dovecot.conf

a guest
Aug 20th, 2013
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.51 KB | None | 0 0
  1. root@server.aevtech.com [/etc/dovecot]: cat dovecot.conf
  2. ## Dovecot configuration file
  3.  
  4. # If you're in a hurry, see http://wiki.dovecot.org/QuickConfiguration
  5.  
  6. # "doveconf -n" command gives a clean output of the changed settings. Use it
  7. # instead of copy&pasting files when posting to the Dovecot mailing list.
  8.  
  9. # '#' character and everything after it is treated as comments. Extra spaces
  10. # and tabs are ignored. If you want to use either of these explicitly, put the
  11. # value inside quotes, eg.: key = "# char and trailing whitespace  "
  12.  
  13. # Default values are shown for each setting, it's not required to uncomment
  14. # those. These are exceptions to this though: No sections (e.g. namespace {})
  15. # or plugin settings are added by default, they're listed only as examples.
  16. # Paths are also just examples with the real defaults being based on configure
  17. # options. The paths listed here are for configure --prefix=/usr
  18. # --sysconfdir=/etc --localstatedir=/var
  19.  
  20. # Protocols we want to be serving.
  21. protocols = imap pop3 lmtp
  22.  
  23. # A comma separated list of IPs or hosts where to listen in for connections.
  24. # "*" listens in all IPv4 interfaces, "::" listens in all IPv6 interfaces.
  25. # If you want to specify non-default ports or anything more complex,
  26. # edit conf.d/master.conf.
  27. #listen = *, ::
  28.  
  29. # Base directory where to store runtime data.
  30. #base_dir = /var/run/dovecot/
  31.  
  32. # Greeting message for clients.
  33. #login_greeting = Dovecot ready.
  34.  
  35. # Space separated list of trusted network ranges. Connections from these
  36. # IPs are allowed to override their IP addresses and ports (for logging and
  37. # for authentication checks). disable_plaintext_auth is also ignored for
  38. # these networks. Typically you'd specify your IMAP proxy servers here.
  39. #login_trusted_networks =
  40.  
  41. # Sepace separated list of login access check sockets (e.g. tcpwrap)
  42. #login_access_sockets =
  43.  
  44. # Show more verbose process titles (in ps). Currently shows user name and
  45. # IP address. Useful for seeing who are actually using the IMAP processes
  46. # (eg. shared mailboxes or if same uid is used for multiple accounts).
  47. #verbose_proctitle = no
  48.  
  49. # Should all processes be killed when Dovecot master process shuts down.
  50. # Setting this to "no" means that Dovecot can be upgraded without
  51. # forcing existing client connections to close (although that could also be
  52. # a problem if the upgrade is e.g. because of a security fix).
  53. #shutdown_clients = yes
  54.  
  55. # If non-zero, run mail commands via this many connections to doveadm server,
  56. # instead of running them directly in the same process.
  57. #doveadm_worker_count = 0
  58. # UNIX socket or host:port used for connecting to doveadm server
  59. #doveadm_socket_path = doveadm-server
  60.  
  61. ##
  62. ## Dictionary server settings
  63. ##
  64.  
  65. # Dictionary can be used to store key=value lists. This is used by several
  66. # plugins. The dictionary can be accessed either directly or though a
  67. # dictionary server. The following dict block maps dictionary names to URIs
  68. # when the server is used. These can then be referenced using URIs in format
  69. # "proxy::<name>".
  70.  
  71. dict {
  72.   #quota = mysql:/etc/dovecot/dovecot-dict-sql.conf.ext
  73.   #expire = sqlite:/etc/dovecot/dovecot-dict-sql.conf.ext
  74. }
  75.  
  76. # Most of the actual configuration gets included below. The filenames are
  77. # first sorted by their ASCII value and parsed in that order. The 00-prefixes
  78. # in filenames are intended to make it easier to understand the ordering.
  79. !include conf.d/*.conf
  80.  
  81. # A config file can also tried to be included without giving an error if
  82. # it's not found:
  83. #!include_try /etc/dovecot/local.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement