Basic authentication via LOGIN command.
(self, imapobj)
| 193 | return retval |
| 194 | |
| 195 | def __loginauth(self, imapobj): |
| 196 | """ Basic authentication via LOGIN command.""" |
| 197 | |
| 198 | self.ui.debug('imap', 'Attempting IMAP LOGIN authentication') |
| 199 | imapobj.login(self.username, self.__getpassword()) |
| 200 | |
| 201 | def __plainhandler(self, response): |
| 202 | """Implements SASL PLAIN authentication, RFC 4616, |
no test coverage detected