summaryrefslogtreecommitdiffstats
path: root/roles/IMAP-proxy/tasks/main.yml
blob: 50cfc2d4c0d0312b6853a53d2a3fff0b350e44f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
- name: Install Dovecot
  # WARNING: "The destination servers don't need to be running Dovecot,
  #   but you should make sure that the Dovecot proxy doesn't advertise
  #   more capabilities than the destination server can handle."
  # http://wiki2.dovecot.org/PasswordDatabase/ExtraFields/Proxy
  apt: pkg={{ item }} default_release={{ ansible_lsb.codename }}-backports
  with_items:
    - dovecot-core
    - dovecot-imapd

- name: Create a user 'imapproxy'
  user: name=imapproxy system=yes
        createhome=no
        home=/var/lib/imapproxy
        shell=/usr/sbin/nologin
        password=!
        state=present

- name: Create a home directory for user 'imapproxy'
  file: path=/var/lib/imapproxy
        state=directory
        owner=imapproxy group=imapproxy
        mode=0700

- name: Configure Dovecot
  copy: src=etc/dovecot/conf.d/{{ item }}
        dest=/etc/dovecot/conf.d/{{ item }}
        owner=root group=root
        mode=0644
  register: r1
  with_items:
    - 10-auth.conf
    - 10-logging.conf
    - 10-mail.conf
    - 10-master.conf
    - 15-mailboxes.conf
  notify:
    - Restart Dovecot

- name: Configure Dovecot (2)
  template: src=etc/dovecot/conf.d/{{ item }}.j2
            dest=/etc/dovecot/conf.d/{{ item }}
            owner=root group=root
            mode=0644
  register: r2
  with_items:
    - 20-imapc.conf
    - auth-imap.conf.ext
  notify:
    - Restart Dovecot

- name: Start Dovecot
  service: name=dovecot state=started
  when: not (r1.changed or r2.changed)

- meta: flush_handlers


- name: Create /etc/stunnel/certs
  file: path=/etc/stunnel/certs
        state=directory
        owner=root group=root
        mode=0755

- name: Copy Dovecot's X.509 certificate
  copy: src=certs/public/imap.fripost.org.pem
        dest=/etc/stunnel/certs/imap.fripost.org.pem
        owner=root group=root
        mode=0644
  register: r1
  notify:
    - Restart stunnel@roundcube

- name: Copy slapd's X.509 certificate
  copy: src=certs/ldap/ldap.fripost.org.pem
        dest=/etc/stunnel/certs/ldap.fripost.org.pem
        owner=root group=root
        mode=0644
  register: r2
  notify:
    - Restart stunnel@roundcube

- name: Configure stunnel
  copy: src=etc/stunnel/roundcube.conf
        dest=/etc/stunnel/roundcube.conf
        owner=root group=root
        mode=0644
  register: r3
  notify:
    - Restart stunnel@roundcube

- name: Enable stunnel@roundcube
  service: name=stunnel4@roundcube enabled=yes

- name: Start stunnel@roundcube
  service: name=stunnel4@roundcube state=started
  when: not (r1.changed or r2.changed or r3.changed)

- meta: flush_handlers