Mutt

mutt:垃圾宏

  • September 26, 2014

在我之前的問題中,我學習瞭如何trashmutt.

unset confirmappend
folder-hook . set trash="=trash"
folder-hook trash$ unset trash

這很好用,除了我必須確認每次刪除。我希望它在沒有刪除確認的情況下工作。這樣我只需要按d然後$同步,而不需要確認。

有人可以建議怎麼做嗎?

set delete=yes

那對我不起作用。

我有一個不同的垃圾設置,所以也許它對你不起作用。我做了:

set confirmappend=no
folder-hook . 'macro index d "<save-message>=INBOX.Trash<enter>"'
folder-hook =trash 'macro index d <delete-message>' 

我想你應該從你的配置中刪除:

unset confirmappend

在.muttrc中找到了這個

# delete without confirmation
set delete=yes

引用自:https://unix.stackexchange.com/questions/105759