Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2012
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.20 KB | None | 0 0
  1. ## Dovecot configuration file
  2.  
  3. # If you're in a hurry, see http://wiki2.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, 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. # Enable installed protocols
  20. !include_try /usr/share/dovecot/protocols.d/*.protocol
  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. # Name of this instance. In multi-instance setup doveadm and other commands
  32. # can use -i <instance_name> to select which instance is used (an alternative
  33. # to -c <config_path>). The instance name is also added to Dovecot processes
  34. # in ps output.
  35. #instance_name = dovecot
  36.  
  37. # Greeting message for clients.
  38. #login_greeting = Dovecot ready.
  39.  
  40. # Space separated list of trusted network ranges. Connections from these
  41. # IPs are allowed to override their IP addresses and ports (for logging and
  42. # for authentication checks). disable_plaintext_auth is also ignored for
  43. # these networks. Typically you'd specify your IMAP proxy servers here.
  44. #login_trusted_networks =
  45.  
  46. # Sepace separated list of login access check sockets (e.g. tcpwrap)
  47. #login_access_sockets =
  48.  
  49. # With proxy_maybe=yes if proxy destination matches any of these IPs, don't do
  50. # proxying. This isn't necessary normally, but may be useful if the destination
  51. # IP is e.g. a load balancer's IP.
  52. #auth_proxy_self =
  53.  
  54. # Show more verbose process titles (in ps). Currently shows user name and
  55. # IP address. Useful for seeing who are actually using the IMAP processes
  56. # (eg. shared mailboxes or if same uid is used for multiple accounts).
  57. #verbose_proctitle = no
  58. verbose_proctitle = yes
  59.  
  60. # Should all processes be killed when Dovecot master process shuts down.
  61. # Setting this to "no" means that Dovecot can be upgraded without
  62. # forcing existing client connections to close (although that could also be
  63. # a problem if the upgrade is e.g. because of a security fix).
  64. #shutdown_clients = yes
  65.  
  66. # If non-zero, run mail commands via this many connections to doveadm server,
  67. # instead of running them directly in the same process.
  68. #doveadm_worker_count = 0
  69. # UNIX socket or host:port used for connecting to doveadm server
  70. #doveadm_socket_path = doveadm-server
  71.  
  72. # Space separated list of environment variables that are preserved on Dovecot
  73. # startup and passed down to all of its child processes. You can also give
  74. # key=value pairs to always set specific settings.
  75. #import_environment = TZ
  76.  
  77. ##
  78. ## Dictionary server settings
  79. ##
  80.  
  81. # Dictionary can be used to store key=value lists. This is used by several
  82. # plugins. The dictionary can be accessed either directly or though a
  83. # dictionary server. The following dict block maps dictionary names to URIs
  84. # when the server is used. These can then be referenced using URIs in format
  85. # "proxy::<name>".
  86.  
  87. dict {
  88. #quota = mysql:/etc/dovecot/dovecot-dict-sql.conf.ext
  89. #expire = sqlite:/etc/dovecot/dovecot-dict-sql.conf.ext
  90. }
  91.  
  92. # Most of the actual configuration gets included below. The filenames are
  93. # first sorted by their ASCII value and parsed in that order. The 00-prefixes
  94. # in filenames are intended to make it easier to understand the ordering.
  95. !include conf.d/*.conf
  96.  
  97. # A config file can also tried to be included without giving an error if
  98. # it's not found:
  99. !include_try local.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement