diff options
author | Reto Brunner <reto@labrat.space> | 2020-09-15 07:07:16 +0200 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-09-15 07:07:16 +0200 |
commit | 84549e917de8b408c62db207757e84cc985facbe (patch) | |
tree | c2767dd8a1514f7a56a0aaeb136dbca20bff2a1f /go.mod | |
parent | 72d81ba6034d31924a346c7c327e38b0db538c53 (diff) | |
download | aerc-84549e917de8b408c62db207757e84cc985facbe.tar.gz |
Update go-imap to latest commit
* return empty reader instead of nil when BODY is found but server returns nil * utf7: fix package doc comment * imap: lower some fields + content disposition keys * remove "should not be called directly" comments and replaced them with links to the GitHub wiki pages * backendutil: Improve Match function * Write NIL for empty ENVELOPE fields * readme: add NAMESPACE extension * server: error when selecting should unselect * Support NIL hierarchy delimiter * backendutil: Implement message size and lines counting * readme: update CI badge to only show status for commits * Fix empty envelope address fields * server: Return proper BAD response for cancelled SASL negotiation * Replace empty string result in ErrStatusResp.Error * Move ErrStatusResp to the root package * Add MailboxInfoUpdate * Fix BodyStructure fields documented as encoded
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/go.mod b/go.mod index 1dacc3b..c9a4aa3 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ require ( github.com/creack/pty v1.1.10 github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964 github.com/ddevault/go-libvterm v0.0.0-20190526194226-b7d861da3810 - github.com/emersion/go-imap v1.0.4 + github.com/emersion/go-imap v1.0.6-0.20200914131512-88f167c1e6f7 github.com/emersion/go-imap-idle v0.0.0-20190519112320-2704abd7050e github.com/emersion/go-maildir v0.2.0 github.com/emersion/go-message v0.12.1-0.20200824204225-9094bd0b8bc0 @@ -38,6 +38,7 @@ require ( golang.org/x/net v0.0.0-20200301022130-244492dfa37a // indirect golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527 // indirect + golang.org/x/text v0.3.3 // indirect google.golang.org/appengine v1.6.5 // indirect gopkg.in/ini.v1 v1.44.0 // indirect gopkg.in/yaml.v2 v2.2.8 // indirect |