Skip to content

Commit

Permalink
Bugfix #11 - Role fails to find local zimbra commands
Browse files Browse the repository at this point in the history
  • Loading branch information
lucascbeyeler authored Sep 27, 2017
1 parent d077dc7 commit 7ff56df
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions tasks/configure/mta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,23 @@
mode: 0440

- name: Enabling SpamAssassin Auto Update
command: zmlocalconfig -e antispam_enable_rule_updates=true
command: ./zmlocalconfig -e antispam_enable_rule_updates=true
args:
chdir: /opt/zimbra/bin/
become: true
become_user: zimbra

- name: Enabling Amavis to restart when the rules are update
command: zmlocalconfig -e antispam_enable_restarts=true
command: ./zmlocalconfig -e antispam_enable_restarts=true
args:
chdir: /opt/zimbra/bin/
become: true
become_user: zimbra

- name: Enabling SpamAssassin rule compilation
command: zmlocalconfig -e antispam_enable_rule_compilation=true
command: ./zmlocalconfig -e antispam_enable_rule_compilation=true
args:
chdir: /opt/zimbra/bin/
become: true
become_user: zimbra

Expand Down

0 comments on commit 7ff56df

Please sign in to comment.