fix(email): lower the maxMessages sent via nodemailer before creating a new connection

fixes #11575
This commit is contained in:
Danny Coates 2022-01-11 13:11:04 -08:00
Родитель ec4e980f6a
Коммит 3faeca26c6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4C442633C62E00CB
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -257,6 +257,7 @@ module.exports = function (log, config, bounces) {
ignoreTLS: !mailerConfig.secure,
port: mailerConfig.port,
pool: true,
maxMessages: 10,
};
if (mailerConfig.user && mailerConfig.password) {