Earlier quoted context omitted.
This is my fault for not explaining why I wasn't going to look into it more. According to the features it has listed, it offers me no obvious advantages to my current tools and claims to be difficult to setup and configure. Beyond that, if you truly want adoption for a tool, you'd invest time into making sure that you remove the obstacles of someone utilizing it. This is a tool that hasn't had any major releases sinc…
Can you imagine that software that is around since 1995 is sort of done by now?
The Homely Mutt
71–80 of 116 posts
Re: The Homely Mutt
#72"Mutt certainly isn’t the prettiest email client around, and its setup/configuration process is one of the ugliest out there. But once you get it set up it’s got a lot of advantages over many other email clients." Stopped reading, right there. Why are we still fighting with things that are difficult/ugly to setup/configure? Could have been the best tool ever written, but if I have to spend a half a day figuring it ou…
Something difficult to set up and/or configure can still be worth the suffering. Sure, it'd be great if it was easy to configure to boot, but sometimes pain now can reap greater payback down the line...
Re: The Homely Mutt
#73This is a great post about a very finely tuned Mutt setup. I always enjoy reading about high customized environments. I am someone who would love to use Mutt but I get so much HTML only email it's sadly impossible for me to do so. (Newsletters and misc friends who think large HTML footers are cool.)
In your .muttrc: auto_view text/html alternative_order text/plain text text/html That presents plain text first if it's multiply-encoded, but makes html available. In your mailcap: text/html; /path/to/browser '%s'; description=HTML Text; test=test -n "$DISPLAY"; nametemplate=%s.html displays HTML in a browser window for you. mutt launches this when you choose to look at the html version. But instead, your mailcap cou…
Re: The Homely Mutt
#74I wrote an emacs-based e-mail client "mu4e"; see e.g. http://emacs-fu.blogspot.fi/2012/08/introducing-mu4e-for-ema... Its user-interface is a bit mutt-influenced, but it's fully query-based and very fast, and of course you can extend it using elisp. A fairly young project, but it's near-fully documented, and the manual has instructions on how to set things up with Gmail.
Re: The Homely Mutt
#75I love mutt! Unfortunately, I often write emails while looking at another one, which I couldn't make work with mutt. Any ideas?
You could use a terminal multiplexer (tmux, screen, etc) to just split-screen your terminal.
I've been searching for the right way to launch the editor in a new tmux pane, although apparently getting that to work smoothly would take a patching effort.
Re: The Homely Mutt
#76I haven't added all the features the author pointed out (like server-side search) so excited to make it even better.
Re: The Homely Mutt
#77Sparrow is still getting small updates on both iOS and OS X. Mutt hasn't been updated in a few years. I'm not sure one is more dead than the other. Also, one app became loved because it has a really innovative UI and the other is an app that eschews a modern UI. I'm not sure many people will logically make the leap from Sparrow to Mutt. More likely, people will gravitate back to to gmail.com, which should be getting…
Re: The Homely Mutt
#78I love mutt! Unfortunately, I often write emails while looking at another one, which I couldn't make work with mutt. Any ideas?
You can even pipe output straight to mutt:
df ¦ mutt -s "disk utilization" foo@example.comRe: The Homely Mutt
#79I like nmh, myself.
Re: The Homely Mutt
#80My dotfiles are online if anyone wants to take a look at the actual configuration I use: https://bitbucket.org/sjl/dotfiles/ https://github.com/sjl/dotfiles
Good post, thanks! Do you (or anyone else reading this for that matter) have any insight on how gmail -> imap works with labels when a single message has multiple labels? For example an email may be tagged with "clients" "$JOBNAME" and "receipt". Does it put multiple copies of the message in the local cache, or does it do a hard link, or ...?
So, by default, you're going to be storing multiple copies of each message. It's not a difficult task to use hardlinks instead if you want, but mutt can't make this judgement by itself, because not all of the metadata is identical, and mutt is designed for the general case, not specifically for Gmail.
Note that this is a Gmail issue, not strictly a mutt issue; other IMAP providers don't all have this awkward behavior.