ansible-role-postfix_mta/defaults/main.yml

23 lines
674 B
YAML
Raw Permalink Normal View History

2019-03-05 12:44:14 +00:00
---
2023-06-29 14:19:02 +00:00
postfix_hostname: "{{ ansible_fqdn }}"
postfix_origin: "$myhostname"
2021-08-20 16:25:49 +00:00
postfix_config: {}
postfix_default_config:
smtpd_banner: $myhostname ESMTP $mail_name (Debian/GNU)
2023-06-29 14:19:02 +00:00
biff: "no"
append_dot_mydomain: "no"
readme_directory: "no"
2021-08-20 16:25:49 +00:00
compatibility_level: 2
2023-06-29 14:19:02 +00:00
myhostname: "{{ ansible_fqdn }}"
2021-08-20 16:25:49 +00:00
myorigin: $myhostname
mydestination: $myhostname, localhost
default_transport: smtp
mynetworks: 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
2023-06-29 14:19:02 +00:00
mailbox_size_limit: "0"
recipient_delimiter: "+"
2021-08-20 16:25:49 +00:00
inet_interfaces: localhost
inet_protocols: all
2023-06-29 14:19:02 +00:00
postfix_full_config: "{{ postfix_default_config | combine(postfix_config) }}"
2021-08-20 16:30:38 +00:00
postfix_transports: {}
2021-08-20 16:36:55 +00:00
postfix_aliases: {}