1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_rspamd.git synced 2024-08-16 17:09:51 +02:00
ansible_role_rspamd/tasks/configure.yml

50 lines
1.3 KiB
YAML
Raw Normal View History

---
- name: Einstellung des Worker controllers
become: true
ansible.builtin.template:
src: templates/worker-controller.inc.j2
dest: "{{ rspamd__config_path }}worker-controller.inc"
mode: '0640'
- name: Einstellung des logging
become: true
ansible.builtin.copy:
src: files/logging.inc
dest: "{{ rspamd__config_path }}logging.inc"
mode: '0640'
- name: milter_headers.conf
become: true
ansible.builtin.copy:
src: files/milter_headers.conf
dest: "{{ rspamd__config_path }}milter_headers.conf"
mode: '0640'
- name: milter_headers.conf
become: true
ansible.builtin.copy:
src: files/classifier-bayes.conf
dest: "{{ rspamd__config_path }}classifier-bayes.conf"
mode: '0640'
- name: Einstellug der redis.conf
become: true
ansible.builtin.template:
src: templates/redis.conf.j2
dest: "{{ rspamd__config_path }}redis.conf"
mode: '0640'
- name: classifier-bayes.conf
become: true
ansible.builtin.copy:
src: files/classifier-bayes.conf
dest: "{{ rspamd__config_path }}classifier-bayes.conf"
mode: '0640'
- name: Einstellug der eignene black/whitelist
become: true
ansible.builtin.copy:
src: "{{ rspamd__multimap_conf_file }}"
dest: "{{ rspamd__config_path }}multimap.conf"
mode: '0640'