소스 검색

Make possible to add custom settings in postfix main configuration file

Emmanuel Bouthenot 9 년 전
부모
커밋
33526aa616
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      roles/common/templates/postfix/main.cf.j2

+ 6 - 0
roles/common/templates/postfix/main.cf.j2

@@ -126,3 +126,9 @@ milter_default_action = accept
 smtpd_milters = inet:localhost:8891
 non_smtpd_milters = inet:localhost:8891
 {% endif %}
+{% if postfix_config is defined %}
+# Additionnal configuration
+{% for key in postfix_config %}
+{{ key }} = {{ postfix_config[key] }}
+{% endfor %}
+{% endif %}