aboutsummaryrefslogtreecommitdiffstats
path: root/roles/dovecot/vars/main.yml
blob: 5069aa59179e1cb62215e34b97eca0835fc5de2d (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
dovecot_packages:
  - dovecot
  - dovecot-pigeonhole

dovecot_vmail_user: vmail
dovecot_vmail_dir: /var/vmail

dovecot_hbac_hostgroup: imap_servers
dovecot_hbac_service: dovecot

dovecot_certificate_path: /etc/pki/dovecot/certs/dovecot.pem
dovecot_certificate_key_path: /etc/pki/dovecot/private/dovecot.key
dovecot_dhparams_path: /etc/pki/dovecot/dhparams-dovecot.pem
dovecot_ssl_cipher_list: ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384

dovecot_quota_warning_script: /usr/local/bin/dovecot-quota-warning.sh
dovecot_archive_script: /usr/local/bin/dovecot-archive.sh

dovecot_keytab: /var/lib/gssproxy/clients/dovecot.keytab

dovecot_sieve_dir: /etc/dovecot/sieve
dovecot_sieve_before_dir: /etc/dovecot/sieve.before.d
dovecot_sieve_pipe_bin_dir: /usr/lib/dovecot/sieve-pipe

dovecot_solr_schema_path: /usr/share/doc/dovecot/solr-schema-7.7.0.xml
dovecot_solr_config_path: /usr/share/doc/dovecot/solr-config-7.7.0.xml

dovecot_selinux_policy_te: |
  require {
    type autofs_t;
    type dovecot_t;
    type dovecot_auth_t;
    type dovecot_auth_exec_t;
    type dovecot_deliver_exec_t;
    type gssd_t;
    type gssproxy_t;
    type gssproxy_var_lib_t;
    class dir search;
    class sock_file write;
    class unix_stream_socket connectto;
    class process noatsecure;
    class file { read execute open getattr execute_no_trans map };
    class dir search;
    class key { read write };
  }

  ### The following rules are needed for dovecot to access gssproxy:
  #============= dovecot_auth_t ==============
  allow dovecot_auth_t gssproxy_t:unix_stream_socket connectto;
  allow dovecot_auth_t gssproxy_var_lib_t:dir search;
  allow dovecot_auth_t gssproxy_var_lib_t:sock_file write;
  allow dovecot_auth_t autofs_t:dir search;
  allow dovecot_auth_t gssd_t:key { read write };

  #============= dovecot_t ==============
  allow dovecot_t dovecot_auth_t:process noatsecure;
  allow dovecot_t dovecot_deliver_exec_t:file { read execute open getattr execute_no_trans };

  #============= gssproxy_t ==============
  allow gssproxy_t dovecot_auth_exec_t:file getattr;

  ### The following rules are needed for the delivery process to exec quota warning scripts:
  #============= dovecot_t ==============
  allow dovecot_t dovecot_deliver_exec_t:file { read execute open getattr execute_no_trans map };