Skip to content

Commit

Permalink
fix ciphers use default nodejs ciphers (#595)
Browse files Browse the repository at this point in the history
Co-authored-by: Chris <[email protected]>
  • Loading branch information
mtudury and polonel committed Jun 20, 2023
1 parent b096aa7 commit b6200ca
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/mailer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,7 @@ function createTransporter (callback) {
port: mailSettings.port && mailSettings.port.value ? mailSettings.port.value : 25,
secure: mailSettings.ssl && mailSettings.ssl.value ? mailSettings.ssl.value : false,
tls: {
rejectUnauthorized: false,
ciphers: 'SSLv3'
rejectUnauthorized: false
}
}
if (mailSettings.username && mailSettings.username.value) {
Expand Down

0 comments on commit b6200ca

Please sign in to comment.