Send RPOP command to access the mailbox with an alternate user.
(self, user)
| 322 | # optional commands: |
| 323 | |
| 324 | def rpop(self, user): |
| 325 | """Send RPOP command to access the mailbox with an alternate user.""" |
| 326 | return self._shortcmd('RPOP %s' % user) |
| 327 | |
| 328 | |
| 329 | timestamp = re.compile(br'\+OK.[^<]*(<.*>)') |