In my development env i want to make sure nobody can send a mail to a wrong address. So all outgoing mails are changed. Signed-off-by: Bram Gillemon <bram@gillemon.be>
58 lines
1.0 KiB
YAML
58 lines
1.0 KiB
YAML
driver:
|
|
name: vagrant
|
|
|
|
provisioner:
|
|
name: chef_zero
|
|
|
|
platforms:
|
|
- name: centos-6.9
|
|
- name: centos-7.3
|
|
- name: debian-7.11
|
|
run_list: apt::default
|
|
- name: debian-8.8
|
|
run_list: apt::default
|
|
- name: fedora-25
|
|
- name: opensuse-13.2
|
|
- name: opensuse-leap-42.2
|
|
- name: ubuntu-14.04
|
|
run_list: apt::default
|
|
- name: ubuntu-16.04
|
|
run_list: apt::default
|
|
|
|
suites:
|
|
- name: default
|
|
run_list:
|
|
- recipe[postfix]
|
|
|
|
- name: aliases
|
|
run_list:
|
|
- recipe[postfix::aliases]
|
|
|
|
- name: client
|
|
run_list:
|
|
- recipe[postfix::client]
|
|
|
|
- name: server
|
|
run_list:
|
|
- recipe[postfix::server]
|
|
|
|
- name: sasl_auth
|
|
run_list:
|
|
- recipe[postfix::sasl_auth]
|
|
attributes:
|
|
postfix:
|
|
main:
|
|
relayhost: "localhost"
|
|
smtp_sasl_auth_enable: "yes"
|
|
sasl:
|
|
smtp_sasl_user_name: "kitchenuser"
|
|
smtp_sasl_passwd: "not-a-real-thing"
|
|
|
|
- name: canonical
|
|
run_list:
|
|
- recipe[postfix]
|
|
attributes:
|
|
postfix:
|
|
recipient_canonical_map_entries:
|
|
john: john@doe.com
|
|
|