Describe the problem/error/question
Self-Signed certificated error when using Send ans Wait for Response Email node becuase no “Ignore SSL Issues” in node option, meanwhile the “Send an Email” node do exists
What is the error message (if any)?
Please share your workflow
(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)
Share the output returned by the last node
Information on your n8n setup
- n8n version: 2.9.2
- Database (default: SQLite): SQLite
- n8n EXECUTIONS_PROCESS setting (default: own, main): own
- Running n8n via (Docker, npm, n8n cloud, desktop app): Docker
- Operating system:
1 Like
Hello @Norton_Wong - please share the workflows code - and any errors or screenshots to help us to assist you better.
(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)
Hi @Norton_Wong Welcome!
You can try mounting your self signed CA certificate into the n8n container at opt/custom-certificates and then try fixing the current permissions by:
docker exec --user 0 n8n chown -R 1000:1000 /opt/custom-certificates
the certificate should be in PEM format for it to get picked up, let me know if that works as this seems like an infrastructural issue rather then node issue.
the ‘send and wait’ node doesn’t have its own ssl bypass yet — check the smtp credential settings first, there’s usually an ‘ignore ssl issues’ toggle there that applies to all nodes using that credential. if you’re on docker another option is adding the cert to the container’s system trust store, cleaner long-term fix. what smtp server is it?