diff options
author | Dmitry Ilvokhin <d@ilvokhin.com> | 2024-04-06 19:57:50 +0100 |
---|---|---|
committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2024-04-06 19:57:50 +0100 |
commit | 197787c89401d0a2b02f9bd1a90873702a3c0604 (patch) | |
tree | 341058ce8dc197ff2ad0991e69cf8855a6e2b4c0 | |
parent | a5105a330af202e5880c004d7c997882cdb96681 (diff) | |
download | infra-197787c89401d0a2b02f9bd1a90873702a3c0604.tar.gz infra-197787c89401d0a2b02f9bd1a90873702a3c0604.tar.bz2 infra-197787c89401d0a2b02f9bd1a90873702a3c0604.zip |
Add mail playbook for mail server setup
-rw-r--r-- | mail.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mail.yml b/mail.yml new file mode 100644 index 0000000..39880d1 --- /dev/null +++ b/mail.yml @@ -0,0 +1,10 @@ +# Source of insipration for this setup is "NSA-proof your e-mail in 2 hours" +# blog post by Drew Crawford. + +- name: Setup machines to receive and send mail + hosts: mail + roles: + - { role: certmail } + - { role: opendkim } + - { role: dovecot } + - { role: postfix } |