Fixed bug that prevented sending via builtin zone mta. This but was introduced today.
This commit is contained in:
parent
f7b5aef0e3
commit
f8ef57f164
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ async function _createTransport(sendConfiguration) {
|
|||
}
|
||||
};
|
||||
|
||||
if (mailerType === MailerType.ZONE_MTA && mailerSettings.zoneMTAType === ZoneMTAType.BUILTIN) {
|
||||
if (mailerType === MailerType.ZONE_MTA && mailerSettings.zoneMtaType === ZoneMTAType.BUILTIN) {
|
||||
transportOptions.host = config.builtinZoneMTA.host;
|
||||
transportOptions.port = config.builtinZoneMTA.port;
|
||||
transportOptions.secure = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue