mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-25 09:00:27 +00:00
smtp: set default port to 587
Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
parent
c437f0ad76
commit
b94ec7597c
2 changed files with 2 additions and 2 deletions
|
@ -448,7 +448,7 @@ func Init() {
|
||||||
},
|
},
|
||||||
SMTPConfig: smtp.Config{
|
SMTPConfig: smtp.Config{
|
||||||
Host: "",
|
Host: "",
|
||||||
Port: 25,
|
Port: 587,
|
||||||
From: "",
|
From: "",
|
||||||
User: "",
|
User: "",
|
||||||
Password: "",
|
Password: "",
|
||||||
|
|
|
@ -404,7 +404,7 @@
|
||||||
},
|
},
|
||||||
"smtp": {
|
"smtp": {
|
||||||
"host": "",
|
"host": "",
|
||||||
"port": 25,
|
"port": 587,
|
||||||
"from": "",
|
"from": "",
|
||||||
"user": "",
|
"user": "",
|
||||||
"password": "",
|
"password": "",
|
||||||
|
|
Loading…
Reference in a new issue