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