Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

42 lignes
1.1 KiB

  1. ---
  2. - name: Enable rspamd autolearning
  3. copy:
  4. src: classifier-bayes.conf
  5. dest: /etc/rspamd/override.d/classifier-bayes.conf
  6. notify: restart rspamd
  7. - name: Enable rspamd extended headers
  8. copy:
  9. src: milter_headers.conf
  10. dest: /etc/rspamd/override.d/milter_headers.conf
  11. notify: restart rspamd
  12. - name: Enable rspamd per-user bayes training
  13. copy:
  14. src: statistic.conf
  15. dest: /etc/rspamd/override.d/statistic.conf
  16. notify: restart rspamd
  17. - name: Enable rspamd redis backend
  18. copy:
  19. src: redis.conf
  20. dest: /etc/rspamd/override.d/redis.conf
  21. notify: restart rspamd
  22. - name: Hash the rspamd web interface password
  23. shell: "rspamadm pw -p {{ispmail_rspamd_web_password}}"
  24. register: ispmail_rspamd_web_password_hashed
  25. notify: restart rspamd
  26. - name: Set rspamd admin web interface password
  27. template:
  28. src: worker-controller.conf.j2
  29. dest: /etc/rspamd/local.d/worker-controller.inc
  30. notify: restart rspamd
  31. - name: Enable redis module in rspamd
  32. copy:
  33. src: redis.conf
  34. dest: /etc/rspamd/override.d/redis.conf
  35. notify: restart rspamd