Send password, return response (response includes message count, mailbox size). NB: mailbox is locked by server from here to 'quit()'
(self, pswd)
| 211 | |
| 212 | |
| 213 | def pass_(self, pswd): |
| 214 | """Send password, return response |
| 215 | |
| 216 | (response includes message count, mailbox size). |
| 217 | |
| 218 | NB: mailbox is locked by server from here to 'quit()' |
| 219 | """ |
| 220 | return self._shortcmd('PASS %s' % pswd) |
| 221 | |
| 222 | |
| 223 | def stat(self): |