-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.json
45 lines (45 loc) · 1.14 KB
/
config.json
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
{
"haraka": {
"received_header": "Frappe Mail Agent",
"nodes": 4,
"host": "${HARAKA_HOST}",
"port": "${HARAKA_PORT}",
"username": "${HARAKA_USERNAME}",
"password": "${HARAKA_PASSWORD}",
"relay_acl_allow": "::1/128\n127.0.0.1/32",
"plugins": {
"inbound": [
"tls",
"headers",
"mailauth",
"inbound_hooks"
],
"outbound": [
"tls",
"haraka-plugin-auth-enc-file",
"headers",
"outbound_hooks"
]
}
},
"rabbitmq": {
"host": "${RABBITMQ_HOST}",
"port": "${RABBITMQ_PORT}",
"virtual_host": "${RABBITMQ_VIRTUAL_HOST}",
"username": "${RABBITMQ_USERNAME}",
"password": "${RABBITMQ_PASSWORD}"
},
"queues": {
"mail::outgoing_mails": {
"max_priority": 3,
"durable": true
}
},
"consumers": {
"mail::outgoing_mails": {
"workers": 4,
"auto_ack": false,
"callback": "sendmail"
}
}
}