Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 4th, 2012  |  syntax: None  |  size: 43.51 KB  |  hits: 27  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ## Dovecot configuration file
  2.  
  3. # If you're in a hurry, see http://wiki.dovecot.org/QuickConfiguration
  4.  
  5. # "dovecot -n" command gives a clean output of the changed settings. Use it
  6. # instead of copy&pasting this file 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. # any of the lines. Exception to this are paths, they're just examples with
  14. # the real defaults being based on configure options. The paths listed here
  15. # are for configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
  16. # --with-ssldir=/etc/ssl
  17.  
  18. # Base directory where to store runtime data.
  19. #base_dir = /var/run/dovecot/
  20.  
  21. # Protocols we want to be serving: imap imaps pop3 pop3s managesieve
  22. # If you only want to use dovecot-auth, you can set this to "none".
  23. #protocols = imap imaps
  24. protocols = imap pop3 imaps pop3s
  25.  
  26. # IP or host address where to listen in for connections. It's not currently
  27. # possible to specify multiple addresses. "*" listens in all IPv4 interfaces.
  28. # "[::]" listens in all IPv6 interfaces, but may also listen in all IPv4
  29. # interfaces depending on the operating system.
  30. #
  31. # If you want to specify ports for each service, you will need to configure
  32. # these settings inside the protocol imap/pop3/managesieve { ... } section,
  33. # so you can specify different ports for IMAP/POP3/MANAGESIEVE. For example:
  34. #   protocol imap {
  35. #     listen = *:10143
  36. #     ssl_listen = *:10943
  37. #     ..
  38. #   }
  39. #   protocol pop3 {
  40. #     listen = *:10100
  41. #     ..
  42. #   }
  43. #   protocol managesieve {
  44. #     listen = *:12000
  45. #     ..
  46. #   }
  47. #listen = *
  48.  
  49. # Disable LOGIN command and all other plaintext authentications unless
  50. # SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP
  51. # matches the local IP (ie. you're connecting from the same computer), the
  52. # connection is considered secure and plaintext authentication is allowed.
  53. #disable_plaintext_auth = yes
  54. disable_plaintext_auth = no
  55.  
  56. # Should all IMAP and POP3 processes be killed when Dovecot master process
  57. # shuts down. Setting this to "no" means that Dovecot can be upgraded without
  58. # forcing existing client connections to close (although that could also be
  59. # a problem if the upgrade is eg. because of a security fix). This however
  60. # means that after master process has died, the client processes can't write
  61. # to log files anymore.
  62. #shutdown_clients = yes
  63.  
  64. ##
  65. ## Logging
  66. ##
  67.  
  68. # Log file to use for error messages, instead of sending them to syslog.
  69. # /dev/stderr can be used to log into stderr.
  70. #log_path =
  71.  
  72. # Log file to use for informational and debug messages.
  73. # Default is the same as log_path.
  74. #info_log_path =
  75.  
  76. # Prefix for each line written to log file. % codes are in strftime(3)
  77. # format.
  78. #log_timestamp = "%b %d %H:%M:%S "
  79. log_timestamp = "%Y-%m-%d %H:%M:%S "
  80.  
  81. # Syslog facility to use if you're logging to syslog. Usually if you don't
  82. # want to use "mail", you'll use local0..local7. Also other standard
  83. # facilities are supported.
  84. #syslog_facility = mail
  85.  
  86. ##
  87. ## SSL settings
  88. ##
  89.  
  90. # IP or host address where to listen in for SSL connections. Defaults
  91. # to above if not specified.
  92. #ssl_listen =
  93.  
  94. # Disable SSL/TLS support.
  95. #ssl_disable = no
  96.  
  97. # PEM encoded X.509 SSL/TLS certificate and private key. They're opened before
  98. # dropping root privileges, so keep the key file unreadable by anyone but
  99. # root.
  100. #ssl_cert_file = /etc/ssl/certs/dovecot.pem
  101. #ssl_key_file = /etc/ssl/private/dovecot.pem
  102.  
  103. # If key file is password protected, give the password here. Alternatively
  104. # give it when starting dovecot with -p parameter.
  105. #ssl_key_password =
  106.  
  107. # File containing trusted SSL certificate authorities. Set this only if you
  108. # intend to use ssl_verify_client_cert=yes. The CAfile should contain the
  109. # CA-certificate(s) followed by the matching CRL(s).
  110. #ssl_ca_file =
  111.  
  112. # Request client to send a certificate. If you also want to require it, set
  113. # ssl_require_client_cert=yes in auth section.
  114. #ssl_verify_client_cert = no
  115.  
  116. # How often to regenerate the SSL parameters file. Generation is quite CPU
  117. # intensive operation. The value is in hours, 0 disables regeneration
  118. # entirely.
  119. #ssl_parameters_regenerate = 168
  120.  
  121. # SSL ciphers to use
  122. #ssl_cipher_list = ALL:!LOW
  123.  
  124. # Show protocol level SSL errors.
  125. #verbose_ssl = no
  126.  
  127. ##
  128. ## Login processes
  129. ##
  130.  
  131. # <doc/wiki/LoginProcess.txt>
  132.  
  133. # Directory where authentication process places authentication UNIX sockets
  134. # which login needs to be able to connect to. The sockets are created when
  135. # running as root, so you don't have to worry about permissions. Note that
  136. # everything in this directory is deleted when Dovecot is started.
  137. #login_dir = /var/run/dovecot/login
  138.  
  139. # chroot login process to the login_dir. Only reason not to do this is if you
  140. # wish to run the whole Dovecot without roots. <doc/wiki/Rootless.txt>
  141. #login_chroot = yes
  142.  
  143. # User to use for the login process. Create a completely new user for this,
  144. # and don't use it anywhere else. The user must also belong to a group where
  145. # only it has access, it's used to control access for authentication process.
  146. # Note that this user is NOT used to access mails. <doc/wiki/UserIds.txt>
  147. #login_user = dovecot
  148.  
  149. # Set max. process size in megabytes. If you don't use
  150. # login_process_per_connection you might need to grow this.
  151. #login_process_size = 64
  152.  
  153. # Should each login be processed in it's own process (yes), or should one
  154. # login process be allowed to process multiple connections (no)? Yes is more
  155. # secure, espcially with SSL/TLS enabled. No is faster since there's no need
  156. # to create processes all the time.
  157. #login_process_per_connection = yes
  158.  
  159. # Number of login processes to keep for listening new connections.
  160. #login_processes_count = 3
  161.  
  162. # Maximum number of login processes to create. The listening process count
  163. # usually stays at login_processes_count, but when multiple users start logging
  164. # in at the same time more extra processes are created. To prevent fork-bombing
  165. # we check only once in a second if new processes should be created - if all
  166. # of them are used at the time, we double their amount until the limit set by
  167. # this setting is reached.
  168. #login_max_processes_count = 128
  169.  
  170. # Maximum number of connections allowed per each login process. This setting
  171. # is used only if login_process_per_connection=no. Once the limit is reached,
  172. # the process notifies master so that it can create a new login process.
  173. # You should make sure that the process has at least
  174. # 16 + login_max_connections * 2 available file descriptors.
  175. #login_max_connections = 256
  176.  
  177. # Greeting message for clients.
  178. #login_greeting = Dovecot ready.
  179.  
  180. # Space-separated list of elements we want to log. The elements which have
  181. # a non-empty variable value are joined together to form a comma-separated
  182. # string.
  183. #login_log_format_elements = user=<%u> method=%m rip=%r lip=%l %c
  184.  
  185. # Login log format. %$ contains login_log_format_elements string, %s contains
  186. # the data we want to log.
  187. #login_log_format = %$: %s
  188.  
  189. ##
  190. ## Mailbox locations and namespaces
  191. ##
  192.  
  193. # Location for users' mailboxes. This is the same as the old default_mail_env
  194. # setting. The default is empty, which means that Dovecot tries to find the
  195. # mailboxes automatically. This won't work if the user doesn't have any mail
  196. # yet, so you should explicitly tell Dovecot the full location.
  197. #
  198. # If you're using mbox, giving a path to the INBOX file (eg. /var/mail/%u)
  199. # isn't enough. You'll also need to tell Dovecot where the other mailboxes are
  200. # kept. This is called the "root mail directory", and it must be the first
  201. # path given in the mail_location setting.
  202. #
  203. # There are a few special variables you can use, eg.:
  204. #
  205. #   %u - username
  206. #   %n - user part in user@domain, same as %u if there's no domain
  207. #   %d - domain part in user@domain, empty if there's no domain
  208. #   %h - home directory
  209. #
  210. # See /usr/share/doc/dovecot-common/wiki/Variables.txt for full list. Some
  211. # examples:
  212. #
  213. #   mail_location = maildir:~/Maildir
  214. #   mail_location = mbox:~/mail:INBOX=/var/mail/%u
  215. #   mail_location = mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%n
  216. #
  217. # <doc/wiki/MailLocation.txt>
  218. #
  219. #mail_location =
  220. mail_location = maildir:~/Maildir
  221.  
  222. # If you need to set multiple mailbox locations or want to change default
  223. # namespace settings, you can do it by defining namespace sections.
  224. # NOTE: Namespaces currently work ONLY with IMAP! POP3 and LDA currently ignore
  225. # namespaces completely, they use only the mail_location setting.
  226. #
  227. # You can have private, shared and public namespaces. The only difference
  228. # between them is how Dovecot announces them to client via NAMESPACE
  229. # extension. Shared namespaces are meant for user-owned mailboxes which are
  230. # shared to other users, while public namespaces are for more globally
  231. # accessible mailboxes.
  232. #
  233. # REMEMBER: If you add any namespaces, the default namespace must be added
  234. # explicitly, ie. mail_location does nothing unless you have a namespace
  235. # without a location setting. Default namespace is simply done by having a
  236. # namespace with empty prefix.
  237. #namespace private {
  238.    # Hierarchy separator to use. You should use the same separator for all
  239.    # namespaces or some clients get confused. '/' is usually a good one.
  240.    # The default however depends on the underlying mail storage format.
  241.    #separator =
  242.  
  243.    # Prefix required to access this namespace. This needs to be different for
  244.    # all namespaces. For example "Public/".
  245.    #prefix =
  246.  
  247.    # Physical location of the mailbox. This is in same format as
  248.    # mail_location, which is also the default for it.
  249.    #location =
  250.  
  251.    # There can be only one INBOX, and this setting defines which namespace
  252.    # has it.
  253.    #inbox = yes
  254.  
  255.    # If namespace is hidden, it's not advertised to clients via NAMESPACE
  256.    # extension or shown in LIST replies. This is mostly useful when converting
  257.    # from another server with different namespaces which you want to depricate
  258.    # but still keep working. For example you can create hidden namespaces with
  259.    # prefixes "~/mail/", "~%u/mail/" and "mail/".
  260.    #hidden = yes
  261. #}
  262.  
  263. # Group to enable temporarily for privileged operations. Currently this is
  264. # used only with INBOX when either its initial creation or dotlocking fails.
  265. # Typically this is set to "mail" to give access to /var/mail.
  266. mail_privileged_group = mail
  267.  
  268. # Grant access to these supplementary groups for mail processes. Typically
  269. # these are used to set up access to shared mailboxes. Note that it may be
  270. # dangerous to set these if users can create symlinks (e.g. if "mail" group is
  271. # set here, ln -s /var/mail ~/mail/var could allow a user to delete others'
  272. # mailboxes, or ln -s /secret/shared/box ~/mail/mybox would allow reading it).
  273. #mail_access_groups =
  274.  
  275. # Allow full filesystem access to clients. There's no access checks other than
  276. # what the operating system does for the active UID/GID. It works with both
  277. # maildir and mboxes, allowing you to prefix mailboxes names with eg. /path/
  278. # or ~user/.
  279. #mail_full_filesystem_access = no
  280.  
  281. ##
  282. ## Mail processes
  283. ##
  284.  
  285. # Enable mail process debugging. This can help you figure out why Dovecot
  286. # isn't finding your mails.
  287. #mail_debug = no
  288.  
  289. # Log prefix for mail processes.
  290. # See /usr/share/doc/dovecot-common/wiki/Variables.txt for list of possible
  291. # variables you can use.
  292. #mail_log_prefix = "%Us(%u): "
  293.  
  294. # Max. number of lines a mail process is allowed to log per second before it's
  295. # throttled. 0 means unlimited. Typically there's no need to change this
  296. # unless you're using mail_log plugin, which may log a lot.
  297. #mail_log_max_lines_per_sec = 10
  298.  
  299. # Don't use mmap() at all. This is required if you store indexes to shared
  300. # filesystems (NFS or clustered filesystem).
  301. #mmap_disable = no
  302.  
  303. # Don't write() to mmaped files. This is required for some operating systems
  304. # which use separate caches for them, such as OpenBSD.
  305. #mmap_no_write = no
  306.  
  307. # Rely on O_EXCL to work when creating dotlock files. The default is to use
  308. # hard linking. O_EXCL makes the dotlocking faster, but it doesn't always
  309. # work with NFS.
  310. #dotlock_use_excl = no
  311.  
  312. # Don't use fsync() or fdatasync() calls. This makes the performance better
  313. # at the cost of potential data loss if the server (or the file server)
  314. # goes down.
  315. #fsync_disable = no
  316.  
  317. # Locking method for index files. Alternatives are fcntl, flock and dotlock.
  318. # Dotlocking uses some tricks which may create more disk I/O than other locking
  319. # methods. NFS users: flock doesn't work, remember to change mmap_disable.
  320. #lock_method = fcntl
  321.  
  322. # Drop all privileges before exec()ing the mail process. This is mostly
  323. # meant for debugging, otherwise you don't get core dumps. It could be a small
  324. # security risk if you use single UID for multiple users, as the users could
  325. # ptrace() each others processes then.
  326. #mail_drop_priv_before_exec = no
  327.  
  328. # Show more verbose process titles (in ps). Currently shows user name and
  329. # IP address. Useful for seeing who are actually using the IMAP processes
  330. # (eg. shared mailboxes or if same uid is used for multiple accounts).
  331. #verbose_proctitle = no
  332.  
  333. # Valid UID range for users, defaults to 500 and above. This is mostly
  334. # to make sure that users can't log in as daemons or other system users.
  335. # Note that denying root logins is hardcoded to dovecot binary and can't
  336. # be done even if first_valid_uid is set to 0.
  337. #first_valid_uid = 500
  338. #last_valid_uid = 0
  339.  
  340. # Valid GID range for users, defaults to non-root/wheel. Users having
  341. # non-valid GID as primary group ID aren't allowed to log in. If user
  342. # belongs to supplementary groups with non-valid GIDs, those groups are
  343. # not set.
  344. #first_valid_gid = 1
  345. #last_valid_gid = 0
  346.  
  347. # Maximum number of running mail processes. When this limit is reached,
  348. # new users aren't allowed to log in.
  349. #max_mail_processes = 1024
  350.  
  351. # Set max. process size in megabytes. Most of the memory goes to mmap()ing
  352. # files, so it shouldn't harm much even if this limit is set pretty high.
  353. #mail_process_size = 256
  354.  
  355. # Maximum allowed length for mail keyword name. It's only forced when trying
  356. # to create new keywords.
  357. #mail_max_keyword_length = 50
  358.  
  359. # ':' separated list of directories under which chrooting is allowed for mail
  360. # processes (ie. /var/mail will allow chrooting to /var/mail/foo/bar too).
  361. # This setting doesn't affect login_chroot or auth chroot variables.
  362. # WARNING: Never add directories here which local users can modify, that
  363. # may lead to root exploit. Usually this should be done only if you don't
  364. # allow shell access for users. <doc/wiki/Chrooting.txt>
  365. #valid_chroot_dirs =
  366.  
  367. # Default chroot directory for mail processes. This can be overridden for
  368. # specific users in user database by giving /./ in user's home directory
  369. # (eg. /home/./user chroots into /home). Note that usually there is no real
  370. # need to do chrooting, Dovecot doesn't allow users to access files outside
  371. # their mail directory anyway. <doc/wiki/Chrooting.txt>
  372. #mail_chroot =
  373.  
  374. ##
  375. ## Mailbox handling optimizations
  376. ##
  377.  
  378. # Space-separated list of fields to initially save into cache file. Currently
  379. # these fields are allowed:
  380. #
  381. #  flags, date.sent, date.received, size.virtual, size.physical
  382. #  mime.parts, imap.body, imap.bodystructure
  383. #
  384. # Different IMAP clients work in different ways, so they benefit from
  385. # different cached fields. Some do not benefit from them at all. Caching more
  386. # than necessary generates useless disk I/O, so you don't want to do that
  387. # either.
  388. #
  389. # Dovecot attempts to automatically figure out what client wants and it keeps
  390. # only that. However the first few times a mailbox is opened, Dovecot hasn't
  391. # yet figured out what client needs, so it may not perform optimally. If you
  392. # know what fields the majority of your clients need, it may be useful to set
  393. # these fields by hand. If client doesn't actually use them, Dovecot will
  394. # eventually drop them.
  395. #
  396. # Usually you should just leave this field alone. The potential benefits are
  397. # typically unnoticeable.
  398. #mail_cache_fields =
  399.  
  400. # Space-separated list of fields that Dovecot should never save to cache file.
  401. # Useful if you want to save disk space at the cost of more I/O when the fields
  402. # needed.
  403. #mail_never_cache_fields =
  404.  
  405. # The minimum number of mails in a mailbox before updates are done to cache
  406. # file. This allows optimizing Dovecot's behavior to do less disk writes at
  407. # the cost of more disk reads.
  408. #mail_cache_min_mail_count = 0
  409.  
  410. # When IDLE command is running, mailbox is checked once in a while to see if
  411. # there are any new mails or other changes. This setting defines the minimum
  412. # time in seconds to wait between those checks. Dovecot can also use dnotify,
  413. # inotify and kqueue to find out immediately when changes occur.
  414. #mailbox_idle_check_interval = 30
  415.  
  416. # Save mails with CR+LF instead of plain LF. This makes sending those mails
  417. # take less CPU, especially with sendfile() syscall with Linux and FreeBSD.
  418. # But it also creates a bit more disk I/O which may just make it slower.
  419. # Also note that if other software reads the mboxes/maildirs, they may handle
  420. # the extra CRs wrong and cause problems.
  421. #mail_save_crlf = no
  422.  
  423. ##
  424. ## Maildir-specific settings
  425. ##
  426.  
  427. # By default LIST command returns all entries in maildir beginning with a dot.
  428. # Enabling this option makes Dovecot return only entries which are directories.
  429. # This is done by stat()ing each entry, so it causes more disk I/O.
  430. # (For systems setting struct dirent->d_type, this check is free and it's
  431. # done always regardless of this setting)
  432. #maildir_stat_dirs = no
  433.  
  434. # When copying a message, do it with hard links whenever possible. This makes
  435. # the performance much better, and it's unlikely to have any side effects.
  436. #maildir_copy_with_hardlinks = no
  437.  
  438. # When copying a message, try to preserve the base filename. Only if the
  439. # destination mailbox already contains the same name (ie. the mail is being
  440. # copied there twice), a new name is given. The destination filename check is
  441. # done only by looking at dovecot-uidlist file, so if something outside
  442. # Dovecot does similar filename preserving copies, you may run into problems.
  443. # NOTE: This setting requires maildir_copy_with_hardlinks = yes to work.
  444. #maildir_copy_preserve_filename = no
  445.  
  446. ##
  447. ## mbox-specific settings
  448. ##
  449.  
  450. # Which locking methods to use for locking mbox. There are four available:
  451. #  dotlock: Create <mailbox>.lock file. This is the oldest and most NFS-safe
  452. #           solution. If you want to use /var/mail/ like directory, the users
  453. #           will need write access to that directory.
  454. #  fcntl  : Use this if possible. Works with NFS too if lockd is used.
  455. #  flock  : May not exist in all systems. Doesn't work with NFS.
  456. #  lockf  : May not exist in all systems. Doesn't work with NFS.
  457. #
  458. # You can use multiple locking methods; if you do the order they're declared
  459. # in is important to avoid deadlocks if other MTAs/MUAs are using multiple
  460. # locking methods as well. Some operating systems don't allow using some of
  461. # them simultaneously.
  462. #mbox_read_locks = fcntl
  463. #mbox_write_locks = dotlock fcntl
  464.  
  465. # Maximum time in seconds to wait for lock (all of them) before aborting.
  466. #mbox_lock_timeout = 300
  467.  
  468. # If dotlock exists but the mailbox isn't modified in any way, override the
  469. # lock file after this many seconds.
  470. #mbox_dotlock_change_timeout = 120
  471.  
  472. # When mbox changes unexpectedly we have to fully read it to find out what
  473. # changed. If the mbox is large this can take a long time. Since the change
  474. # is usually just a newly appended mail, it'd be faster to simply read the
  475. # new mails. If this setting is enabled, Dovecot does this but still safely
  476. # fallbacks to re-reading the whole mbox file whenever something in mbox isn't
  477. # how it's expected to be. The only real downside to this setting is that if
  478. # some other MUA changes message flags, Dovecot doesn't notice it immediately.
  479. # Note that a full sync is done with SELECT, EXAMINE, EXPUNGE and CHECK
  480. # commands.
  481. #mbox_dirty_syncs = yes
  482.  
  483. # Like mbox_dirty_syncs, but don't do full syncs even with SELECT, EXAMINE,
  484. # EXPUNGE or CHECK commands. If this is set, mbox_dirty_syncs is ignored.
  485. #mbox_very_dirty_syncs = no
  486.  
  487. # Delay writing mbox headers until doing a full write sync (EXPUNGE and CHECK
  488. # commands and when closing the mailbox). This is especially useful for POP3
  489. # where clients often delete all mails. The downside is that our changes
  490. # aren't immediately visible to other MUAs.
  491. #mbox_lazy_writes = yes
  492.  
  493. # If mbox size is smaller than this (in kilobytes), don't write index files.
  494. # If an index file already exists it's still read, just not updated.
  495. #mbox_min_index_size = 0
  496.  
  497. ##
  498. ## dbox-specific settings
  499. ##
  500.  
  501. # Maximum dbox file size in kilobytes until it's rotated.
  502. #dbox_rotate_size = 2048
  503.  
  504. # Minimum dbox file size in kilobytes before it's rotated
  505. # (overrides dbox_rotate_days)
  506. #dbox_rotate_min_size = 16
  507.  
  508. # Maximum dbox file age in days until it's rotated. Day always begins from
  509. # midnight, so 1 = today, 2 = yesterday, etc. 0 = check disabled.
  510. #dbox_rotate_days = 0
  511.  
  512. ##
  513. ## IMAP specific settings
  514. ##
  515.  
  516. protocol imap {
  517.   # Login executable location.
  518.   #login_executable = /usr/lib/dovecot/imap-login
  519.  
  520.   # IMAP executable location. Changing this allows you to execute other
  521.   # binaries before the imap process is executed.
  522.   #
  523.   # This would write rawlogs into ~/dovecot.rawlog/ directory:
  524.   #   mail_executable = /usr/lib/dovecot/rawlog /usr/lib/dovecot/imap
  525.   #
  526.   # This would attach gdb into the imap process and write backtraces into
  527.   # /tmp/gdbhelper.* files:
  528.   #   mail_executable = /usr/libexec/dovecot/gdbhelper /usr/libexec/dovecot/imap
  529.   #
  530.   #mail_executable = /usr/lib/dovecot/imap
  531.  
  532.   # Maximum IMAP command line length in bytes. Some clients generate very long
  533.   # command lines with huge mailboxes, so you may need to raise this if you get
  534.   # "Too long argument" or "IMAP command line too large" errors often.
  535.   #imap_max_line_length = 65536
  536.  
  537.   # Support for dynamically loadable plugins. mail_plugins is a space separated
  538.   # list of plugins to load.
  539.   #mail_plugins =
  540.   #mail_plugin_dir = /usr/lib/dovecot/modules/imap
  541.  
  542.   # Send IMAP capabilities in greeting message. This makes it unnecessary for
  543.   # clients to request it with CAPABILITY command, so it saves one round-trip.
  544.   # Many clients however don't understand it and ask the CAPABILITY anyway.
  545.   #login_greeting_capability = no
  546.  
  547.   # Override the IMAP CAPABILITY response.
  548.   #imap_capability =
  549.  
  550.   # Workarounds for various client bugs:
  551.   #   delay-newmail:
  552.   #     Send EXISTS/RECENT new mail notifications only when replying to NOOP
  553.   #     and CHECK commands. Some clients ignore them otherwise, for example OSX
  554.   #     Mail (<v2.1). Outlook Express breaks more badly though, without this it
  555.   #     may show user "Message no longer in server" errors. Note that OE6 still
  556.   #     breaks even with this workaround if synchronization is set to
  557.   #     "Headers Only".
  558.   #   outlook-idle:
  559.   #     Outlook and Outlook Express never abort IDLE command, so if no mail
  560.   #     arrives in half a hour, Dovecot closes the connection. This is still
  561.   #     fine, except Outlook doesn't connect back so you don't see if new mail
  562.   #     arrives.
  563.   #   netscape-eoh:
  564.   #     Netscape 4.x breaks if message headers don't end with the empty "end of
  565.   #     headers" line. Normally all messages have this, but setting this
  566.   #     workaround makes sure that Netscape never breaks by adding the line if
  567.   #     it doesn't exist. This is done only for FETCH BODY[HEADER.FIELDS..]
  568.   #     commands. Note that RFC says this shouldn't be done.
  569.   #   tb-extra-mailbox-sep:
  570.   #     With mbox storage a mailbox can contain either mails or submailboxes,
  571.   #     but not both. Thunderbird separates these two by forcing server to
  572.   #     accept '/' suffix in mailbox names in subscriptions list.
  573.   # The list is space-separated.
  574.   #imap_client_workarounds = outlook-idle
  575. }
  576.  
  577. ##
  578. ## POP3 specific settings
  579. ##
  580.  
  581. protocol pop3 {
  582.   # Login executable location.
  583.   #login_executable = /usr/lib/dovecot/pop3-login
  584.  
  585.   # POP3 executable location. See IMAP's mail_executable above for examples
  586.   # how this could be changed.
  587.   #mail_executable = /usr/lib/dovecot/pop3
  588.  
  589.   # Don't try to set mails non-recent or seen with POP3 sessions. This is
  590.   # mostly intended to reduce disk I/O. With maildir it doesn't move files
  591.   # from new/ to cur/, with mbox it doesn't write Status-header.
  592.   #pop3_no_flag_updates = no
  593.  
  594.   # Support LAST command which exists in old POP3 specs, but has been removed
  595.   # from new ones. Some clients still wish to use this though. Enabling this
  596.   # makes RSET command clear all \Seen flags from messages.
  597.   #pop3_enable_last = no
  598.  
  599.   # If mail has X-UIDL header, use it as the mail's UIDL.
  600.   #pop3_reuse_xuidl = no
  601.  
  602.   # Keep the mailbox locked for the entire POP3 session.
  603.   #pop3_lock_session = no
  604.  
  605.   # POP3 UIDL (unique mail identifier) format to use. You can use following
  606.   # variables:
  607.   #
  608.   #  %v - Mailbox's IMAP UIDVALIDITY
  609.   #  %u - Mail's IMAP UID
  610.   #  %m - MD5 sum of the mailbox headers in hex (mbox only)
  611.   #  %f - filename (maildir only)
  612.   #
  613.   # If you want UIDL compatibility with other POP3 servers, use:
  614.   #  UW's ipop3d         : %08Xv%08Xu
  615.   #  Courier version 0   : %f
  616.   #  Courier version 1   : %u
  617.   #  Courier version 2   : %v-%u
  618.   #  Cyrus (<= 2.1.3)    : %u
  619.   #  Cyrus (>= 2.1.4)    : %v.%u
  620.   #  Older Dovecots      : %v.%u
  621.   #  tpop3d              : %Mf
  622.   #
  623.   # Note that Outlook 2003 seems to have problems with %v.%u format which was
  624.   # Dovecot's default, so if you're building a new server it would be a good
  625.   # idea to change this. %08Xu%08Xv should be pretty fail-safe.
  626.   #
  627.   # NOTE: Nowadays this is required to be set explicitly, since the old
  628.   # default was bad but it couldn't be changed without breaking existing
  629.   # installations. %08Xu%08Xv will be the new default, so use it for new
  630.   # installations.
  631.   #
  632. pop3_uidl_format = %08Xu%08Xv
  633.  
  634.   # POP3 logout format string:
  635.   #  %t - number of TOP commands
  636.   #  %p - number of bytes sent to client as a result of TOP command
  637.   #  %r - number of RETR commands
  638.   #  %b - number of bytes sent to client as a result of RETR command
  639.   #  %d - number of deleted messages
  640.   #  %m - number of messages (before deletion)
  641.   #  %s - mailbox size in bytes (before deletion)
  642.   #pop3_logout_format = top=%t/%p, retr=%r/%b, del=%d/%m, size=%s
  643.  
  644.   # Support for dynamically loadable plugins. mail_plugins is a space separated
  645.   # list of plugins to load.
  646.   #mail_plugins =
  647.   #mail_plugin_dir = /usr/lib/dovecot/modules/pop3
  648.  
  649.   # Workarounds for various client bugs:
  650.   #   outlook-no-nuls:
  651.   #     Outlook and Outlook Express hang if mails contain NUL characters.
  652.   #     This setting replaces them with 0x80 character.
  653.   #   oe-ns-eoh:
  654.   #     Outlook Express and Netscape Mail breaks if end of headers-line is
  655.   #     missing. This option simply sends it if it's missing.
  656.   # The list is space-separated.
  657.   #pop3_client_workarounds =
  658. }
  659.  
  660. ##
  661. ## MANAGESIEVE specific settings
  662. ##
  663.  
  664. protocol managesieve {
  665.   # Login executable location.
  666.   #login_executable = /usr/libexec/dovecot/managesieve-login
  667.  
  668.   # MANAGESIEVE executable location. See IMAP's mail_executable above for
  669.   # examples how this could be changed.
  670.   #mail_executable = /usr/libexec/dovecot/managesieve
  671.  
  672.   # Maximum MANAGESIEVE command line length in bytes. This setting is
  673.   # directly borrowed from IMAP. But, since long command lines are very
  674.   # unlikely with MANAGESIEVE, changing this will not be very useful.  
  675.   #managesieve_max_line_length = 65536
  676.  
  677.   # Specifies the location of the symlink pointing to the active script in
  678.   # the sieve storage directory. This must match the SIEVE setting used by
  679.   # deliver (refer to http://wiki.dovecot.org/LDA/Sieve#location for more
  680.   # info). Variable substitution with % is recognized.
  681.   sieve=~/.dovecot.sieve
  682.  
  683.   # This specifies the path to the directory where the uploaded scripts must
  684.   # be stored. In terms of '%' variable substitution it is identical to
  685.   # dovecot's mail_location setting used by the mail protocol daemons.
  686.   sieve_storage=~/sieve
  687.  
  688.   # If, for some inobvious reason, the sieve_storage remains unset, the
  689.   # managesieve daemon uses the specification of the mail_location to find out
  690.   # where to store the sieve files (see explaination in README.managesieve).
  691.   # The example below, when uncommented, overrides any global mail_location
  692.   # specification and stores all the scripts in '~/mail/sieve' if sieve_storage
  693.   # is unset. However, you should always use the sieve_storage setting.
  694.   # mail_location = mbox:~/mail
  695.  
  696.   # To fool managesieve clients that are focused on timesieved you can
  697.   # specify the IMPLEMENTATION capability that the dovecot reports to clients
  698.   # (default: dovecot).
  699.   #managesieve_implementation_string = Cyrus timsieved v2.2.13
  700. }
  701.  
  702. ##
  703. ## LDA specific settings
  704. ##
  705.  
  706. # protocol lda {
  707.   # Address to use when sending rejection mails.
  708.   # postmaster_address = postmaster@example.com
  709.  
  710.   # Hostname to use in various parts of sent mails, eg. in Message-Id.
  711.   # Default is the system's real hostname.
  712.   #hostname =
  713.  
  714.   # Support for dynamically loadable plugins. mail_plugins is a space separated
  715.   # list of plugins to load.
  716.   #mail_plugins =
  717.   #mail_plugin_dir = /usr/lib/dovecot/modules/lda
  718.  
  719.   # Binary to use for sending mails.
  720.   #sendmail_path = /usr/lib/sendmail
  721.  
  722.   # UNIX socket path to master authentication server to find users.
  723.   #auth_socket_path = /var/run/dovecot/auth-master
  724.  
  725.   # Enabling Sieve plugin for server-side mail filtering
  726.   # mail_plugins = cmusieve
  727. # }
  728.  
  729. ##
  730. ## Authentication processes
  731. ##
  732.  
  733. # Executable location
  734. #auth_executable = /usr/lib/dovecot/dovecot-auth
  735.  
  736. # Set max. process size in megabytes.
  737. #auth_process_size = 256
  738.  
  739. # Authentication cache size in kilobytes. 0 means it's disabled.
  740. # Note that bsdauth, PAM and vpopmail require cache_key to be set for caching
  741. # to be used.
  742. #auth_cache_size = 0
  743. # Time to live in seconds for cached data. After this many seconds the cached
  744. # record is no longer used, *except* if the main database lookup returns
  745. # internal failure. We also try to handle password changes automatically: If
  746. # user's previous authentication was successful, but this one wasn't, the
  747. # cache isn't used. For now this works only with plaintext authentication.
  748. #auth_cache_ttl = 3600
  749.  
  750. # Space separated list of realms for SASL authentication mechanisms that need
  751. # them. You can leave it empty if you don't want to support multiple realms.
  752. # Many clients simply use the first one listed here, so keep the default realm
  753. # first.
  754. #auth_realms =
  755.  
  756. # Default realm/domain to use if none was specified. This is used for both
  757. # SASL realms and appending @domain to username in plaintext logins.
  758. #auth_default_realm =
  759.  
  760. # List of allowed characters in username. If the user-given username contains
  761. # a character not listed in here, the login automatically fails. This is just
  762. # an extra check to make sure user can't exploit any potential quote escaping
  763. # vulnerabilities with SQL/LDAP databases. If you want to allow all characters,
  764. # set this value to empty.
  765. #auth_username_chars = abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@
  766.  
  767. # Username character translations before it's looked up from databases. The
  768. # value contains series of from -> to characters. For example "#@/@" means
  769. # that '#' and '/' characters are translated to '@'.
  770. #auth_username_translation =
  771.  
  772. # Username formatting before it's looked up from databases. You can use
  773. # the standard variables here, eg. %Lu would lowercase the username, %n would
  774. # drop away the domain if it was given, or "%n-AT-%d" would change the '@' into
  775. # "-AT-". This translation is done after auth_username_translation changes.
  776. #auth_username_format =
  777.  
  778. # If you want to allow master users to log in by specifying the master
  779. # username within the normal username string (ie. not using SASL mechanism's
  780. # support for it), you can specify the separator character here. The format
  781. # is then <username><separator><master username>. UW-IMAP uses "*" as the
  782. # separator, so that could be a good choice.
  783. #auth_master_user_separator =
  784.  
  785. # Username to use for users logging in with ANONYMOUS SASL mechanism
  786. #auth_anonymous_username = anonymous
  787.  
  788. # More verbose logging. Useful for figuring out why authentication isn't
  789. # working.
  790. #auth_verbose = no
  791.  
  792. # Even more verbose logging for debugging purposes. Shows for example SQL
  793. # queries.
  794. #auth_debug = no
  795.  
  796. # In case of password mismatches, log the passwords and used scheme so the
  797. # problem can be debugged. Requires auth_debug=yes to be set.
  798. #auth_debug_passwords = no
  799.  
  800. # Maximum number of dovecot-auth worker processes. They're used to execute
  801. # blocking passdb and userdb queries (eg. MySQL and PAM). They're
  802. # automatically created and destroyed as needed.
  803. #auth_worker_max_count = 30
  804.  
  805. # Host name to use in GSSAPI principal names. The default is to use the
  806. # name returned by gethostname().
  807. #auth_gssapi_hostname =
  808.  
  809. # Kerberos keytab to use for the GSSAPI mechanism. Will use the system
  810. # default (usually /etc/krb5.keytab) if not specified.
  811. #auth_krb5_keytab =
  812.  
  813. auth default {
  814.   # Space separated list of wanted authentication mechanisms:
  815.   #   plain login digest-md5 cram-md5 ntlm rpa apop anonymous gssapi
  816.   # NOTE: See also disable_plaintext_auth setting.
  817.   mechanisms = plain
  818.  
  819.   #
  820.   # Password database is used to verify user's password (and nothing more).
  821.   # You can have multiple passdbs and userdbs. This is useful if you want to
  822.   # allow both system users (/etc/passwd) and virtual users to login without
  823.   # duplicating the system users into virtual database.
  824.   #
  825.   # <doc/wiki/PasswordDatabase.txt>
  826.   #
  827.   # By adding master=yes setting inside a passdb you make the passdb a list
  828.   # of "master users", who can log in as anyone else. Unless you're using PAM,
  829.   # you probably still want the destination user to be looked up from passdb
  830.   # that it really exists. This can be done by adding pass=yes setting to the
  831.   # master passdb. <doc/wiki/Authentication.MasterUsers.txt>
  832.  
  833.   # Users can be temporarily disabled by adding a passdb with deny=yes.
  834.   # If the user is found from that database, authentication will fail.
  835.   # The deny passdb should always be specified before others, so it gets
  836.   # checked first. Here's an example:
  837.  
  838.   #passdb passwd-file {
  839.     # File contains a list of usernames, one per line
  840.     #args = /etc/dovecot.deny
  841.     #deny = yes
  842.   #}
  843.  
  844.   # PAM authentication. Preferred nowadays by most systems.
  845.   # Note that PAM can only be used to verify if user's password is correct,
  846.   # so it can't be used as userdb. If you don't want to use a separate user
  847.   # database (passwd usually), you can use static userdb.
  848.   # REMEMBER: You'll need /etc/pam.d/dovecot file created for PAM
  849.   # authentication to actually work. <doc/wiki/PasswordDatabase.PAM.txt>
  850.   passdb pam {
  851.   }
  852.  
  853.   # System users (NSS, /etc/passwd, or similiar)
  854.   # In many systems nowadays this uses Name Service Switch, which is
  855.   # configured in /etc/nsswitch.conf. <doc/wiki/AuthDatabase.Passwd.txt>
  856.   #passdb passwd {
  857.     # [blocking=yes] - See userdb passwd for explanation
  858.     #args =
  859.   #}
  860.  
  861.   # Shadow passwords for system users (NSS, /etc/shadow or similiar).
  862.   # Deprecated by PAM nowadays.
  863.   # <doc/wiki/PasswordDatabase.Shadow.txt>
  864.   #passdb shadow {
  865.     # [blocking=yes] - See userdb passwd for explanation
  866.     #args =
  867.   #}
  868.  
  869.   # PAM-like authentication for OpenBSD.
  870.   # <doc/wiki/PasswordDatabase.BSDAuth.txt>
  871.   #passdb bsdauth {
  872.     # [cache_key=<key>] - See cache_key in PAM for explanation.
  873.     #args =
  874.   #}
  875.  
  876.   # passwd-like file with specified location
  877.   # <doc/wiki/AuthDatabase.PasswdFile.txt>
  878.   #passdb passwd-file {
  879.     # Path for passwd-file
  880.     #args =
  881.   #}
  882.  
  883.   # checkpassword executable authentication
  884.   # NOTE: You will probably want to use "userdb prefetch" with this.
  885.   # <doc/wiki/PasswordDatabase.CheckPassword.txt>
  886.   #passdb checkpassword {
  887.     # Path for checkpassword binary
  888.     #args =
  889.   #}
  890.  
  891.   # SQL database <doc/wiki/AuthDatabase.SQL.txt>
  892.   #passdb sql {
  893.     # Path for SQL configuration file
  894.     #args = /etc/dovecot/dovecot-sql.conf
  895.   #}
  896.  
  897.   # LDAP database <doc/wiki/AuthDatabase.LDAP.txt>
  898.   #passdb ldap {
  899.     # Path for LDAP configuration file
  900.     #args = /etc/dovecot/dovecot-ldap.conf
  901.   #}
  902.  
  903.   # vpopmail authentication <doc/wiki/AuthDatabase.VPopMail.txt>
  904.   #passdb vpopmail {
  905.     # [cache_key=<key>] - See cache_key in PAM for explanation.
  906.     #args =
  907.   #}
  908.  
  909.   #
  910.   # User database specifies where mails are located and what user/group IDs
  911.   # own them. For single-UID configuration use "static".
  912.   #
  913.   # <doc/wiki/UserDatabase.txt>
  914.   #
  915.  
  916.   # System users (NSS, /etc/passwd, or similiar). In many systems nowadays this
  917.   # uses Name Service Switch, which is configured in /etc/nsswitch.conf.
  918.   # <doc/wiki/AuthDatabase.Passwd.txt>
  919.   userdb passwd {
  920.   }
  921.  
  922.   # passwd-like file with specified location
  923.   # <doc/wiki/AuthDatabase.PasswdFile.txt>
  924.   #userdb passwd-file {
  925.     # Path for passwd-file
  926.     #args =
  927.   #}
  928.  
  929.   # static settings generated from template <doc/wiki/UserDatabase.Static.txt>
  930.   #userdb static {
  931.     # Template for the fields. Can return anything a userdb could normally
  932.     # return. For example:
  933.     #
  934.     #  args = uid=500 gid=500 home=/var/mail/%u
  935.     #
  936.     # If you use deliver, it needs to look up users only from the userdb. This
  937.     # of course doesn't work with static because there is no list of users.
  938.     # Normally static userdb handles this by doing a passdb lookup. This works
  939.     # with most passdbs, with PAM being the most notable exception. If you do
  940.     # the user verification another way, you can add allow_all_users=yes to
  941.     # the args in which case the passdb lookup is skipped.
  942.     #
  943.     #args =
  944.   #}
  945.  
  946.   # SQL database <doc/wiki/AuthDatabase.SQL.txt>
  947.   #userdb sql {
  948.     # Path for SQL configuration file
  949.     #args = /etc/dovecot/dovecot-sql.conf
  950.   #}
  951.  
  952.   # LDAP database <doc/wiki/AuthDatabase.LDAP.txt>
  953.   #userdb ldap {
  954.     # Path for LDAP configuration file
  955.     #args = /etc/dovecot/dovecot-ldap.conf
  956.   #}
  957.  
  958.   # vpopmail <doc/wiki/AuthDatabase.VPopMail.txt>
  959.   #userdb vpopmail {
  960.   #}
  961.  
  962.   # "prefetch" user database means that the passdb already provided the
  963.   # needed information and there's no need to do a separate userdb lookup.
  964.   # This can be made to work with SQL and LDAP databases, see their example
  965.   # configuration files for more information how to do it.
  966.   # <doc/wiki/UserDatabase.Prefetch.txt>
  967.   #userdb prefetch {
  968.   #}
  969.  
  970.   # User to use for the process. This user needs access to only user and
  971.   # password databases, nothing else. Only shadow and pam authentication
  972.   # requires roots, so use something else if possible. Note that passwd
  973.   # authentication with BSDs internally accesses shadow files, which also
  974.   # requires roots. Note that this user is NOT used to access mails.
  975.   # That user is specified by userdb above.
  976.   user = root
  977.  
  978.   # Directory where to chroot the process. Most authentication backends don't
  979.   # work if this is set, and there's no point chrooting if auth_user is root.
  980.   # Note that valid_chroot_dirs isn't needed to use this setting.
  981.   #chroot =
  982.  
  983.   # Number of authentication processes to create
  984.   #count = 1
  985.  
  986.   # Require a valid SSL client certificate or the authentication fails.
  987.   #ssl_require_client_cert = no
  988.  
  989.   # Take the username from client's SSL certificate, using
  990.   # X509_NAME_get_text_by_NID() which returns the subject's DN's
  991.   # CommonName.
  992.   #ssl_username_from_cert = no
  993.  
  994.   # It's possible to export the authentication interface to other programs:
  995.   #socket listen {
  996.     #master {
  997.       # Master socket provides access to userdb information. It's typically
  998.       # used to give Dovecot's local delivery agent access to userdb so it
  999.       # can find mailbox locations.
  1000.       #path = /var/run/dovecot/auth-master
  1001.       #mode = 0600
  1002.       # Default user/group is the one who started dovecot-auth (root)
  1003.       #user =
  1004.       #group =
  1005.     #}
  1006.     #client {
  1007.       # The client socket is generally safe to export to everyone. Typical use
  1008.       # is to export it to your SMTP server so it can do SMTP AUTH lookups
  1009.       # using it.
  1010.       #path = /var/run/dovecot/auth-client
  1011.       #mode = 0660
  1012.     #}
  1013.   #}
  1014.  
  1015.   ## dovecot-lda specific settings
  1016.   ##
  1017.   # socket listen {
  1018.   #   master {
  1019.   #     path = /var/run/dovecot/auth-master
  1020.   #     mode = 0600
  1021.   #     user = mail # User running Dovecot LDA
  1022.   #     #group = mail # Or alternatively mode 0660 + LDA user in this group
  1023.   #   }
  1024.   # }
  1025.  
  1026. }
  1027.  
  1028. # If you wish to use another authentication server than dovecot-auth, you can
  1029. # use connect sockets. They are assumed to be already running, Dovecot's master
  1030. # process only tries to connect to them. They don't need any other settings
  1031. # than the path for the master socket, as the configuration is done elsewhere.
  1032. # Note that the client sockets must exist in the login_dir.
  1033. #auth external {
  1034. #  socket connect {
  1035. #    master {
  1036. #      path = /var/run/dovecot/auth-master
  1037. #    }
  1038. #  }
  1039. #}
  1040.  
  1041. ##
  1042. ## Dictionary server settings
  1043. ##
  1044.  
  1045. # Dictionary can be used by some plugins to store key=value lists.
  1046. # Currently this is only used by dict quota backend. The dictionary can be
  1047. # used either directly or though a dictionary server. The following dict block
  1048. # maps dictionary names to URIs when the server is used. These can then be
  1049. # referenced using URIs in format "proxy:<name>".
  1050.  
  1051. dict {
  1052.   #quota = mysql:/etc/dovecot-dict-quota.conf
  1053. }
  1054.  
  1055. ##
  1056. ## Plugin settings
  1057. ##
  1058.  
  1059. plugin {
  1060.   # Here you can give some extra environment variables to mail processes.
  1061.   # This is mostly meant for passing parameters to plugins. %variable
  1062.   # expansion is done for all values.
  1063.  
  1064.   # Quota plugin. Multiple backends are supported:
  1065.   #   dirsize: Find and sum all the files found from mail directory.
  1066.   #            Extremely SLOW with Maildir. It'll eat your CPU and disk I/O.
  1067.   #   dict: Keep quota stored in dictionary (eg. SQL)
  1068.   #   maildir: Maildir++ quota
  1069.   #   fs: Read-only support for filesystem quota
  1070.   #quota = maildir
  1071.  
  1072.   # ACL plugin. vfile backend reads ACLs from "dovecot-acl" file from maildir
  1073.   # directory. You can also optionally give a global ACL directory path where
  1074.   # ACLs are applied to all users' mailboxes. The global ACL directory contains
  1075.   # one file for each mailbox, eg. INBOX or sub.mailbox.
  1076.   #acl = vfile:/etc/dovecot-acls
  1077.  
  1078.   # Convert plugin. If set, specifies the source storage path which is
  1079.   # converted to destination storage (mail_location) when the user logs in.
  1080.   # The existing mail directory is renamed to <dir>-converted.
  1081.   #convert_mail = mbox:%h/mail
  1082.   # Skip mailboxes which we can't open successfully instead of aborting.
  1083.   #convert_skip_broken_mailboxes = no
  1084.  
  1085.   # Trash plugin. When saving a message would make user go over quota, this
  1086.   # plugin automatically deletes the oldest mails from configured mailboxes
  1087.   # until the message can be saved within quota limits. The configuration file
  1088.   # is a text file where each line is in format: <priority> <mailbox name>
  1089.   # Mails are first deleted in lowest -> highest priority number order
  1090.   #trash = /etc/dovecot-trash.conf
  1091.  
  1092.   # Lazy expunge plugin. Currently works only with maildirs. When a user
  1093.   # expunges mails, the mails are moved to a mailbox in another namespace
  1094.   # (1st). When a mailbox is deleted, the mailbox is moved to another namespace
  1095.   # (2nd) as well. Also if the deleted mailbox had any expunged messages,
  1096.   # they're moved to a 3rd namespace. The mails won't be counted in quota,
  1097.   # and they're not deleted automatically (use a cronjob or something).
  1098.   #lazy_expunge = .EXPUNGED/ .DELETED/ .DELETED/.EXPUNGED/
  1099. }