Code
·
26 lines
·
690 bytes
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{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"MailSharp.MailClient.Services.ImapService": "Debug"
}
},
"AllowedHosts": "*",
"MailSettings": {
"MessageListFetchLimit": 200,
"MessageListCacheTtlMinutes": 5,
"ContactMailSearchCacheTtlMinutes": 5,
"MessageListPageSize": 20,
"ContactMailsPageSize": 20,
"SessionIdleTimeoutHours": 24,
"DataProtectionKeysPath": "C:\\Data\\DataProtection\\Keys",
"DefaultImapServer": "127.0.0.1",
"DefaultImapPort": 993,
"DefaultImapSecurity": "SslTls",
"DefaultSmptServer": "127.0.0.1",
"DefaultSmtpPort": 465,
"DefaultSmtpSecurity": "SslTls",
"LogRetentionDays": 30
}
}