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

📥 An IMAP library for clients and servers

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

can not clear the trash. I don't know how to do it. ``` package main import ( "fmt" "github.com/emersion/go-imap" imapID "github.com/emersion/go-imap-id" "github.com/emersion/go-imap/client" "github.com/yyle88/done" softjson "gitlab.yyle.com/golang/uvyyle.git/utils_encoding/utils_encoding_json/utils_neatjson/utils_neatjson_soft" "gitlab.yyle.com/golang/uvyyle.git/utils_os/utils_os_args" ) // 代码参考:https://github.com/richelieu-yang/chimera/blob/288cbdd148693d4962ff7fc544fd3f3cf6ccba89/src/mailKit/imap.go func...

See https://www.rfc-editor.org/rfc/rfc4978.html - [ ] Correctly wrap TLS conn - [ ] Interactions with STARTTLS

This PR fixes the issue described in #611. If the server does not respond to the `Support` calls in the New() function, the function blocks infinitely. Even if we supply...

Go-Imap 1.2.1 seems to hang forever in some cases even though we set a `Timeout` (and `Deadline`) in `net.Dialer`. The IMAP-Server we are connecting to (`imap.office365.com`) seems to just let...

If a bad config file is provided to Dovecot, the `net.Pipe` will not be closed and the test hangs.

bug

I have seen this error when I try to connect to an imap server: ``` in response-data: imapwire: expected number, got "]" exit status 1 ``` I suspect there is...

client
non-standard

If the server only supports IMAP4rev2 without IMAP4rev1, or if a client sends ENABLE IMAP4rev2, then all of the UTF-7 encoding/decoding should be disabled.

Although RFC states an IDLE timeout of 29 minutes, many IMAP servers timeout much earlier than that. Other forums point to around 10-13 minutes as a 'sweet spot'. This PR...

I am using the general example to Dial and Login to the IMAP server. I can DialTLS but I am failing to Login. Code: ``` c, err := imapclient.DialTLS(imapServer, options)...

bug
client