explain the difference between alias_maps and alias_database
This commit is contained in:
parent
c60c3bab6f
commit
f514881e5a
@ -36,6 +36,9 @@ postfix:
|
|||||||
|
|
||||||
# Alias
|
# Alias
|
||||||
alias_maps: hash:/etc/aliases
|
alias_maps: hash:/etc/aliases
|
||||||
|
# This is the list of files for the newaliases
|
||||||
|
# cmd to process (see postconf(5) for details).
|
||||||
|
# Only local hash/btree/dbm files:
|
||||||
alias_database: hash:/etc/aliases
|
alias_database: hash:/etc/aliases
|
||||||
|
|
||||||
# Virtual users
|
# Virtual users
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{%- from "postfix/map.jinja" import postfix with context -%}
|
{%- from "postfix/map.jinja" import postfix with context -%}
|
||||||
{%- set config = salt['pillar.get']('postfix:config', {}) -%}
|
{%- set config = salt['pillar.get']('postfix:config', {}) -%}
|
||||||
|
{#- TODO: alias_maps probably belongs here, too: #}
|
||||||
{%- set processed_parameters = [
|
{%- set processed_parameters = [
|
||||||
'aliases_file',
|
|
||||||
'virtual_alias_maps',
|
'virtual_alias_maps',
|
||||||
'smtp_sasl_password_maps',
|
'smtp_sasl_password_maps',
|
||||||
'sender_canonical_maps',
|
'sender_canonical_maps',
|
||||||
@ -74,6 +74,7 @@
|
|||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
{{ set_parameter('myhostname', grains['fqdn']) }}
|
{{ set_parameter('myhostname', grains['fqdn']) }}
|
||||||
|
{#- TODO: The following two may not be the same: #}
|
||||||
{{ set_parameter('alias_maps', 'hash:' ~ postfix.aliases_file) }}
|
{{ set_parameter('alias_maps', 'hash:' ~ postfix.aliases_file) }}
|
||||||
{{ set_parameter('alias_database', 'hash:' ~ postfix.aliases_file) }}
|
{{ set_parameter('alias_database', 'hash:' ~ postfix.aliases_file) }}
|
||||||
{{ set_parameter('mydestination', [grains['fqdn'], 'localhost', 'localhost.localdomain', grains['domain']]) }}
|
{{ set_parameter('mydestination', [grains['fqdn'], 'localhost', 'localhost.localdomain', grains['domain']]) }}
|
||||||
|
Loading…
Reference in New Issue
Block a user