Add ignore certificate validity check for Nodemailer #501

Closed
opened 2026-02-04 19:57:53 +03:00 by OVERLORD · 2 comments
Owner

Originally created by @addsky on GitHub (May 7, 2024).

Problem:
Even when specifying the "SMTP_secure: false" parameter in the configuration file, the connection to the local mail server gives the error "unable to verify the first certificate".

I would like to add the following parameter to the nodemailer connection:

tls: {
            // do not fail on invalid certs
            rejectUnauthorized: false
        },
Originally created by @addsky on GitHub (May 7, 2024). Problem: Even when specifying the "SMTP_secure: false" parameter in the configuration file, the connection to the local mail server gives the error "unable to verify the first certificate". I would like to add the following parameter to the nodemailer connection: ``` tls: { // do not fail on invalid certs rejectUnauthorized: false }, ```
OVERLORD added the enhancement label 2026-02-04 19:57:53 +03:00
Author
Owner

@meltyshev commented on GitHub (May 7, 2024):

Hi! it'd be really nice to have this parameter.

@meltyshev commented on GitHub (May 7, 2024): Hi! it'd be really nice to have this parameter.
Author
Owner

@PsychoBroccoli commented on GitHub (Sep 23, 2024):

+1

@PsychoBroccoli commented on GitHub (Sep 23, 2024): +1
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/planka#501