refactor(maps): move tls_policy and transport to mapping section
Signed-off-by: Felipe Zipitria <fzipitria@perceptyx.com> BREAKING CHANGE: `transport` and `tls_policy` keys in `postfix:config` have been moved to the standard `postfix:mapping`.
This commit is contained in:
parent
42965a7640
commit
06276fd743
@ -122,6 +122,7 @@ postfix:
|
|||||||
|
|
||||||
local_transport: virtual
|
local_transport: virtual
|
||||||
local_recipient_maps: $virtual_mailbox_maps
|
local_recipient_maps: $virtual_mailbox_maps
|
||||||
|
# Use the `mapping` key to define the map
|
||||||
transport_maps: hash:/etc/postfix/transport
|
transport_maps: hash:/etc/postfix/transport
|
||||||
|
|
||||||
# SMTP server
|
# SMTP server
|
||||||
@ -163,13 +164,6 @@ postfix:
|
|||||||
relay_recipient_maps: hash:/etc/postfix/relay_domains
|
relay_recipient_maps: hash:/etc/postfix/relay_domains
|
||||||
virtual_alias_maps: hash:/etc/postfix/virtual
|
virtual_alias_maps: hash:/etc/postfix/virtual
|
||||||
|
|
||||||
transport:
|
|
||||||
DOMAIN_NAME: ':[IP_ADDRESS]'
|
|
||||||
|
|
||||||
tls_policy:
|
|
||||||
example.com: encrypt
|
|
||||||
.example.com: encrypt
|
|
||||||
|
|
||||||
vmail:
|
vmail:
|
||||||
user: postfix_user
|
user: postfix_user
|
||||||
password: DB_PASSWD
|
password: DB_PASSWD
|
||||||
@ -234,6 +228,13 @@ postfix:
|
|||||||
-----END RSA PRIVATE KEY-----
|
-----END RSA PRIVATE KEY-----
|
||||||
|
|
||||||
mapping:
|
mapping:
|
||||||
|
transport_maps:
|
||||||
|
- DOMAIN_NAME: ':[IP_ADDRESS]'
|
||||||
|
|
||||||
|
smpt_tls_policy_maps:
|
||||||
|
- example.com: encrypt
|
||||||
|
- .example.com: encrypt
|
||||||
|
|
||||||
smtp_sasl_password_maps:
|
smtp_sasl_password_maps:
|
||||||
- smtp.example.com: myaccount:somepassword
|
- smtp.example.com: myaccount:somepassword
|
||||||
|
|
||||||
|
@ -80,48 +80,6 @@ include:
|
|||||||
postfix_master_services: {{ postfix_master_services|tojson }}
|
postfix_master_services: {{ postfix_master_services|tojson }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if 'transport' in pillar.get('postfix', '') %}
|
|
||||||
{{ postfix.config_path }}/transport:
|
|
||||||
file.managed:
|
|
||||||
- source: salt://postfix/files/transport
|
|
||||||
- user: root
|
|
||||||
- group: {{ postfix.root_grp }}
|
|
||||||
- mode: 644
|
|
||||||
- require:
|
|
||||||
- pkg: postfix
|
|
||||||
- watch_in:
|
|
||||||
- service: postfix
|
|
||||||
- template: jinja
|
|
||||||
|
|
||||||
run-postmap:
|
|
||||||
cmd.wait:
|
|
||||||
- name: {{ postfix.xbin_prefix }}/sbin/postmap {{ postfix.config_path }}/transport
|
|
||||||
- cwd: /
|
|
||||||
- watch:
|
|
||||||
- file: {{ postfix.config_path }}/transport
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if 'tls_policy' in pillar.get('postfix', '') %}
|
|
||||||
{{ postfix.config_path }}/tls_policy:
|
|
||||||
file.managed:
|
|
||||||
- source: salt://postfix/files/tls_policy
|
|
||||||
- user: root
|
|
||||||
- group: {{ postfix.root_grp }}
|
|
||||||
- mode: 644
|
|
||||||
- require:
|
|
||||||
- pkg: postfix
|
|
||||||
- watch_in:
|
|
||||||
- service: postfix
|
|
||||||
- template: jinja
|
|
||||||
|
|
||||||
run-postmap-tls-policy:
|
|
||||||
cmd.wait:
|
|
||||||
- name: {{ postfix.xbin_prefix }}/sbin/postmap {{ postfix.config_path }}/tls_policy
|
|
||||||
- cwd: /
|
|
||||||
- watch:
|
|
||||||
- file: {{ postfix.config_path }}/tls_policy
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{%- for domain in salt['pillar.get']('postfix:certificates', {}).keys() %}
|
{%- for domain in salt['pillar.get']('postfix:certificates', {}).keys() %}
|
||||||
|
|
||||||
postfix_{{ domain }}_ssl_certificate:
|
postfix_{{ domain }}_ssl_certificate:
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
#
|
|
||||||
# This file is managed by salt
|
|
||||||
#
|
|
||||||
|
|
||||||
{% set config = salt['pillar.get']('postfix:tls_policy', {}) -%}
|
|
||||||
{% macro set_parameter(parameter, default=None) -%}
|
|
||||||
{% set value = config.get(parameter, default) -%}
|
|
||||||
{% if value is not none -%}
|
|
||||||
{{ parameter }} {{ value }}
|
|
||||||
{% endif -%}
|
|
||||||
{% endmacro -%}
|
|
||||||
|
|
||||||
{# Accept arbitrary parameters -#}
|
|
||||||
{% for parameter in config -%}
|
|
||||||
{{ set_parameter(parameter) }}
|
|
||||||
{% endfor -%}
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
|||||||
#
|
|
||||||
# This file is managed by salt
|
|
||||||
#
|
|
||||||
|
|
||||||
{% set config = salt['pillar.get']('postfix:transport', {}) -%}
|
|
||||||
{% macro set_parameter(parameter, default=None) -%}
|
|
||||||
{% set value = config.get(parameter, default) -%}
|
|
||||||
{% if value is not none -%}
|
|
||||||
{{ parameter }} {{ value }}
|
|
||||||
{% endif -%}
|
|
||||||
{% endmacro -%}
|
|
||||||
|
|
||||||
{# Accept arbitrary parameters -#}
|
|
||||||
{% for parameter in config -%}
|
|
||||||
{{ set_parameter(parameter) }}
|
|
||||||
{% endfor -%}
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user