mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-17 00:15:28 +02:00
🐛 Remove specific ciphers in tls config (#1065)
This causes issues with my SMTP servers
This commit is contained in:
parent
90f0d90fab
commit
2192ef18cb
1 changed files with 3 additions and 7 deletions
|
@ -169,13 +169,9 @@ export class EmailClient {
|
|||
pass: process.env["SMTP_PWD"],
|
||||
}
|
||||
: undefined,
|
||||
tls:
|
||||
process.env["SMTP_TLS_ENABLED"] === "true"
|
||||
? {
|
||||
ciphers: "SSLv3",
|
||||
rejectUnauthorized: false,
|
||||
}
|
||||
: undefined,
|
||||
tls: {
|
||||
rejectUnauthorized: process.env["SMTP_TLS_ENABLED"] === "true",
|
||||
},
|
||||
});
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue