blob: 2262bf3a3997b03fae610740609e0c48724497d0 (
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
|
---
mon_domain: mon.liz.coffee
mon_base: "{{ swarm_base }}/mon"
public_resolver: "1.1.1.1"
prometheus_domain: prometheus.liz.coffee
email_accounts:
- username: "{{ mmtc1_username }}"
email: "{{ mmtc1_username }}@mistymountainstherapy.com"
password: "{{ mmtc1_password }}"
host: "mail.mistymountainstherapy.com"
- username: "{{ mmtc2_username }}"
email: "{{ mmtc2_username }}@mistymountainstherapy.com"
password: "{{ mmtc2_password }}"
host: "mail.mistymountainstherapy.com"
- username: "{{ lizc1_username }}"
email: "{{ lizc1_username }}@{{ domain }}"
password: "{{ lizc1_password }}"
host: "{{ mail_domain }}"
- username: "{{ lizc2_username }}"
email: "{{ lizc2_username }}@{{ domain }}"
password: "{{ lizc2_password }}"
host: "{{ mail_domain }}"
email_tests:
- name: "mmt_to_mmt"
from: "{{ mmtc1_username }}@mistymountainstherapy.com"
to: "{{ mmtc2_username }}@mistymountainstherapy.com"
- name: "mmt_to_liz"
from: "{{ mmtc1_username }}@mistymountainstherapy.com"
to: "{{ lizc2_username }}@{{ domain }}"
- name: "liz_to_mmt"
from: "{{ lizc1_username }}@{{ domain }}"
to: "{{ mmtc2_username }}@mistymountainstherapy.com"
- name: "liz_to_liz"
from: "{{ lizc2_username }}@{{ domain }}"
to: "{{ lizc1_username }}@{{ domain }}"
|