-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.sample.json
More file actions
59 lines (49 loc) · 1.45 KB
/
config.sample.json
File metadata and controls
59 lines (49 loc) · 1.45 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
{
"appName": "FERify",
"appWebsite": "https://ferify.example.com",
"language": "en",
"smtpHost": "smtp.example.com",
"smtpPort": 587,
"smtpUsername": "bot@example.com",
"smtpPassword": "password1234",
"smtpFromName": "FERify Bot",
"smtpFromAddress": null,
"imapHost": "imap.example.com",
"imapPort": 993,
"imapLog": false,
"imapSecure": true,
"imapUsername": "bot@example.com",
"imapPassword": "password1234",
"aliasHelp": "bot@brownbird.eu",
"aliasUnlock": "unlock.bot@example.com",
"aliasBlacklist": "blacklist.bot@example.com",
"aliasUnblacklist": "unblacklist.bot@example.com",
"supportEmail": "support@example.com",
"databaseHost": "127.0.0.1",
"databasePort": 3306,
"databaseName": "ferify_db",
"databaseUsername": "username",
"databasePassword": "password",
"hashPepper": "YOUR_LONG_RANDOMLY_GENERATED_STRING",
"verificationCodeValidSeconds": 900,
"emailRegex": "[a-z.]@brownbird\\.eu",
"admins": [
"YOUR_DISCORD_USER_ID"
],
"discordBotToken": "BOT_TOKEN_GOES_HERE",
"discrodClientId": "BOT_CLIENT_ID_GOES_HERE",
"discordColors" : {
"success" : "#5efc03",
"error" : "#ff0000",
"neutral" : "#fce303"
},
"discordHelpEmbedCommands" : [
"help",
"register",
"verify",
"lock",
"status",
"set_verified_role",
"set_unverified_role"
]
}