diff options
author | Mellowlink <57295219+Mellowlinku@users.noreply.github.com> | 2019-11-27 14:17:19 +0100 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2019-11-27 08:17:19 -0500 |
commit | 569bda9c5fddf131a962237422326de9929c6b77 (patch) | |
tree | b3725d048d8d706e7480f87a2f58c10bed859782 /share/mutt-wizard.muttrc | |
parent | dfdc3162bafa4abebcb91106085aaf4f575db57d (diff) |
Pinentry-tty and curses support (#317)
I did edit the line 65 and added directly "mbsync -a" instead of "mailsync...". In current state mutt-wizard doesn't work properly in CLI only environment without X started. This is first step to be able atleast mbsync with terminal only pinentry. The problem still remains in sending an email with terminal only pinentry. Temporary solution for is to activate gpg key before sending an email and send the email before the key times out.
Diffstat (limited to 'share/mutt-wizard.muttrc')
-rw-r--r-- | share/mutt-wizard.muttrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/mutt-wizard.muttrc b/share/mutt-wizard.muttrc index b74f244..2c96b19 100644 --- a/share/mutt-wizard.muttrc +++ b/share/mutt-wizard.muttrc @@ -63,7 +63,7 @@ bind editor <Tab> complete-query macro index,pager a "<enter-command>set my_pipe_decode=\$pipe_decode pipe_decode<return><pipe-message>abook --add-email<return><enter-command>set pipe_decode=\$my_pipe_decode; unset my_pipe_decode<return>" "add the sender address to abook" macro index \Cr "T~U<enter><tag-prefix><clear-flag>N<untag-pattern>.<enter>" "mark all messages as read" -macro index O "<shell-escape>mailsync -Va<enter>" "run mbsync to sync all mail" +macro index O "<shell-escape>mbsync -a<enter>" "run mbsync to sync all mail" macro index \Cf "<enter-command>unset wait_key<enter><shell-escape>read -p 'Enter a search term to find with notmuch: ' x; echo \$x >~/.cache/mutt_terms<enter><limit>~i \"\`notmuch search --output=messages \$(cat ~/.cache/mutt_terms) | head -n 600 | perl -le '@a=<>;s/\^id:// for@a;$,=\"|\";print@a' | perl -le '@a=<>; chomp@a; s/\\+/\\\\+/ for@a;print@a' \`\"<enter>" "show only messages matching a notmuch pattern" macro index A "<limit>all\n" "show all messages (undo limit)" |