Advertisement
Guest User

/etc/dovecot/dovecot.conf

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