-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.example.json
More file actions
53 lines (49 loc) · 1.48 KB
/
config.example.json
File metadata and controls
53 lines (49 loc) · 1.48 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
{
"hibpApiKey": "",
"domains": [
"domain.com"
],
"latestBreach": "VTech",
"notifiedBreaches": [
"Spytech",
"Adobe",
"Badoo",
"Kickstarter",
"MyFitnessPal"
],
"smtp": {
"sender": "mailer@domain.com",
"host": "smtp.domain.com",
"port": 25,
"secure": false,
"starttls": true,
"user": "username",
"pass": "password"
},
"ignore": {
"unverified": false,
"fabricated": false,
"sensitive": false,
"retired": false,
"spamList": false,
"malware": false
},
"email": {
"colors": {
"background": "#ff8000",
"text": "#ffffff"
},
"subject": "Your account might have been compromised",
"body": {
"header": "Your account might have been compromised",
"texts": [
"In a recent scan, we found that your email address was mentioned in a recent breach of user information.",
"This does not necessarily mean that your password has been compromised, but for security reasons we do recommend that you change it.",
"For more information about the breach, click one of the links next to the relevant breaches below."
],
"previous_breach_texts": [
"Your account has also been in previous, older breaches. You can find a complete list below."
]
}
}
}