qnikst / HaskellNet

Haskell library which provides client support for POP3, SMTP, and IMAP protocols.
Other
87 stars 54 forks source link

Added support for IMAP move operation #99

Closed mpscholten closed 3 months ago

mpscholten commented 3 months ago

This implement the IMAP move operation that is supported by some mail servers.

Usage:

-- Move email uid to mailbox "MyMailbox"
IMAP.move con uid "MyMailbox"

(While it might not be easy to test, I have used this function on my local fork in prod for a year)

mpscholten commented 3 months ago

@qnikst could you take a look at this as well? (and also the other PRs?) :)

qnikst commented 3 months ago

I've checked RFC, looks great! Thanks