mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-18 00:37:27 +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"],
|
pass: process.env["SMTP_PWD"],
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
tls:
|
tls: {
|
||||||
process.env["SMTP_TLS_ENABLED"] === "true"
|
rejectUnauthorized: process.env["SMTP_TLS_ENABLED"] === "true",
|
||||||
? {
|
},
|
||||||
ciphers: "SSLv3",
|
|
||||||
rejectUnauthorized: false,
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue