smtp.yml 1.9 KB

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