neomutt
neomutt copied to clipboard
✉️ Teaching an Old Dog New Tricks -- IRC: #neomutt on irc.libera.chat
## NeoMutt Version ``` NeoMutt 20241114-124-aed421 Copyright (C) 2015-2024 Richard Russon and friends NeoMutt comes with ABSOLUTELY NO WARRANTY; for details type 'neomutt -vv'. NeoMutt is free software, and you...
Hi, I am using mutt_oauth2.py from the neomutt project on debian 13 to log in to my university outlook account. I am skipping gpg encryption for now during the experiment...
# Context - I use proton mail - I am hosting my own mail bridge on a NAS using the protonmail-bridge docker container - I am trying to connect to...
* **What does this PR do?** Refactors the monolithic `mutt_parse_hook()` function (223 lines) into 8 specialized parsers organized by parameter type and parsing requirements: - **Global hooks** (`mutt_parse_hook_global`): startup, shutdown,...
* **What does this PR do?** Adds a `hooks` command that displays all configured hooks in a pager, grouped by type. Similar to how `set` shows all config variables and...
This is a **work in progress**. It works, but needs a bit more tidying. ## Intro A **Menu** is defined as a set of **Functions** and associated **Keybindings**. e.g. -...
This is a **breaking change** to the Lua Scripting. Fortunately, nobody uses it because it's not even documented. This is a **work-in-progress**. It's hacked together, but it works. Importantly, I...
* **What does this PR do?** Adds a `help` field to `struct Command` and provides one-line help strings for all 92 commands. **Changes:** - Added `const char *help` field to...
* **What does this PR do?** Replaces the BSD queue-based `MuttWindowList` (TAILQ_HEAD) with NeoMutt's native `MuttWindowArray` (ARRAY_HEAD) for managing window hierarchies. **Core Changes:** - Removed `TAILQ_ENTRY` from `MuttWindow` struct -...
* **What does this PR do?** Adds `ARRAY_INSERT()` macro to insert elements at arbitrary positions in arrays. This addresses the inefficient workaround pattern identified in PR #4702 where inserting at...