(self)
| 58 | |
| 59 | class smtpServerPyBitmessage(smtpd.SMTPServer): |
| 60 | def handle_accept(self): |
| 61 | pair = self.accept() |
| 62 | if pair is not None: |
| 63 | conn, addr = pair |
| 64 | # print >> DEBUGSTREAM, 'Incoming connection from %s' % repr(addr) |
| 65 | self.channel = smtpServerChannel(self, conn, addr) |
| 66 | |
| 67 | def send(self, fromAddress, toAddress, subject, message): |
| 68 | status, addressVersionNumber, streamNumber, ripe = decodeAddress(toAddress) |
nothing calls this directly
no test coverage detected