diff options
-rw-r--r-- | production | 1 | ||||
-rw-r--r-- | roles/webmail/tasks/roundcube.yml | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -59,33 +59,32 @@ levante elefant # lists.fripost.org [lists:children] antilop [wiki:children] civett [git:children] wiki [nextcloud:children] calima [munin_master:children] levante [backports:children] -webmail # machines behind NAT [NATed:children] levante # hostnames resolving to a dynamic IP [DynDNS:children] levante # need dhcp client [dhclient:children] levante diff --git a/roles/webmail/tasks/roundcube.yml b/roles/webmail/tasks/roundcube.yml index 2296cc2..c186354 100644 --- a/roles/webmail/tasks/roundcube.yml +++ b/roles/webmail/tasks/roundcube.yml @@ -58,41 +58,41 @@ - name: Create cache directory /var/log/roundcube file: path=/var/log/roundcube state=directory owner=_roundcube group=adm mode=0750 - name: Install GNU Aspell and some dictionaries apt: pkg={{ packages }} vars: packages: - aspell - aspell-da - aspell-de - aspell-en - aspell-es - aspell-fr - aspell-no - aspell-sv - name: Install Roundcube - apt: pkg={{ packages }} default_release={{ ansible_lsb.codename }}-backports + apt: pkg={{ packages }} vars: packages: - roundcube-core - roundcube-mysql - roundcube-plugins - roundcube-plugins-extra - name: Install plugin dependencies apt: pkg={{ packages }} vars: packages: - php-net-sieve - name: Copy fripost's logo copy: src=usr/share/roundcube/program/resources/{{ item }} dest=/usr/share/roundcube/program/resources/{{ item }} owner=root group=root mode=0644 with_items: - fripost_logo_black.png |