bd5ccb1bbc7a9e301ac7d91d4f50808499619652
[ansible.git] / host_vars / template.yml
1 postfix:
2   # optional: Whether to put a postscreen on port 25
3   postscreen: True
4   # optional: Open another SMTP daemon on port 26 that only accepts mail from local hosts
5   # (and whitelisted client certs, if applicable).  Useful when the source of the mail is in
6   # a network that blocks port 25 outgoing.
7   smtpd_26: True
8   # optional: Whether to accept emails for arbitrary destination on the submission port,
9   # authenticated by dovecot.  Requires a dovecot: section (see below).
10   submission: True
11   # optional: Whether to install mailman and add it as a possible postfix transport.
12   mailman: True
13   # optional: From which IPs to accept mail.
14   mynetworks: '127.0.0.0/8 [::1]/128 203.0.113.0/24'
15   # optional: List multiple outgoing transports using different IP addresses.
16   # Requires default_smtp_outgoing to be set to one of them.  The file
17   # /etc/postfix/sender_transport_map on the server can be used to configure
18   # which transport is used depending on the sender address.
19   smtp_outgoing:
20     - name: smtp1
21       hostname: one.example.org
22       ip: 203.0.113.1
23       ip_v6: 2001:DB8::1
24     - name: smtp2
25       hostname: two.example.org
26       ip: 203.0.113.2
27   default_smtp_outgoing: smtp1
28   # optional: Enabled opendkim for incoming and outgoing DKIM support.
29   opendkim:
30     # list of private keys
31     private_keys:
32     - example.org
33     # table mapping outgoing domains to the private key used for signing mail
34     signing_table:
35       example.org: example.org
36       lists.example.org: example.org
37   # optional: List of domains and transports to use.  The file /etc/postfix/virtual_alias_map
38   # can be used to configure aliases for these domains.
39   virtual_mailbox_domains:
40     - domain: lists.example.org
41       transport: mailman
42     - domain: example.org
43       transport: lmtp:unix:private/dovecot-lmtp
44   # optional: Install and configure dovecot
45   dovecot:
46     mysql_password: $RANDOM
47     vmail_uid: 200
48     mail_gid: 8
49     postmaster: postmaster@example.org
50     quota:
51       general: 1G
52       trash: +10M
53   # optional: Hostnames and SHA1 certificate hashes that are allowed to relay email via this host.
54   relay_client_cert_whitelist:
55     - hostname: other.example.org
56       cert: 00:11:22:33:44:55:66:77:88:99:AA:BB:CC:DD:EE:FF:00:11:22:33
57   # optional: Configure a host to relay all outgoing email to.
58   # Incompatible with smtp_outgoing.
59   relay_host: mx.example.org
60   # optional: Files in /etc/postfix ($FILE.crt, $FILE.key) to use as client certificates when
61   # relaying to the relay_host.
62   relay_client_cert: client_cert
63
64 apache:
65   default_host: www.example.org
66
67 prosody:
68   host: jabber.example.org
69   admins:
70   - admin@jabber.example.org
71
72 bind:
73   # which IPv4 address to listen on
74   listen: 203.0.113.1
75   # optional: which IPv4 address to listen on
76   listen_v6: 2001:DB8::1
77
78 etherpad:
79   domain: pad.example.org
80   default_text: "Welcome to Etherpad!\\n\\nThis pad text is synchronized as you type, so that everyone viewing this page sees the same text. This allows you to collaborate seamlessly on documents!\\n\\nGet involved with Etherpad at http:\/\/etherpad.org\\n"
81   mysql_password: $RANDOM
82   admin_password: $RANDOM