some changes

This commit is contained in:
sebastian.serfling
2024-09-03 17:12:47 +02:00
parent ce1c9fb6b6
commit 56ac5ffa80
10 changed files with 125 additions and 109 deletions
+36
View File
@@ -0,0 +1,36 @@
## You should mount /etc/dovecot if you want to
## manage this file
mail_home=/srv/mail/%Lu
mail_location=sdbox:~/Mail
mail_uid=1000
mail_gid=1000
protocols = imap pop3 submission sieve lmtp
first_valid_uid = 1000
last_valid_uid = 1000
passdb {
driver = passwd-file
args = /etc/dovecot/passwd
}
namespace {
inbox = yes
separator = /
}
service lmtp {
inet_listener {
port = 24
}
}
listen = *
log_path=/dev/stdout
info_log_path=/dev/stdout
debug_log_path=/dev/stdout
auth_mechanisms = plain login
disable_plaintext_auth = no
View File