Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

103 rindas
4.3KB

  1. ## Dovecot configuration file
  2. # If you're in a hurry, see http://wiki2.dovecot.org/QuickConfiguration
  3. # "doveconf -n" command gives a clean output of the changed settings. Use it
  4. # instead of copy&pasting files when posting to the Dovecot mailing list.
  5. # '#' character and everything after it is treated as comments. Extra spaces
  6. # and tabs are ignored. If you want to use either of these explicitly, put the
  7. # value inside quotes, eg.: key = "# char and trailing whitespace "
  8. # Most (but not all) settings can be overridden by different protocols and/or
  9. # source/destination IPs by placing the settings inside sections, for example:
  10. # protocol imap { }, local 127.0.0.1 { }, remote 10.0.0.0/8 { }
  11. # Default values are shown for each setting, it's not required to uncomment
  12. # those. These are exceptions to this though: No sections (e.g. namespace {})
  13. # or plugin settings are added by default, they're listed only as examples.
  14. # Paths are also just examples with the real defaults being based on configure
  15. # options. The paths listed here are for configure --prefix=/usr
  16. # --sysconfdir=/etc --localstatedir=/var
  17. # Enable installed protocols
  18. !include_try /usr/share/dovecot/protocols.d/*.protocol
  19. # A comma separated list of IPs or hosts where to listen in for connections.
  20. # "*" listens in all IPv4 interfaces, "::" listens in all IPv6 interfaces.
  21. # If you want to specify non-default ports or anything more complex,
  22. # edit conf.d/master.conf.
  23. #listen = *, ::
  24. # Base directory where to store runtime data.
  25. #base_dir = /var/run/dovecot/
  26. # Name of this instance. In multi-instance setup doveadm and other commands
  27. # can use -i <instance_name> to select which instance is used (an alternative
  28. # to -c <config_path>). The instance name is also added to Dovecot processes
  29. # in ps output.
  30. #instance_name = dovecot
  31. # Greeting message for clients.
  32. #login_greeting = Dovecot ready.
  33. # Space separated list of trusted network ranges. Connections from these
  34. # IPs are allowed to override their IP addresses and ports (for logging and
  35. # for authentication checks). disable_plaintext_auth is also ignored for
  36. # these networks. Typically you'd specify your IMAP proxy servers here.
  37. #login_trusted_networks =
  38. # Space separated list of login access check sockets (e.g. tcpwrap)
  39. #login_access_sockets =
  40. # With proxy_maybe=yes if proxy destination matches any of these IPs, don't do
  41. # proxying. This isn't necessary normally, but may be useful if the destination
  42. # IP is e.g. a load balancer's IP.
  43. #auth_proxy_self =
  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. # 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. # If non-zero, run mail commands via this many connections to doveadm server,
  54. # instead of running them directly in the same process.
  55. #doveadm_worker_count = 0
  56. # UNIX socket or host:port used for connecting to doveadm server
  57. #doveadm_socket_path = doveadm-server
  58. # Space separated list of environment variables that are preserved on Dovecot
  59. # startup and passed down to all of its child processes. You can also give
  60. # key=value pairs to always set specific settings.
  61. #import_environment = TZ
  62. ##
  63. ## Dictionary server settings
  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. dict {
  71. #quota = mysql:/etc/dovecot/dovecot-dict-sql.conf.ext
  72. #expire = sqlite:/etc/dovecot/dovecot-dict-sql.conf.ext
  73. }
  74. # Most of the actual configuration gets included below. The filenames are
  75. # first sorted by their ASCII value and parsed in that order. The 00-prefixes
  76. # in filenames are intended to make it easier to understand the ordering.
  77. !include conf.d/*.conf
  78. # A config file can also tried to be included without giving an error if
  79. # it's not found:
  80. !include_try local.conf