feat: support other smtp protocols #39
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "smtp"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -72,3 +72,3 @@
ENABLED = true
FROM = {{ env "GITEA_MAILER_FROM" }}
PROTOCOL = smtps
PROTOCOL = {{ env "GITEA_MAILER_PROTOCOL" }}
This will break new deploys if they don't update their
.env
. We can either figure out a way to make backwards compatible (toolshed/organising#359) or add a warning in the release notes? I guess that would be a breaking change tho 🤔💫
@ -8,6 +8,7 @@ services:
- GITEA_MAILER_ADDR
- GITEA_MAILER_PORT
- GITEA_MAILER_USER
- GITEA_MAILER_PROTOCOL
@decentral1se what about changing this to:
Nice!