submission (dovecot) -> submission (postfix)
This commit is contained in:
parent
40a1d88bdf
commit
8e2f129a76
@ -105,11 +105,13 @@ dovecot_quota_grace: 10%
|
|||||||
dovecot_submission_enable: yes
|
dovecot_submission_enable: yes
|
||||||
dovecot_submission_hostname: "{{ dovecot_container }}.{{ docker_network }}"
|
dovecot_submission_hostname: "{{ dovecot_container }}.{{ docker_network }}"
|
||||||
dovecot_submission_relay_host: postfix
|
dovecot_submission_relay_host: postfix
|
||||||
dovecot_submission_relay_port: 25
|
dovecot_submission_relay_port: 587
|
||||||
dovecot_submission_relay_trusted: yes
|
dovecot_submission_relay_trusted: yes
|
||||||
# FIXME: add ssl/tls support
|
# FIXME: add ssl/tls support
|
||||||
dovecot_submission_relay_ssl: "no"
|
dovecot_submission_relay_ssl: yes
|
||||||
dovecot_submission_relay_ssl_verify: no
|
dovecot_submission_relay_ssl_verify: no
|
||||||
|
dovecot_submission_relay_user: "%u"
|
||||||
|
dovecot_submission_relay_password: "%w"
|
||||||
|
|
||||||
# antispam
|
# antispam
|
||||||
dovecot_antispam_enable: yes
|
dovecot_antispam_enable: yes
|
||||||
|
@ -27,10 +27,10 @@
|
|||||||
SUBMISSION_RELAY_PORT: "{{ dovecot_submission_relay_port | string }}"
|
SUBMISSION_RELAY_PORT: "{{ dovecot_submission_relay_port | string }}"
|
||||||
SUBMISSION_RELAY_TRUSTED: "{{ 'yes' if dovecot_submission_relay_trusted else 'no' }}"
|
SUBMISSION_RELAY_TRUSTED: "{{ 'yes' if dovecot_submission_relay_trusted else 'no' }}"
|
||||||
SUBMISSION_RELAY_SSL_VERIFY: "{{ 'yes' if dovecot_submission_relay_ssl_verify else 'no' }}"
|
SUBMISSION_RELAY_SSL_VERIFY: "{{ 'yes' if dovecot_submission_relay_ssl_verify else 'no' }}"
|
||||||
SUBMISSION_RELAY_SSL: "{{ dovecot_submission_relay_ssl }}"
|
SUBMISSION_RELAY_SSL: "{{ 'yes' if dovecot_submission_relay_ssl else 'no' }}"
|
||||||
# SUBMISSION_RELAY_USER:
|
SUBMISSION_RELAY_USER: "{{ dovecot_submission_relay_user }}"
|
||||||
# SUBMISSION_RELAY_MASTER_USER:
|
# SUBMISSION_RELAY_MASTER_USER:
|
||||||
# SUBMISSION_RELAY_PASSWORD:
|
SUBMISSION_RELAY_PASSWORD: "{{ dovecot_submission_relay_password }}"
|
||||||
# SUBMISSION_RELAY_RAWLOG_DIR:
|
# SUBMISSION_RELAY_RAWLOG_DIR:
|
||||||
LDAP_ENABLE: "{{ 'yes' if dovecot_ldap_enable else '' }}"
|
LDAP_ENABLE: "{{ 'yes' if dovecot_ldap_enable else '' }}"
|
||||||
LDAP_HOSTS: "{{ dovecot_ldap_hosts | join(' ') }}"
|
LDAP_HOSTS: "{{ dovecot_ldap_hosts | join(' ') }}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user