This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mcepl
Recipients mcepl
Date 2018-04-22.22:29:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1524436182.1.0.682650639539.issue33336@psf.upfronthosting.co.za>
In-reply-to
Content
When running

    box = IMAP4_SSL(host)
    box.login(user, pass)
    msgs = somehowget_uids_of_messsages_to_move()
    box.uid('MOVE', msgs, 'target')

I get an error "Unknown IMAP4 UID command: MOVE". The problem is that imaplib contains a list Commands of the permitted IMAP commands, and MOVE is not included, even though it is perfectly legal (and quite widely supported) command according to RFC-6851.
History
Date User Action Args
2018-04-22 22:29:42mceplsetrecipients: + mcepl
2018-04-22 22:29:42mceplsetmessageid: <1524436182.1.0.682650639539.issue33336@psf.upfronthosting.co.za>
2018-04-22 22:29:42mcepllinkissue33336 messages
2018-04-22 22:29:41mceplcreate