diff options
-rw-r--r-- | changes/bug_fix_ret_codes | 1 | ||||
-rw-r--r-- | src/leap/mx/check_recipient_access.py | 8 |
2 files changed, 6 insertions, 3 deletions
diff --git a/changes/bug_fix_ret_codes b/changes/bug_fix_ret_codes new file mode 100644 index 0000000..54778db --- /dev/null +++ b/changes/bug_fix_ret_codes @@ -0,0 +1 @@ + o Fix return codes for check recipient access. Fixes #3356.
\ No newline at end of file diff --git a/src/leap/mx/check_recipient_access.py b/src/leap/mx/check_recipient_access.py index 0520c7c..b80ccfd 100644 --- a/src/leap/mx/check_recipient_access.py +++ b/src/leap/mx/check_recipient_access.py @@ -29,11 +29,13 @@ from leap.mx.alias_resolver import AliasResolverFactory class LEAPPostFixTCPMapserverAccess(postfix.PostfixTCPMapServer): def _cbGot(self, value): + # For more info, see: + # http://www.postfix.org/tcp_table.5.html + # http://www.postfix.org/access.5.html if value is None: - self.sendCode(500, postfix.quote("NOT FOUND SORRY")) + self.sendCode(500, postfix.quote("REJECT")) else: - # We do not send the value in this case - self.sendCode(200) + self.sendCode(200, postfix.quote("OK")) class CheckRecipientAccessFactory(AliasResolverFactory): |