[PR #107] [MERGED] Imap bug fixes #146

Closed
opened 2026-03-03 01:20:09 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/d99kris/nmail/pull/107
Author: @d99kris
Created: 8/6/2022
Status: Merged
Merged: 8/6/2022
Merged by: @d99kris

Base: masterHead: imap-bug-fixes


📝 Commits (9)

  • b918e4d fixes #105 - handle non-ascii (utf7) encoded folder names
  • c833c76 fixes #106 - handle unquoted commas in sender/recipient names
  • e1073d3 separate uid and flags cache db files from headers cache
  • 3adfa5c fix to only get folders the first time entering idle
  • 1ee1bab fetch flags when entering/exiting imap idle state
  • e44e723 fixes #80 - improved status progress reporting during full sync
  • a9904f1 add support for composing copy of current email with shift-c
  • c71d6ae add support for floating point percentage progress reporting
  • 483ab35 code formatting

📊 Changes

27 files changed (+999 additions, -153 deletions)

View changed files

📝 CMakeLists.txt (+3 -1)
📝 README.md (+16 -3)
ext/cyrus-imap/COPYRIGHT (+59 -0)
ext/cyrus-imap/lib/imapurl.c (+352 -0)
ext/cyrus-imap/lib/imapurl.h (+86 -0)
📝 src/addressbook.cpp (+1 -1)
📝 src/cacheutil.cpp (+2 -2)
📝 src/encoding.cpp (+21 -1)
📝 src/encoding.h (+3 -1)
📝 src/header.cpp (+12 -12)
📝 src/imap.cpp (+39 -5)
📝 src/imap.h (+3 -1)
📝 src/imapcache.cpp (+76 -23)
📝 src/imapcache.h (+5 -1)
📝 src/imapindex.cpp (+5 -5)
📝 src/imapindex.h (+1 -1)
📝 src/imapmanager.cpp (+128 -32)
📝 src/imapmanager.h (+20 -5)
📝 src/main.cpp (+3 -0)
📝 src/nmail.1 (+1 -1)

...and 7 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/d99kris/nmail/pull/107 **Author:** [@d99kris](https://github.com/d99kris) **Created:** 8/6/2022 **Status:** ✅ Merged **Merged:** 8/6/2022 **Merged by:** [@d99kris](https://github.com/d99kris) **Base:** `master` ← **Head:** `imap-bug-fixes` --- ### 📝 Commits (9) - [`b918e4d`](https://github.com/d99kris/nmail/commit/b918e4dc412638c27e6a161576ca619b7a3098f4) fixes #105 - handle non-ascii (utf7) encoded folder names - [`c833c76`](https://github.com/d99kris/nmail/commit/c833c762b44917d6857457a974577562ed80fd10) fixes #106 - handle unquoted commas in sender/recipient names - [`e1073d3`](https://github.com/d99kris/nmail/commit/e1073d3cc39d551400855877cf01939dafaf5576) separate uid and flags cache db files from headers cache - [`3adfa5c`](https://github.com/d99kris/nmail/commit/3adfa5cc4a5f0982033724334c4beae04955b7af) fix to only get folders the first time entering idle - [`1ee1bab`](https://github.com/d99kris/nmail/commit/1ee1bab902d2bd15ebacd85daa68ad0e5e0545b6) fetch flags when entering/exiting imap idle state - [`e44e723`](https://github.com/d99kris/nmail/commit/e44e7237c7d7281739c090e738126a49e3a913c2) fixes #80 - improved status progress reporting during full sync - [`a9904f1`](https://github.com/d99kris/nmail/commit/a9904f1a47eb1460871af488ca8f011748e1b683) add support for composing copy of current email with shift-c - [`c71d6ae`](https://github.com/d99kris/nmail/commit/c71d6aef9a9acf735b4d571c279a0e7a605f6f9a) add support for floating point percentage progress reporting - [`483ab35`](https://github.com/d99kris/nmail/commit/483ab351fd7e5e541bce828f1a6f8d21d008aa23) code formatting ### 📊 Changes **27 files changed** (+999 additions, -153 deletions) <details> <summary>View changed files</summary> 📝 `CMakeLists.txt` (+3 -1) 📝 `README.md` (+16 -3) ➕ `ext/cyrus-imap/COPYRIGHT` (+59 -0) ➕ `ext/cyrus-imap/lib/imapurl.c` (+352 -0) ➕ `ext/cyrus-imap/lib/imapurl.h` (+86 -0) 📝 `src/addressbook.cpp` (+1 -1) 📝 `src/cacheutil.cpp` (+2 -2) 📝 `src/encoding.cpp` (+21 -1) 📝 `src/encoding.h` (+3 -1) 📝 `src/header.cpp` (+12 -12) 📝 `src/imap.cpp` (+39 -5) 📝 `src/imap.h` (+3 -1) 📝 `src/imapcache.cpp` (+76 -23) 📝 `src/imapcache.h` (+5 -1) 📝 `src/imapindex.cpp` (+5 -5) 📝 `src/imapindex.h` (+1 -1) 📝 `src/imapmanager.cpp` (+128 -32) 📝 `src/imapmanager.h` (+20 -5) 📝 `src/main.cpp` (+3 -0) 📝 `src/nmail.1` (+1 -1) _...and 7 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 01:20:09 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nmail#146
No description provided.