Merge pull request #1710 from orhtej2/patch-1

Allow system users to send mails from IPv6 localhost.
This commit is contained in:
Alexandre Aubin 2023-09-07 23:33:15 +02:00 committed by GitHub
commit ec6bf12a74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3261,7 +3261,7 @@ def regen_mail_app_user_config_for_dovecot_and_postfix(only=None):
if dovecot: if dovecot:
hashed_password = _hash_user_password(settings["mail_pwd"]) hashed_password = _hash_user_password(settings["mail_pwd"])
dovecot_passwd.append( dovecot_passwd.append(
f"{app}:{hashed_password}::::::allow_nets=127.0.0.1/24" f"{app}:{hashed_password}::::::allow_nets=::1,127.0.0.1/24,local"
) )
if postfix: if postfix:
mail_user = settings.get("mail_user", app) mail_user = settings.get("mail_user", app)