You've already forked Mailu
mirror of
https://github.com/Mailu/Mailu.git
synced 2025-08-10 22:31:47 +02:00
Ensure that dovecot doesn't bind v6 if not required
This commit is contained in:
@@ -6,6 +6,11 @@ protocols = imap pop3 lmtp sieve
|
||||
postmaster_address = {{ POSTMASTER }}@{{ DOMAIN }}
|
||||
hostname = {{ HOSTNAMES.split(",")[0] }}
|
||||
submission_host = {{ FRONT_ADDRESS }}
|
||||
{%- if SUBNET6 -%}
|
||||
listen = *,::
|
||||
{%- else -%}
|
||||
listen = *
|
||||
{%- endif %}
|
||||
|
||||
default_internal_user = dovecot
|
||||
default_login_user = mail
|
||||
|
@@ -21,6 +21,12 @@ imap_urlauth_host=
|
||||
lmtp_proxy = yes
|
||||
lmtp_client_workarounds = whitespace-before-path mailbox-for-path
|
||||
|
||||
{%- if SUBNET6 -%}
|
||||
listen = *,::
|
||||
{%- else -%}
|
||||
listen = *
|
||||
{%- endif %}
|
||||
|
||||
default_internal_user = dovecot
|
||||
default_login_user = mail
|
||||
default_internal_group = dovecot
|
||||
|
Reference in New Issue
Block a user