Merge pull request #58 from JocelynDelalande/default-to-587-starttls
default smtp to port=587 and security=starttls
This commit is contained in:
commit
335caa4887
@ -158,8 +158,8 @@ also can moderate (=activate or delete) comments. Don't forget to configure
|
||||
username =
|
||||
password =
|
||||
host = localhost
|
||||
port = 465
|
||||
security = ssl
|
||||
port = 587
|
||||
security = starttls
|
||||
to =
|
||||
from =
|
||||
|
||||
|
@ -78,12 +78,12 @@ password =
|
||||
host = localhost
|
||||
|
||||
# SMTP port
|
||||
port = 465
|
||||
port = 587
|
||||
|
||||
# use a secure connection to the server, possible values: "none", "starttls"
|
||||
# or "ssl". Python 2.X probably does not validate certificates (needs
|
||||
# research). But you should use a dedicated email account anyways.
|
||||
security = ssl
|
||||
security = starttls
|
||||
|
||||
# recipient address, e.g. your email address
|
||||
to =
|
||||
|
@ -117,7 +117,7 @@ class Config:
|
||||
"reload = off", "profile = off",
|
||||
"[smtp]",
|
||||
"username = ", "password = ",
|
||||
"host = localhost", "port = 465", "security = ssl",
|
||||
"host = localhost", "port = 587", "security = tls",
|
||||
"to = ", "from = ",
|
||||
"[guard]",
|
||||
"enabled = true",
|
||||
|
Loading…
Reference in New Issue
Block a user