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