-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yml
More file actions
60 lines (55 loc) · 1.61 KB
/
config.yml
File metadata and controls
60 lines (55 loc) · 1.61 KB
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
---
#
# Global configuration file
#
#
# Prerequiste System #
#
## EPEL URLs
epel_repo_url: "http://download.fedoraproject.org/pub/epel/epel-release-latest-{{ ansible_distribution_major_version }}.noarch.rpm"
epel_repo_gpg_key_url: "/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-{{ ansible_distribution_major_version }}"
# Upgrade ##
enable_upgrade: "yes"
#
# LDAP directory configuration #
#
# Here, you can indicate the LDAP directory use to authenticate users
ldap_host: "ldap.test.local"
ldap_port: 389
ldap_ssl: "no"
ldap_suffix: "dc=test,dc=local"
ldap_bind_dn: "cn=manager,{{ ldap_suffix }}"
ldap_bind_pw: "secret"
#
# SASL configuration #
#
## SASL Backend (allowed values : ldap, pam)
sasl_backend: "ldap"
# SASL search filter
sasl_ldap_filter: "(|(mail=%U@%d)(&(uid=%U)(sn=Cyrus)))"
#
# Cyrus Configuration #
#
## TLS
enable_legacy_ssl: "no"
tls_cert_file: /etc/ssl/certs/mail.pem
tls_key_file: /etc/ssl/certs/mail.key
tls_ca_file: /etc/ssl/certs/ca.pem
# POP
enable_pop: "no"
## IMAP Cluster Configuration
# Clustering is automatically enabled if you set a cyrusmupdateserver in your inventory.
# You need to set a user for cluster synchronisation. murder will by used by default.
# Be carefull : caracters ', " and ; will be automatically removed.
mupdate_server: murder.test.local
mupdate_user: murder
mupdate_pass: murder
#
# Local DNS #
#
# If you don't have the DNS record yet, each /etc/hosts is updated with the hosts defined in this file
update_host: "yes"
ldap_record: "192.168.1.1 ldap.test.local"
back_record: "192.168.1.2 back.test.local"
front_record: "192.168.1.3 front.test.local"
murder_record: "192.168.1.4 murder.test.local"