mirror of
https://github.com/ovosimpatico/smtp-loadbalancer.git
synced 2026-01-15 16:33:36 -03:00
49 lines
950 B
JSON
49 lines
950 B
JSON
{
|
|
"server": {
|
|
"port": 2525,
|
|
"auth": {
|
|
"user": "admin",
|
|
"pass": "your-secure-password"
|
|
}
|
|
},
|
|
"providers": [
|
|
{
|
|
"name": "Gmail",
|
|
"host": "smtp.gmail.com",
|
|
"port": 465,
|
|
"secure": true,
|
|
"auth": {
|
|
"user": "your-email@gmail.com",
|
|
"pass": "your-app-password"
|
|
},
|
|
"from": "your-email@gmail.com"
|
|
},
|
|
{
|
|
"name": "SendGrid",
|
|
"host": "smtp.sendgrid.net",
|
|
"port": 587,
|
|
"secure": false,
|
|
"auth": {
|
|
"user": "apikey",
|
|
"pass": "your-sendgrid-api-key"
|
|
},
|
|
"from": "noreply@yourdomain.com"
|
|
},
|
|
{
|
|
"name": "Outlook",
|
|
"host": "smtp.office365.com",
|
|
"port": 465,
|
|
"secure": true,
|
|
"auth": {
|
|
"user": "your-email@outlook.com",
|
|
"pass": "your-password"
|
|
},
|
|
"from": "your-email@outlook.com"
|
|
}
|
|
],
|
|
"queue": {
|
|
"maxRetries": 5,
|
|
"retryDelay": 60000
|
|
}
|
|
}
|