go-imap icon indicating copy to clipboard operation
go-imap copied to clipboard

IMAP4rev1 Client for Go

Results 13 go-imap issues
Sort by recently updated
recently updated
newest added

This IMAP library fails for Microsoft Exchange servers because of the hardcoded UTF-8 charset: `imap: unexpected completion status (\"NHGVU5 NO [BADCHARSET (US-ASCII)] The specified charset is not supported.\")"` I've removed...

Can you please tell me how to get only UNREADed (UNSEEN) emails Tried some methiod .. but did not get any successful result :(

What is the directory path that contains the messages

I'm having issues connecting to `mail.privateemail.com`, I'm using the same configuration that mbsync and others use to retrieve email from the server and mbsync works without issues. The relevant code...

Signed-off-by: Yvonnick Esnault

Here's a sample code: ``` idleChannel := make(chan int8) for { interrupted := false log.Printf("before idle\n"); _, idleErr := c.Idle() log.Printf("after idle %v\n", idling); go func() { log.Printf("receiving data\n"); c.Recv(-1)...

Not sure how to categorise this, but currently the IMAP client is spewing all kinds of warnings like such: `imap/client: 2016/10/21 17:31:52 response has not been handled: &{* OK HIGHESTMODSEQ...

CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID ENABLE IDLE STARTTLS LOGINDISABLED I can't use Login function. And I don't understand how to use Authenticate Thunderbird connects to server by STARTTLS using...

It would be useful for debugging to have the built-in debug log display the progress of a data literal send over time, assuming this is even possible. Perhaps only in...

How do I parse BODYSTRUCTURE, as I want to find the attachments.. Using ``` go cmd, err := imap.Wait( client.UIDFetch(uidlist, "FLAGS", "INTERNALDATE", "RFC822.SIZE", "RFC822.HEADER", "BODYSTRUCTURE") ) ``` and then, ```...