-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathclient.json5
More file actions
77 lines (68 loc) · 1.68 KB
/
Copy pathclient.json5
File metadata and controls
77 lines (68 loc) · 1.68 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
$schema: "../src/main/resources/schema/client.schema.json",
// Default MX list and port to attempt to deliver the email to.
mx: [
"127.0.0.1"
],
port: 25,
// Default TLS enablement.
tls: true,
// Default supported protocols and ciphers.
protocols: [
"TLSv1.2", "TLSv1.3"
],
ciphers: [
"TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384",
"TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384",
"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
"TLS_DHE_RSA_WITH_AES_256_GCM_SHA384",
"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384",
"TLS_DHE_DSS_WITH_AES_256_GCM_SHA384",
"TLS_DHE_RSA_WITH_AES_256_CBC_SHA256",
"TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256",
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
"TLS_DHE_RSA_WITH_AES_128_GCM_SHA256",
"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256",
"TLS_DHE_RSA_WITH_AES_128_CBC_SHA256"
],
// Default EHLO to use.
ehlo: "mimecast.net",
// Default sender and recipients.
mail: "robin@mimecast.net",
rcpt: [
"robin@example.com"
],
// Default asserting configuration.
assertions: {
protocolFails: true, // If protocol assertion fails, fail test/exit gracefully.
verifyFails: true // If external verify checks fail, fail test/exit gracefully.
},
// Predefined delivery routes to use instead of MX and port.
routes: [
{
name: "local",
mx: [
"127.0.0.1"
],
port: 25
},
{
name: "com",
mx: [
"example.com"
],
port: 25
},
{
name: "net",
mx: [
"example.net"
],
port: 465,
auth: true,
user: "tony@example.com",
pass: "giveHerTheRing"
}
]
}