diff options
author | Xiao Pan <gky44px1999@gmail.com> | 2024-04-05 12:02:22 +0000 |
---|---|---|
committer | Xiao Pan <gky44px1999@gmail.com> | 2024-04-05 12:02:22 +0000 |
commit | 416a0ca8403db1d0b841b958ad4bc5e93990af5e (patch) | |
tree | 779ae5c0252bb92ebc8f4bfd03c63e7086838978 /etc/dovecot/conf.d/10-master.conf | |
parent | 820ec977a50ffe92d59ad7a2434d9efeafe99a49 (diff) |
Add email server configs
References:
https://github.com/LukeSmithxyz/emailwiz
https://landchad.net/
https://wiki.archlinux.org/title/Postfix
https://wiki.archlinux.org/title/Dovecot
https://wiki.archlinux.org/title/OpenDKIM
https://wiki.archlinux.org/title/OpenDMARC
Maybe useful:
https://doc.dovecot.org/settings/core/#dovecot-core-settings
https://workaround.org
https://kyun.host/docs/guides/email
`man postconf.5`
More necessary commands notes see arch_install.md
Diffstat (limited to 'etc/dovecot/conf.d/10-master.conf')
-rw-r--r-- | etc/dovecot/conf.d/10-master.conf | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/etc/dovecot/conf.d/10-master.conf b/etc/dovecot/conf.d/10-master.conf index 64fa0f2c..fb03c64c 100644 --- a/etc/dovecot/conf.d/10-master.conf +++ b/etc/dovecot/conf.d/10-master.conf @@ -100,16 +100,18 @@ service auth { # To give the caller full permissions to lookup all users, set the mode to # something else than 0666 and Dovecot lets the kernel enforce the # permissions (e.g. 0777 allows everyone full permissions). - unix_listener auth-userdb { + #unix_listener auth-userdb { #mode = 0666 #user = #group = - } + #} # Postfix smtp-auth - #unix_listener /var/spool/postfix/private/auth { - # mode = 0666 - #} + unix_listener /var/spool/postfix/private/auth { + mode = 0666 + user = postfix + group = postfix + } # Auth process is run as this user. #user = $default_internal_user |