(self, line)
| 30 | @type line: str |
| 31 | """ |
| 32 | def writeLine(self, line): |
| 33 | if (self.server.printLines): |
| 34 | print("S:" + line) |
| 35 | self.connection.sendall((line + '\r\n').encode("ASCII")) |
| 36 | |
| 37 | """ |
| 38 | Handles a new TCP Connection to SMTPServer following SMTP Protocol |
no outgoing calls
no test coverage detected