(self, arg)
| 970 | self.push('550 No access for you!') |
| 971 | |
| 972 | def smtp_QUIT(self, arg): |
| 973 | if self.quit_response is None: |
| 974 | super(SimSMTPChannel, self).smtp_QUIT(arg) |
| 975 | else: |
| 976 | self.push(self.quit_response) |
| 977 | self.close_when_done() |
| 978 | |
| 979 | def smtp_MAIL(self, arg): |
| 980 | if self.mail_response is None: |
nothing calls this directly
no test coverage detected