On Mon, Jan 10, 2011 at 05:15:01PM -0800, John Magolske wrote:
> I'm wondering if Mutt could be used to present mailing lists in
> an on-line accessible way somewhat similar to forums, basically
> by providing a server that people could SSH into and run a remote
> instance of Mutt for browsing list
On Wed, Jan 12, 2011 at 09:46:25PM -0400, Xlii wrote:
> Hi mutt,
>
> I want to dynamically form a greeting line base on the "To:" field.
>
> [snip]
>
> Does anybody know a simple way to do that in mutt?
> Thanks!
> Xlii
Hi,
I don't know a way to handle that directly in mutt, but what's
wrong with
Hi
When i use in interface option cntrl T to switch from text/plain to
text/html and putting html code in body it is working fine.
But If I use in command line it is not.why?
Here is the commande I do
Mutt -e "my_hdr Content-Type: text/html" -s subject emailadresse
* On 12 Jan 2011, Xlii wrote:
> Hi mutt,
>
> I want to dynamically form a greeting line base on the "To:" field.
Use piped commands as format strings. For example:
set attribution='custom_script "%n" "%[%c]" |'
custom_script:
#!/bin/sh
name="$1"
case "$name" in
*larry*)custom="Bon
* On 10 Jan 2011, John Magolske wrote:
> I'm wondering if Mutt could be used to present mailing lists in
> an on-line accessible way somewhat similar to forums, basically
> by providing a server that people could SSH into and run a remote
> instance of Mutt for browsing list archives and replying
I've been wanting to filter a message that is in quoted-printable format
to and convert it plain text. Anyone know of a way I can do this that
is suitable for a Unix-style filter?
--
Will Fiveash
On Thu, Jan 13, 2011 at 05:56:05PM -0600, Will Fiveash wrote:
> I've been wanting to filter a message that is in quoted-printable format
> to and convert it plain text. Anyone know of a way I can do this that
> is suitable for a Unix-style filter?
Nevermind, I just read about the pipe_decode conf
On Thu, Jan 13, 2011 at 05:56:05PM -0600, Will Fiveash wrote:
> I've been wanting to filter a message that is in quoted-printable format
> to and convert it plain text. Anyone know of a way I can do this that
> is suitable for a Unix-style filter?
>
I believe this should do it (untested):
-=-=-
On Thu, Jan 13, 2011 at 06:28:14PM -0600, Derek Martin wrote:
> On Thu, Jan 13, 2011 at 05:56:05PM -0600, Will Fiveash wrote:
> > I've been wanting to filter a message that is in quoted-printable format
> > to and convert it plain text. Anyone know of a way I can do this that
> > is suitable for a