No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rspamd.yml 527B

1234567891011121314151617181920
  1. ---
  2. # Installs and configures the Rspamd spam filtering system.
  3. - name: Ensure repository key for Rspamd is in place
  4. apt_key: url=http://rspamd.com/apt-stable/gpg.key state=present
  5. tags:
  6. - dependencies
  7. - name: Add Rspamd repository
  8. apt_repository: repo="deb http://rspamd.com/apt-stable/ {{ ansible_distribution_release }} main"
  9. tags:
  10. - dependencies
  11. - name: Install Rspamd and Rmilter
  12. apt: pkg={{ item }} state=installed update_cache=yes
  13. with_items:
  14. - rspamd
  15. - rmilter
  16. tags:
  17. - dependencies