Update to 2022-01-03 18:00

This commit is contained in:
Daniel Berteaud 2022-01-03 18:00:13 +01:00
parent 5488e2468c
commit 43402beeff
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
- include: install_{{ ansible_os_family }}.yml
- name: Deploy patrix config for root user
- name: Deploy global patrix config
template: src=patrixrc.j2 dest=/etc/patrixrc mode='600'
tags: patrix

View File

@ -35,7 +35,7 @@ pmg_bayes_imap_ham: Ham
# as message/rfc822 (it's the case for example with Zimbra spam / non spam buttons)
# then set it to true. If true, the script will extract the first rfc822 attachment
# and feed it to sa-learn instead of feeding the outer email
pmg_bays_imap_attachment: False
pmg_bayes_imap_attachment: False
# Should we use the openfish feeds. They should only be used for personal usage
# unless allowed by openphish. See https://openphish.com/feed.txt

View File

@ -10,6 +10,6 @@ IMAP_SA_LEARN_PASSWORD={{ pmg_bayes_imap_pass | quote }}
IMAP_SA_LEARN_SPAMDIR={{ pmg_bayes_imap_spam }}
IMAP_SA_LEARN_HAMDIR={{ pmg_bayes_imap_ham }}
IMAP_SA_LEARN_SECURITY={{ pmg_bayes_imap_security }}
{% if pmg_bays_imap_attachment %}
{% if pmg_bayes_imap_attachment %}
IMAP_SA_LEARN_ATTACHMENT=1
{% endif %}