On 24.06.11,23:52, XeCycle wrote:
> Hello, I've been using mutt for several months, and I like
> it.
> 
> However I'm an Emacs fan, so I tried Gnus, but failed... it
> really is not a mail client. But Gnus can be easily extended
> with Emacs Lisp, which is a killer feature compared to mutt.
> AFAIK I think mutt can only execute shell commands via
> `command`. I think it'd be nice to integrate some language
> to muttrc, thus making customization easier. (I prefer perl
> for this task~)
> 
> Or --- Is there a fork of mutt that already support this?

You can extend mutt by using macros with scripts that you can load in 
addition to your .muttrc, or you can source the scripts directly. 

Here is a script I load in mutt with a macro when I need it:

#!/bin/sh

lab=$1
file=$2
formail -A "X-Label: NA" < $file > $file.tmp
mv $file.tmp $file
sleep 1
touch $file

I would guess that much or most of the things you can do with Gnus can 
also be done in mutt, but only in a different way. Is there something 
specifically you would do in mutt that you do in Gnus now?


Jostein





Reply via email to