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

update some parts of rspamd and other stuff

This commit is contained in:
L3D 2021-01-22 01:09:04 +01:00
parent 60802cb191
commit 00edc60e0f
Signed by: l3d
GPG key ID: CD08445BFF4313D1
10 changed files with 95 additions and 1 deletions

View file

@ -1,3 +1,9 @@
---
# should we do a version check? (recomended)
submodules_versioncheck: false
# rspamd config
rspamd__config_path: '/etc/rspamd/local.d/'
rspamd__admin_password: 'ChangeMePl3ase'
rspamd__redis_server: '127.0.0.1'
rspamd__multimap_conf_file: 'templates/multimap.conf.j2'

View file

@ -0,0 +1 @@
autolearn = true;

2
files/logging.inc Normal file
View file

@ -0,0 +1,2 @@
type = "syslog";
level = "warning";

View file

@ -0,0 +1,2 @@
use = ["x-spamd-bar", "x-spam-level", "authentication-results"];
authenticated_headers = ["authentication-results"];

27
files/multimap.conf Normal file
View file

@ -0,0 +1,27 @@
WHITELIST_IP {
type = "ip";
map = "$CONFDIR/local.d/whitelist_ip.map";
description = "Local ip whitelist";
action = "accept";
}
WHITELIST_FROM {
type = "from";
map = "$CONFDIR/local.d/whitelist_from.map";
description = "Local from whitelist";
action = "accept";
}
BLACKLIST_IP {
type = "ip";
map = "$CONFDIR/local.d/blacklist_ip.map";
description = "Local ip blacklist";
action = "reject";
}
BLACKLIST_FROM {
type = "from";
map = "$CONFDIR/local.d/blacklist_from.map";
description = "Local from blacklist";
action = "reject";
}

49
tasks/configure.yml Normal file
View file

@ -0,0 +1,49 @@
---
- 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'

View file

@ -5,3 +5,6 @@
- name: add apt repos and install rspamd
include_tasks: packages.yml
when: ansible_os_family == 'Debian'
- name: configure rspamd
include_tasks: configure.yml

1
templates/redis.conf.j2 Normal file
View file

@ -0,0 +1 @@
servers = "{{ rspamd__redis_server }}"

View file

@ -0,0 +1 @@
password = "{{ _rspamd__admin_password }}"

View file

@ -1,4 +1,6 @@
---
# versionscheck
playbook_version_number: 02 # should be a integer
playbook_version_number: 3 # should be a integer
playbook_version_path: 'do1jlr.rspamd.version'
_rspamd__admin_password: "{{ rspamd__admin_password | password_hash('bcrypt') }}"