Skip to content

Commit 3a16488

Browse files
committed
fix: insecure config
1 parent 9ae652a commit 3a16488

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- Adds `TLSConfig` to SMTP settings.
1313
- `TLSConfig` is always passed to gomail so that it can be used when gomail uses `STARTTLS` to upgrade the connection to TLS. - https://github.com/supertokens/supertokens-golang/issues/392
14+
- Not setting `InsecureSkipVerify` to `true` in the SMTP settings because it is not recommended to use it in production.
1415

1516
## [0.17.3] - 2023-12-12
1617

ingredients/emaildelivery/main.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,10 @@ func SendSMTPEmail(settings SMTPSettings, content EmailContent) error {
5858
}
5959

6060
d := gomail.NewDialer(settings.Host, settings.Port, username, settings.Password)
61-
6261
if settings.TLSConfig != nil {
6362
d.TLSConfig = settings.TLSConfig
6463
} else {
65-
d.TLSConfig = &tls.Config{InsecureSkipVerify: true, ServerName: settings.Host}
64+
d.TLSConfig = &tls.Config{ServerName: settings.Host}
6665
}
6766

6867
if settings.Secure {

0 commit comments

Comments
 (0)