From 26e880ed78b4f41ff5a058892e153aad97134c92 Mon Sep 17 00:00:00 2001 From: Miguel de Barros Date: Mon, 5 Oct 2020 12:55:06 +0200 Subject: [PATCH 1/2] generalizing smtp config --- config/default.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/default.json b/config/default.json index 51505a2..6b7145f 100644 --- a/config/default.json +++ b/config/default.json @@ -1,15 +1,15 @@ { "emailSettings": { "smtpConfig": { - "host": "smtp-relay.sendinblue.com", + "host": "test.smpt.server", "port": 587, - "secureConnection": false, + "secureConnection": true, "tls": { - "ciphers": "SSLv3" - }, + "ciphers":"SSLv3" + }, "auth": { - "user": "valentin.genev@modusbox.com", - "pass": "NdMCVgq5HROtDGI4" + "user": "user", + "pass": "password" } } }, From f34b85e15aaade9074f17eee11cb3f9daa120927 Mon Sep 17 00:00:00 2001 From: Miguel de Barros Date: Mon, 5 Oct 2020 12:57:18 +0200 Subject: [PATCH 2/2] Fixed space typo in config --- config/default.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/default.json b/config/default.json index 6b7145f..cce32e7 100644 --- a/config/default.json +++ b/config/default.json @@ -5,7 +5,7 @@ "port": 587, "secureConnection": true, "tls": { - "ciphers":"SSLv3" + "ciphers": "SSLv3" }, "auth": { "user": "user",