2014-08-20 02:32:47 +02:00
|
|
|
include:
|
|
|
|
- postfix
|
|
|
|
|
|
|
|
/etc/postfix:
|
|
|
|
file.directory:
|
|
|
|
- user: root
|
|
|
|
- group: root
|
|
|
|
- dir_mode: 755
|
|
|
|
- file_mode: 644
|
|
|
|
- makedirs: True
|
|
|
|
|
|
|
|
/etc/postfix/main.cf:
|
|
|
|
file.managed:
|
|
|
|
- source: salt://postfix/files/main.cf
|
|
|
|
- user: root
|
|
|
|
- group: root
|
|
|
|
- mode: 644
|
2014-08-20 03:42:08 +02:00
|
|
|
- require:
|
|
|
|
- pkg: postfix
|
2014-08-20 02:32:47 +02:00
|
|
|
- watch_in:
|
2014-08-20 03:46:15 +02:00
|
|
|
- service: postfix
|
2014-08-20 02:32:47 +02:00
|
|
|
- template: jinja
|
2015-03-26 09:43:44 +01:00
|
|
|
{% if salt['pillar.get']('postfix:manage_master_config', True) %}
|
2015-02-05 09:57:18 +01:00
|
|
|
/etc/postfix/master.cf:
|
|
|
|
file.managed:
|
|
|
|
- source: salt://postfix/files/master.cf
|
|
|
|
- user: root
|
|
|
|
- group: root
|
|
|
|
- mode: 644
|
|
|
|
- require:
|
|
|
|
- pkg: postfix
|
|
|
|
- watch_in:
|
|
|
|
- service: postfix
|
|
|
|
- template: jinja
|
2015-03-25 12:49:57 +01:00
|
|
|
{% endif %}
|
2015-06-20 22:49:09 +02:00
|
|
|
|
2015-08-30 19:30:08 +02:00
|
|
|
{%- for domain in salt['pillar.get']('postfix:certificates', {}).keys() %}
|
|
|
|
|
|
|
|
postfix_{{ domain }}_ssl_certificate:
|
2015-06-20 22:49:09 +02:00
|
|
|
file.managed:
|
2015-08-30 19:30:08 +02:00
|
|
|
- name: /etc/postfix/ssl/{{ domain }}.crt
|
|
|
|
- makedirs: True
|
|
|
|
- contents_pillar: postfix:certificates:{{ domain }}:public_cert
|
2015-06-20 22:49:09 +02:00
|
|
|
- watch_in:
|
2015-08-30 19:30:08 +02:00
|
|
|
- service: postfix
|
2015-06-20 22:49:09 +02:00
|
|
|
|
2015-08-30 19:30:08 +02:00
|
|
|
postfix_{{ domain }}_ssl_key:
|
2015-06-20 22:49:09 +02:00
|
|
|
file.managed:
|
2015-08-30 19:30:08 +02:00
|
|
|
- name: /etc/postfix/ssl/{{ domain }}.key
|
|
|
|
- mode: 600
|
|
|
|
- makedirs: True
|
|
|
|
- contents_pillar: postfix:certificates:{{ domain }}:private_key
|
2015-06-20 22:49:09 +02:00
|
|
|
- watch_in:
|
2015-08-30 19:30:08 +02:00
|
|
|
- service: postfix
|
2015-06-20 22:49:09 +02:00
|
|
|
|
2015-08-30 19:30:08 +02:00
|
|
|
{% endfor %}
|