1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-24 15:49:46 +02:00

feat: Ability to disable SMTP certificate verification

Closes #744
This commit is contained in:
Maksim Eltyshev 2024-10-02 14:10:31 +02:00
parent 77c0a5975f
commit db6180025b
5 changed files with 7 additions and 0 deletions

View file

@ -33,6 +33,9 @@ module.exports = function defineSmtpHook(sails) {
user: sails.config.custom.smtpUser,
pass: sails.config.custom.smtpPassword,
},
tls: {
rejectUnauthorized: sails.config.custom.smtpTlsRejectUnauthorized,
},
});
},