Commit 687d056c authored by root's avatar root
Browse files

migrate mbox in maildir

parent 6b41cac4
Loading
Loading
Loading
Loading
+7 −9
Original line number Diff line number Diff line
@@ -33,11 +33,9 @@
# against its use in production environments. See further information
# at
# https://doc.dovecot.org/2.4.1/core/config/mailbox/formats/mbox.html
mail_driver = mbox
mail_driver = maildir
mail_home = /home/%{user | username}
# mail_home = /home/%{user|username}
mail_path = %{home}/mail
mail_inbox_path = /var/mail/%{user}
mail_path = %{home}/Maildir

# If you need to set multiple mailbox locations or want to change default
# namespace settings, you can do it by defining namespace sections.
@@ -56,7 +54,7 @@ namespace inbox {
  # Hierarchy separator to use. You should use the same separator for all
  # namespaces or some clients get confused. '/' is usually a good one.
  # The default however depends on the underlying mail storage format.
  #separator = 
  separator = /

  # Prefix required to access this namespace. This needs to be different for
  # all namespaces. For example "Public/".
@@ -401,15 +399,15 @@ maildir_broken_filename_sizes = yes
#   exclude-inlined - Exclude any Content-Disposition=inline MIME part.
#mail_attachment_detection_options =
  namespace spam {
      prefix = spam
#     separator = .
    prefix = spam/
    separator = /
    list = no
    hidden = yes
  }

  namespace sent {
      prefix = sent
#     separator = .
    prefix = sent/
    separator = /
    list = no
    hidden = yes
  }
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@

# You can execute a given command when user exceeds a specified quota limit.
# Each quota root has separate limits. Only the command for the first
# exceeded limit is excecuted, so put the highest limit first.
# exceeded limit is executed, so put the highest limit first.
# The commands are executed via script service by connecting to the named
# UNIX socket (quota-warning below).
# Note that % needs to be escaped as %%, otherwise "% " expands to empty.
+15 −17
Original line number Diff line number Diff line
@@ -6,7 +6,6 @@
# sieve_extensions or sieve_global_extensions settings. Restricting these
# extensions to a global context using sieve_global_extensions is recommended.


# The directory where the program sockets are located for the
# vnd.dovecot.pipe, vnd.dovecot.filter and vnd.dovecot.execute extension
# respectively. The name of each unix socket contained in that directory
@@ -39,4 +38,3 @@
  #  mode = 0600
  #}
#}
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ passdb pam {
userdb passwd {
}

# System users (NSS, /etc/passwd, or similiar).
# System users (NSS, /etc/passwd, or similar).
# In many systems nowadays this uses Name Service Switch, which is
# configured in /etc/nsswitch.conf. <https://doc.dovecot.org/latest/core/config/auth/databases/passwd.html>
#passdb passwb {
+1 −0
Original line number Diff line number Diff line
fernando:aqui
Loading