Commit 33e44068 authored by root's avatar root
Browse files

second trixie fix

parent 6b4ab5bc
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -35,9 +35,13 @@
# at
# https://doc.dovecot.org/2.4.0/core/config/mailbox/formats/mbox.html
mail_driver      = mbox
mail_home = /home/%u
mail_path = /home/%u/mail
mail_inbox_path = /var/mail/%u
mail_home        = /home/%{user|username}
mail_path        = %{home}/mail
mail_inbox_path  = /var/mail/%{user}
#mail_driver = mbox
#mail_home = /home/%u
#mail_path = /home/%u/mail
#mail_inbox_path = /var/mail/%u

# If you need to set multiple mailbox locations or want to change default
# namespace settings, you can do it by defining namespace sections.
+16 −2
Original line number Diff line number Diff line
@@ -31,12 +31,26 @@ recipient_delimiter = +
#     Allow using bare Mailbox syntax (i.e., without <...>) instead of full path
#     syntax.
#
# The list is space-separated.
#lmtp_client_workarounds =
#lmtp_client_workarounds {
#  whitespace-before-path = yes
#}

protocol lmtp {
  #mail_plugins {
  #  sieve = yes
  #}

postmaster_address = root

  # This strips the domain name before delivery, since the default
  # userdb in Debian is /etc/passwd, which doesn't include domain
  # names in the user.  If you're using a different userdb backend
  # that does include domain names, you may wish to remove this.  See
  # https://doc.dovecot.org/2.4.0/howto/lmtp/exim.html and
  # https://doc.dovecot.org/2.4.0/core/summaries/settings.html#auth_username_format
  # auth_username_format = %{user | username}


  # Space separated list of plugins to load (default is global mail_plugins).
  mail_plugins = $mail_plugins zlib
}
+51 −0
Original line number Diff line number Diff line
##
#i
## LMTP specific settings
##

# Support proxying to other LMTP/SMTP servers by performing passdb lookups.
#lmtp_proxy = no

# When recipient address includes the detail (e.g. user+detail), try to save
# the mail to the detail mailbox. See also recipient_delimiter and
# lda_mailbox_autocreate settings.
#lmtp_save_to_detail_mailbox = no

# Verify quota before replying to RCPT TO. This adds a small overhead.
#lmtp_rcpt_check_quota = no

# Add "Received:" header to mails delivered.
#lmtp_add_received_header = yes

# Which recipient address to use for Delivered-To: header and Received:
# header. The default is "final", which is the same as the one given to
# RCPT TO command. "original" uses the address given in RCPT TO's ORCPT
# parameter, "none" uses nothing. Note that "none" is currently always used
# when a mail has multiple recipients.
#lmtp_hdr_delivery_address = final

# Workarounds for various client bugs:
#   whitespace-before-path:
#     Allow one or more spaces or tabs between `MAIL FROM:' and path and between
#     `RCPT TO:' and path.
#   mailbox-for-path:
#     Allow using bare Mailbox syntax (i.e., without <...>) instead of full path
#     syntax.
#
#lmtp_client_workarounds {
#  whitespace-before-path = yes
#}

protocol lmtp {
  #mail_plugins {
  #  sieve = yes
  #}

  # This strips the domain name before delivery, since the default
  # userdb in Debian is /etc/passwd, which doesn't include domain
  # names in the user.  If you're using a different userdb backend
  # that does include domain names, you may wish to remove this.  See
  # https://doc.dovecot.org/2.4.0/howto/lmtp/exim.html and
  # https://doc.dovecot.org/2.4.0/core/summaries/settings.html#auth_username_format
  auth_username_format = %{user | username}
}
+1 −0
Original line number Diff line number Diff line
fernando:aqui