neomutt 侧边栏中虚拟邮箱描述的出现

neomutt 侧边栏中虚拟邮箱描述的出现

我开始提出这个问题是因为我找不到答案,但后来我研究了已解决的问题neomutt并找到了一个解决办法,这很简单,但由于它还没有传播到 neomutt 的文档中,我仍然会发布这个问题以及答案。

以下是neomutt我的一个电子邮件帐户的相关配置设置:

# Sidebar mappings
set sidebar_visible = yes
set sidebar_width = 22
set sidebar_short_path = yes
set sidebar_next_new_wrap = yes
set mail_check_stats
set sidebar_format = '%B%?F? [%F]?%* %?N?%N/? %?S?%S?'
bind index,pager B sidebar-toggle-visible

# mailboxes
set folder = "/home/jo/.local/share/mail/live"
mailboxes "=Archive" "=Deleted" "=Drafts" "=INBOX" "=Junk" "=Sent" "=Waiting"
virtual-mailboxes "All" "notmuch://?query=tag:live"
macro index,pager gl "<change-vfolder>All<enter>" "go to All"
virtual-mailboxes "Aude" "notmuch://?query=Aude"  # this line is temporarily added as an additional test

直到大约几周前,我的neomutt sidebar看起来还是这样的:

Archive           491│
Deleted             3│
Drafts               │
INBOX            8/ 9│
Junk                 │
Sent                 │
Waiting             1│
All            9/ 565│

但是最后一行,“All”definition现在看起来像这样(后面是临时的“Aude”测试):

query=tag:live 9/ 565│
query=Aude     1/ 251│

您可以看到definition,“All”或测试用例“Aude”现在没有显示,但被notmuch://?我的配置中后面的内容替换了。我的宏gl仍然有效,显示我的虚拟邮箱“All”的内容。

我似乎仍然在严格遵循Notmuch 功能

6 命令与命令
virtual-mailboxes description notmuch-URI { description notmuch-URI ...}
unvirtual-mailboxes{ * | mailbox ... }
virtual-mailboxes类似mailboxes,只是它需要描述。邮箱将受到新邮件的监控,并将显示在侧边栏中。

所以似乎几周前 neomutt 中的一些变化破坏了此功能,或者我遗漏了什么?

答案1

这里描述了一个不完整但足够的修复版本 20200814 侧栏中的虚拟邮箱名称显示查询字符串而不是名称 #2595。就我而言,我刚刚%B%D我的侧边栏格式字符串

相关内容