Rename postfix_domains to make it easier to use

This commit is contained in:
Jason Rothstein 2022-04-10 17:56:34 -05:00
parent 7ede9e4031
commit 7e4dc6b245
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ Role Variables
| Variable | Default | Description | | Variable | Default | Description |
|-|-|-| |-|-|-|
| postfix_vhost | inventory_hostname | What mod_md certificate should be used for Postfix | | postfix_vhost | inventory_hostname | What mod_md certificate should be used for Postfix |
| postfix_domain_list | Undefined | List of strings for domains to accept email for and send to local LMTP for | | postfix_domains | Undefined | List of strings for domains to accept email for and send to local LMTP for |
Dependencies Dependencies
------------ ------------

View File

@ -749,7 +749,7 @@ shlib_directory = /usr/lib64/postfix
smtpd_milters = {% for milter in ensure_postfix.milter_list %} {{ milter.protocol }}:{{ milter.hostname }}:{{ milter.port }} {% endfor %} smtpd_milters = {% for milter in ensure_postfix.milter_list %} {{ milter.protocol }}:{{ milter.hostname }}:{{ milter.port }} {% endfor %}
{% endif %} {% endif %}
{% if postfix_domain_list is defined and postfix_domain_list is iterable %} {% if postfix_domains is defined and postfix_domains is iterable %}
virtual_mailbox_domains = {% for domain in postfix_domain_list %} {{ domain }} {% endfor %} virtual_mailbox_domains = {% for domain in postfix_domains %} {{ domain }} {% endfor %}
{% endif %} {% endif %}