smtp.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. - name: 'Install postfix packages'
  2. apt:
  3. pkg: '{{ item }}'
  4. install_recommends: 'no'
  5. state: 'installed'
  6. update_cache: 'yes'
  7. with_items:
  8. - 'postfix'
  9. - 'ca-certificates'
  10. - 'procmail'
  11. - 'libsasl2-modules'
  12. - name: 'Install mail aliases file'
  13. template:
  14. src: 'aliases.j2'
  15. dest: '/etc/aliases'
  16. owner: 'root'
  17. group: 'root'
  18. mode: '0644'
  19. notify:
  20. - 'Regenerate aliases cache'
  21. when: with_mail_aliases
  22. - name: 'Install postfix main configuration'
  23. template:
  24. src: 'postfix/main.cf.j2'
  25. dest: '/etc/postfix/main.cf'
  26. owner: 'root'
  27. group: 'root'
  28. mode: '0644'
  29. notify:
  30. - 'Reload postfix'
  31. - name: 'Update postfix master config for slowsmtp transport'
  32. blockinfile:
  33. dest: '/etc/postfix/master.cf'
  34. marker: '# ======= {mark} slowsmtp transport (managed by ansible) ======'
  35. content: |
  36. slowsmtp unix - - n - 5 smtp
  37. -o smtp_destination_concurrency_limit=3
  38. -o slowsmtp_destination_rate_delay=1
  39. notify:
  40. - 'Reload postfix'
  41. when: with_postfix_slowsmtp
  42. - name: 'Install postfix slowsmtp transport map'
  43. template:
  44. src: 'postfix/transport_slowsmtp.j2'
  45. dest: '/etc/postfix/transport_slowsmtp'
  46. owner: 'root'
  47. group: 'root'
  48. mode: '0644'
  49. notify:
  50. - 'Rehash slowsmtp transport map'
  51. - 'Reload postfix'
  52. when: with_postfix_slowsmtp
  53. - name: 'Install postfix sasl credentials map'
  54. template:
  55. src: 'postfix/sasl_credentials.j2'
  56. dest: '/etc/postfix/sasl/credentials'
  57. owner: 'root'
  58. group: 'root'
  59. mode: '0600'
  60. notify:
  61. - 'Rehash sasl credentials map'
  62. - 'Reload postfix'
  63. when: with_postfix_external_smtp
  64. - name: 'Install postfix sasl sender rewrite map'
  65. template:
  66. src: 'postfix/sasl_sender_rewrite.j2'
  67. dest: '/etc/postfix/sasl/sender_rewrite'
  68. owner: 'root'
  69. group: 'root'
  70. mode: '0600'
  71. notify:
  72. - 'Reload postfix'
  73. when: with_postfix_external_smtp