diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2017-05-29 16:32:13 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2017-05-29 16:32:13 +0200 |
commit | 39242fe991582f5f912912c2a12429f9d5c744c4 (patch) | |
tree | d64fe215b6be1013af9bf8c6ed1a760d171388f9 /roles/lists/tasks/sympa.yml | |
parent | 48067cfad556314f91c57f99692609084fce6f63 (diff) |
Install more sympa dependencies.
Diffstat (limited to 'roles/lists/tasks/sympa.yml')
-rw-r--r-- | roles/lists/tasks/sympa.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/roles/lists/tasks/sympa.yml b/roles/lists/tasks/sympa.yml index 5b5d243..981de8a 100644 --- a/roles/lists/tasks/sympa.yml +++ b/roles/lists/tasks/sympa.yml @@ -1,24 +1,29 @@ - apt: pkg={{ item }} install_recommends=no with_items: - mysql-server - sympa + - libnet-dns-perl + - libnet-dns-sec-perl + - libmail-dkim-perl + - libcrypt-smime-perl + - libcrypt-openssl-x509-perl - name: Make the 'sympa' MySQL user use auth_socket mysql_user2: name=sympa password= auth_plugin=auth_socket state=present # XXX We want to change the retun-path for sendpasswd notices from # 'sympa-request@$robot' to 'noreply@fripost.org'. # * /usr/lib/cgi-bin/sympa/wwsympa.fcgi # do_requestpasswd, do_subrequest: add $param->{'return_path'}='noreply@fripost.org'; # * List::send_global_file # $data->{'return_path'} //= &Conf::get_robot_conf($robot, 'request'); # See #787946. - name: Configure Sympa copy: src=etc/sympa/{{ item }} dest=/etc/sympa/{{ item }} owner=root group=sympa mode=0644 with_items: - sympa.conf - wwsympa.conf |