smtp: set default port to 587

Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
Nicola Murino 2023-08-20 22:32:03 +02:00
parent c437f0ad76
commit b94ec7597c
No known key found for this signature in database
GPG key ID: 935D2952DEC4EECF
2 changed files with 2 additions and 2 deletions

View file

@ -448,7 +448,7 @@ func Init() {
}, },
SMTPConfig: smtp.Config{ SMTPConfig: smtp.Config{
Host: "", Host: "",
Port: 25, Port: 587,
From: "", From: "",
User: "", User: "",
Password: "", Password: "",

View file

@ -404,7 +404,7 @@
}, },
"smtp": { "smtp": {
"host": "", "host": "",
"port": 25, "port": 587,
"from": "", "from": "",
"user": "", "user": "",
"password": "", "password": "",