correo/src/Correo/appsettings.json

48 lines
1.0 KiB
JSON
Raw Normal View History

2023-01-17 23:14:05 +02:00
{
2023-01-18 01:01:25 +02:00
"Urls": "http://*:5005",
"Workspace": "workspace",
"ConnectionStrings": {
"DatabaseConnection": "Data Source={Workspace}\\correo.db"
},
"Serilog": {
"MinimumLevel": {
2023-01-18 02:12:35 +02:00
"Default": "Warning",
2023-01-18 01:01:25 +02:00
"Override": {
"Microsoft": "Information"
}
2023-01-17 23:14:05 +02:00
}
},
2023-01-18 02:12:35 +02:00
"AllowedHosts": "*",
"Messaging": {
"Enabled": false,
"TopicPrefix": "HomeLab.",
"Source": "Correo",
"Nats": {
"natsUrl": "nats://<host>:4222",
"cluster": "<cluster>",
"clientId": "Correo",
"qGroup": "Correo",
"durableName": "durable"
}
2023-01-18 03:20:57 +02:00
},
"DefaultSender": {
"Address": "noreply@homelab.com",
"Name": "HomeLab"
},
2023-01-20 19:23:28 +02:00
"SmtpMediator": ".NET", //.NET, MailKit, SendGrid
2023-01-18 03:20:57 +02:00
"SmtpClient": {
"Server": "smtp.gmail.com",
"Port": "587",
2023-01-19 19:45:00 +02:00
"UseAuthentication": true,
2023-01-18 03:20:57 +02:00
"Authentication": {
"UserName": "<account>@gmail.com",
"Domain": "",
"Password": "********"
},
2023-01-19 18:21:35 +02:00
"EnableSsl": true,
2023-01-18 03:20:57 +02:00
"TrustServer": false
2023-01-20 19:23:28 +02:00
},
"SmtpService": {
"ApiKey": "xxxxxxxxxxx"
2023-01-18 02:12:35 +02:00
}
2023-01-18 03:20:57 +02:00
}