Skip to content

Commit

Permalink
ZMS-189 (#41)
Browse files Browse the repository at this point in the history
* fix logical error with tempfail

* fix subject issue when using api. add debugJson to gelf

* safer delete with check

* Add better SMTP error message

* make message shorter

* comment

* check for aliases, fix normalization

* comment refactor

* addrview constists of unameview + @ + domain. Fix bugs

* if DB error just return from plugin with no error
  • Loading branch information
NickOvt authored Nov 19, 2024
1 parent 3a28bbe commit b00782f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,8 @@ module.exports.init = async app => {
_authenticated_user: authenticatedUser,
_err_json: JSON.stringify(err)
});
throw app.reject(envelope, 'tempfail', messageinfo, 'Temporary error, please try again later.');
// throw app.reject(envelope, 'tempfail', messageinfo, 'Temporary error, please try again later.');
return;
}

// construct Authorization header
Expand Down

0 comments on commit b00782f

Please sign in to comment.