From 07cc9bb0707eed1bf9024728b1cade7900a4441b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tangi=20Mend=C3=A8s?= Date: Mon, 27 Jan 2025 11:22:43 +0100 Subject: [PATCH] fix: test email secure --- api/src/controllers/mail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/controllers/mail.js b/api/src/controllers/mail.js index 6422a130..74af8b96 100644 --- a/api/src/controllers/mail.js +++ b/api/src/controllers/mail.js @@ -10,7 +10,7 @@ const { mailLimiter } = require("../middlewares/rateLimit"); router.post( "/", // todo : activate once the app is deployed - // validateHMAC, + validateHMAC, mailLimiter, catchErrors(async (req, res) => { let { to, replyTo, replyToName, subject, text, html } = req.body || {};