TUI Email Client ???

Hi guys,

do you have any suggestion for an intuitive TUI Email Client which is not Mutt?

Thanks in advance,

F.
 
I tried it out but I couldn't make it working...
And when I feel frustrated the clunky TUI method get more irritated... ?
 
I see why people may not like mutt(): nowadays we all get html-formatted emails a lot, and sometimes they cannot be rendered properly in a TUI client. Moreover, some companies don't even bother sending a plain text version, or, even worse, the text part is different from the html one!
As a work-around I added the following line to ~/.mutt/mailcap:
Code:
text/html; mutt-html %s
where mutt-html is a script in $PATH:
Code:
#!/bin/sh
FILE=/tmp/mutt-`date +%s`.html
cp -f "$1" $FILE
firefox file://$FILE
So, in a case when I really want to see the original html message I hit v to view the parts of that message, then hit m on the text/html part, and get my message rendered by firefox.
 
I do somthing similar, based on an old page from Jason Ryan. He uses vim-probable, or at least did when he wrote it, I use firefox with an entry in $HOME/.mailcap of
Code:
text/html; firefox -new-tab %s; test=test -n "$DISPLAY"
I also agree with his views on html email. It is never needed and does nothing but make it easier to spread malware.

His page:


But this brings up a good question. Why don't you want mutt? Maybe it's something that someone here can aid you in fixing.
 
  • Like
Reactions: mer
I do not have the right mindset to remember key combinations or to work based on strictly patterns, some TUI application use a more intuitive and multi patterns approach (e.g. Micro Editor, Telescope) but the majority give such freedom through complicated key combinations that require attitude and a steep curve learning... ?
 
Back
Top