(self)
| 113 | to the message object |
| 114 | """ |
| 115 | def readAuth(self): |
| 116 | line = self.readLine() |
| 117 | authMethod = self.server.authHandler.matchMethod(line) |
| 118 | if (authMethod == None): |
| 119 | raise ValueError("Unsupported Authentication Type requested by client: " + line) |
| 120 | |
| 121 | self.auth = authMethod(self, line) |
| 122 | username = self.auth.getUsername() |
| 123 | password = self.auth.getPassword() |
| 124 | self.message.setLogin(username, password) |
| 125 | |
| 126 | """ |
| 127 | Reads the senders mail address and passes it to the message object |
no test coverage detected