Re: Replying a mail in a mail list

2008-12-02 Thread Rocco Rutte
Hi, * Chengqi(Lars) Song wrote: I found that "L" works without "lists" or "subscribe" in .muttrc. When I use "L" the target address becomes "To: mutt-users@mutt.org", amazing. What's the effect of "lists" and "subscribe" then? I noticed that after adding them, there will be a tag 'L' in front o

Re: Replying a mail in a mail list

2008-12-02 Thread Joel Esler
On Dec 2, 2008, at 6:18 AM, Ionel Mugurel Ciobica wrote: On 2-12-2008, at 19h 09'34", Chengqi(Lars) Song wrote about "Replying a mail in a mail list" Hi, When I'm replying a mail in a mail list, for example, a mail in mutt-users@mutt.org from [EMAIL PROTECTED], the default target is "To: [

Re: Replying a mail in a mail list

2008-12-02 Thread Cherife Li
On Tue, 02 Dec 2008 at 21:01:31 +0800, Chengqi(Lars) Song wrote: > Thanks your for your help. I found that "L" works without "lists" or > "subscribe" in .muttrc. When I use "L" the target address becomes "To: > mutt-users@mutt.org", amazing. What's the effect of "lists" and > "subscribe" then? I n

Re: Replying a mail in a mail list

2008-12-02 Thread Christian Ebert
* Chengqi(Lars) Song on Tuesday, December 02, 2008 at 19:09:34 +0800 > When I'm replying a mail in a mail list, for example, a mail in > mutt-users@mutt.org from [EMAIL PROTECTED], the default target is > > "To: [EMAIL PROTECTED]", > > how to changed it to the following? > > "To: [EMAIL PRO

Re: Replying a mail in a mail list

2008-12-02 Thread Chengqi(Lars) Song
Thanks your for your help. I found that "L" works without "lists" or "subscribe" in .muttrc. When I use "L" the target address becomes "To: mutt-users@mutt.org", amazing. What's the effect of "lists" and "subscribe" then? I noticed that after adding them, there will be a tag 'L' in front of all mai

Re: Replying a mail in a mail list

2008-12-02 Thread Ionel Mugurel Ciobica
On 2-12-2008, at 12h 18'00", Ionel Mugurel Ciobica wrote about "Re: Replying a mail in a mail list" > > If you declare it as a mail list you can use `L' instead of `r' to > replay. > I ment to reply. Sorry. Ionel

Re: Replying a mail in a mail list

2008-12-02 Thread Ionel Mugurel Ciobica
On 2-12-2008, at 19h 09'34", Chengqi(Lars) Song wrote about "Replying a mail in a mail list" > Hi, > > When I'm replying a mail in a mail list, for example, a mail in > mutt-users@mutt.org from [EMAIL PROTECTED], the default target is > > "To: [EMAIL PROTECTED]", > > how to changed it to

Re: Replying to a specific message

2008-08-27 Thread Shreevatsa R
On Wed, Aug 27, 2008 at 6:59 PM, Kyle Wheeler <[EMAIL PROTECTED]> wrote: > On Wednesday, August 27 at 06:10 PM, quoth Shreevatsa R: >> The only "parsing" that the pattern parser needs to do is break up >> the user-input string into "logical parts" of the form (~i EXPR), >> (~s EXPR), etc., and then

Re: Replying to a specific message

2008-08-27 Thread Kyle Wheeler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wednesday, August 27 at 06:10 PM, quoth Shreevatsa R: > The only "parsing" that the pattern parser needs to do is break up > the user-input string into "logical parts" of the form (~i EXPR), > (~s EXPR), etc., and then each corresponding part can

Re: Replying to a specific message

2008-08-27 Thread Shreevatsa R
On Wed, Aug 27, 2008 at 12:54 AM, Kyle Wheeler <[EMAIL PROTECTED]> wrote: > On Tuesday, August 26 at 11:46 PM, quoth Shreevatsa R: >>> Skip the escaping, and just use quotes: >>> >>> mutt -e "push '~i "$MID"'" $@ >>> >>> AFAIK quote characters aren't allowed in Message-IDs. >> >> That's probabl

Re: Replying to a specific message

2008-08-26 Thread Kyle Wheeler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tuesday, August 26 at 11:46 PM, quoth Shreevatsa R: >> Skip the escaping, and just use quotes: >> >> mutt -e "push '~i "$MID"'" $@ >> >> AFAIK quote characters aren't allowed in Message-IDs. > > That's probably true, but quotes don't work. Start

Re: Replying to a specific message

2008-08-26 Thread Shreevatsa R
On Tue, Aug 26, 2008 at 10:35 PM, Kyle Wheeler <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On Tuesday, August 26 at 10:32 PM, quoth Shreevatsa R: >> On Sun, Aug 24, 2008 at 7:24 PM, Christian Ebert <[EMAIL PROTECTED]> wrote: >>> * Kyle Wheeler on Sunday, August

Re: Replying to a specific message

2008-08-26 Thread Kyle Wheeler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tuesday, August 26 at 10:32 PM, quoth Shreevatsa R: > On Sun, Aug 24, 2008 at 7:24 PM, Christian Ebert <[EMAIL PROTECTED]> wrote: >> * Kyle Wheeler on Sunday, August 24, 2008 at 16:41:53 -0500 >>> function reply() { >>> MID=$1; shift; >>

Re: Replying to a specific message

2008-08-26 Thread Shreevatsa R
On Sun, Aug 24, 2008 at 7:24 PM, Christian Ebert <[EMAIL PROTECTED]> wrote: > * Kyle Wheeler on Sunday, August 24, 2008 at 16:41:53 -0500 >> function reply() { >> MID=$1; shift; > mutt -e "push '~i $MID'" $@ >> } Thanks, everyone. One minor annoyance is when Message-IDs have special charac

Re: Replying to a specific message

2008-08-24 Thread Christian Ebert
* Kyle Wheeler on Sunday, August 24, 2008 at 16:41:53 -0500 > On Sunday, August 24 at 05:17 PM, quoth Shreevatsa R: >> function reply() { >> MID=$1; shift; >> mutt -e "push 'l ~h $MIDg'" $@ >> } > > Strictly speaking, you may want to use the function names rather than > the keys themselves, e

Re: Replying to a specific message

2008-08-24 Thread Cameron Simpson
On 24Aug2008 16:41, Kyle Wheeler <[EMAIL PROTECTED]> wrote: | On Sunday, August 24 at 05:17 PM, quoth Shreevatsa R: | >function reply() { | >MID=$1; shift; | >mutt -e "push 'l ~h $MIDg'" $@ | >} | | Strictly speaking, you may want to use the function names rather than | the keys themselve

Re: Replying to a specific message

2008-08-24 Thread Kyle Wheeler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sunday, August 24 at 05:17 PM, quoth Shreevatsa R: >function reply() { >MID=$1; shift; >mutt -e "push 'l ~h $MIDg'" $@ >} Strictly speaking, you may want to use the function names rather than the keys themselves, even though it makes the m

Re: Replying to a specific message

2008-08-24 Thread Shreevatsa R
On Sun, Aug 24, 2008 at 4:06 PM, Michael Kjorling <[EMAIL PROTECTED]> wrote: > On 24 Aug 2008 15:25 -0400, by [EMAIL PROTECTED] (Shreevatsa R): >> Is it possible to reply to a specific message (specified by its >> Message-ID, say) from the command line? >> >> I was told on the #mutt IRC channel tha

Re: Replying to a specific message

2008-08-24 Thread Michael Kjorling
On 24 Aug 2008 15:25 -0400, by [EMAIL PROTECTED] (Shreevatsa R): > Is it possible to reply to a specific message (specified by its > Message-ID, say) from the command line? > > I was told on the #mutt IRC channel that it is possible to write such > a script using mutt -e ..., and that someone on t

Re: Replying to Email / Removing previous signature

2008-03-08 Thread Chris Bannister
On Tue, Mar 04, 2008 at 07:51:08AM +0100, Eyolf Østrem wrote: > On 04.03.2008 (15:34), Chris Bannister wrote: > > So in your .muttrc do you have something like: > > > > set editor ="vim -u mutt-vimrc" > > > > or ...? > > > > The -u option skips all other initialisation, which would mean > >

Re: Replying to Email / Removing previous signature

2008-03-03 Thread Eyolf Østrem
On 04.03.2008 (15:34), Chris Bannister wrote: > So in your .muttrc do you have something like: > > set editor ="vim -u mutt-vimrc" > > or ...? > > The -u option skips all other initialisation, which would mean > options like 'textwidth= ' would be lost. Yes, something like that. I've been

Re: Replying to Email / Removing previous signature

2008-03-03 Thread Chris Bannister
On Sun, Mar 02, 2008 at 02:51:32PM +0100, Eyolf Østrem wrote: > > > On 27.02.2008 (17:37), Breen Mullins wrote: > > Since my suggested mapping > > map ,ds :.,/^-- $/-1dO > > > > only makes sense if I'm editing a mail, I pulled it from my .vimrc > > and dropped it into ~/.vim/after/syntax/mail.vi

Re: Replying to Email / Removing previous signature

2008-03-02 Thread Eyolf Østrem
On 27.02.2008 (17:37), Breen Mullins wrote: > Since my suggested mapping > map ,ds :.,/^-- $/-1dO > > only makes sense if I'm editing a mail, I pulled it from my .vimrc > and dropped it into ~/.vim/after/syntax/mail.vim . For what it's worth, I have the following in my mutt-vimrc file: imap ff

Re: Replying to Email / Removing previous signature

2008-02-27 Thread Breen Mullins
* Kyle Wheeler <[EMAIL PROTECTED]> [2008-02-18 14:22 -0600]: Comma repeats the last f/t/F/T operation in the opposite direction. I don't know why you'd start macros with it either. :) Well, that's a good point even if I rarely use the reverse-sense search. Since my suggested mapping ma

Re: Replying to Email / Removing previous signature

2008-02-20 Thread Joseph
On 02/20/08, Gary Johnson wrote: > On 2008-02-20, Joseph <[EMAIL PROTECTED]> wrote: > > On 02/18/08, Kyle Wheeler wrote: > > > A macro to remove all two-line things would be something like this: > > > > > > :%s/\n\n/\r/ > > > > > > You can add it to your $editor setting (+%s/\n\n/\r/) or you

Re: Replying to Email / Removing previous signature

2008-02-20 Thread Gary Johnson
On 2008-02-20, Joseph <[EMAIL PROTECTED]> wrote: > On 02/18/08, Kyle Wheeler wrote: > > A macro to remove all two-line things would be something like this: > > > > :%s/\n\n/\r/ > > > > You can add it to your $editor setting (+%s/\n\n/\r/) or you can make > > a key mapping out of it (map ,oe

Re: Replying to Email / Removing previous signature

2008-02-20 Thread Joseph
On 02/18/08, Kyle Wheeler wrote: > A macro to remove all two-line things would be something like this: > > :%s/\n\n/\r/ > > You can add it to your $editor setting (+%s/\n\n/\r/) or you can make > a key mapping out of it (map ,oe :%s/\n\n/\r/), whichever you > prefer. > What I would like

Re: Replying to Email / Removing previous signature

2008-02-18 Thread Kyle Wheeler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday, February 18 at 11:48 AM, quoth Breen Mullins: >> For others who may want to try this, I had to make some changes to >> get it to work. > > You changed my definition. I actually do type comma-d-s to trim the > message. (All of my macros te

Re: Replying to Email / Removing previous signature

2008-02-18 Thread Breen Mullins
* Joseph <[EMAIL PROTECTED]> [2008-02-18 14:33 -0500]: Wow, that is really slick. But not original to me - I snarfed something similar a long time ago... For others who may want to try this, I had to make some changes to get it to work. You changed my definition. I actually do type comma-d

Re: Replying to Email / Removing previous signature

2008-02-18 Thread Joseph
On 02/18/08, Breen Mullins wrote: > * Joseph <[EMAIL PROTECTED]> [2008-02-18 13:08 -0500]: > >> When replying to an email that you sent earlier, how would you go about >> removing the previous signature? > > I use vim as my editor - I have a macro defined in vimrc > > map ,ds :.,/^-- $/-1dO > > (d

Re: Replying to Email / Removing previous signature

2008-02-18 Thread Michael Kjorling
On 18 Feb 2008 19:05 +, by [EMAIL PROTECTED] (Michael Kjorling): > Run a message through this awk script before passing it to your > editor. (Set $editor to a wrapper script.) Sorry, I missed one pretty important detail. This is how you invoke it: awk -f awkfile OUTFILE=$outfname $infname --

Re: Replying to Email / Removing previous signature

2008-02-18 Thread Michael Kjorling
On 18 Feb 2008 13:08 -0500, by [EMAIL PROTECTED] (Joseph): > When replying to an email that you sent earlier, how would you go about > removing the previous signature? Run a message through this awk script before passing it to your editor. (Set $editor to a wrapper script.) ** cut ** {if ($0 ~ /^

Re: Replying to Email / Removing previous signature

2008-02-18 Thread Breen Mullins
* Joseph <[EMAIL PROTECTED]> [2008-02-18 13:08 -0500]: When replying to an email that you sent earlier, how would you go about removing the previous signature? I use vim as my editor - I have a macro defined in vimrc map ,ds :.,/^-- $/-1dO (ds for delete-to-sigdashes). It's not automatic, b

Re: Replying to html emails

2008-02-17 Thread Cameron Simpson
On 09Feb2008 07:34, Joseph <[EMAIL PROTECTED]> wrote: | I really appreciate all the good ideas and have it display text now as | well. Mutt really is a great tool but takes some getting used to, to | make it really useful. Seems like the html dump should be by default | for new users :) The tricky

Re: Replying to html emails

2008-02-09 Thread Ross Vandegrift
On Sat, Feb 09, 2008 at 07:34:09AM -0500, Joseph wrote: > I really appreciate all the good ideas and have it display text now as > well. Mutt really is a great tool but takes some getting used to, to > make it really useful. Seems like the html dump should be by default > for new users :) I've bee

Re: Replying to html emails

2008-02-09 Thread Joseph
On 02/07/08, Vladimir Marek wrote: > > > Is there a way to reply to an html based email and have all the tags > > > stripped out automatically? > > > > If you have > > auto_view text/html > > And it's not limited to html. I do have MS Word convertor (antiword) and > Open Office convertor (odt

Re: Replying to html emails

2008-02-07 Thread Vladimir Marek
> > Is there a way to reply to an html based email and have all the tags > > stripped out automatically? > > If you have > auto_view text/html And it's not limited to html. I do have MS Word convertor (antiword) and Open Office convertor (odtview) enabled. I usually even don't notice that s

Re: Replying to html emails

2008-02-07 Thread David Champion
> Is there a way to reply to an html based email and have all the tags > stripped out automatically? If you have auto_view text/html in your .muttrc, mutt will decode the HTML when you read the message and when you quote the message in a reply. If the mail does not start out as a text/ht

Re: Replying to html emails

2008-02-07 Thread Patrick Shanahan
* Joseph <[EMAIL PROTECTED]> [02-07-08 09:41]: > Is there a way to reply to an html based email and have all the tags > stripped out automatically? change the edit command to pipe the msg thru text2html to the editor. -- Patrick Shanahan Plainfield, Indiana, USAHOG # US1244711 ht

Re: replying to unwrapped messages with vi

2002-10-06 Thread David T-G
Kevin, et al -- ...and then kevin lyda said... % ... % % i find fmt to be more standard across unicies. Actually, I've found the BSD fmt to be not equal to the GNU or [presumably ATT, since it "works" in Solaris, but that's funny since SunOS harkens back to BSD!] fmt, so the quick fix was to c

[OT] Re: replying to unwrapped messages with vi

2002-10-06 Thread David Britton
On Wed, Oct 02, 2002 at 06:58:06PM -0400, Keith R. John Warno wrote: > > gqap in conjunction with 'comments' works well. But I'm curious: how do > folks handle reformatting text with multiple levels of quoting? For me, it just "works". I think vim recognized the message I'm editing as an email

Re: replying to unwrapped messages with vi

2002-10-02 Thread Keith R. John Warno
- On Tue, 01.Oct.2002, 09:12EDT, Ken Weingold uttered: > On Tue, Oct 1, 2002, Elimar Riesebieter wrote: > > > > I use gqap in vim. Thats for leaving the qotes at start of line. > > Oh, yeah. Q} will preserve quotes too, but I forgot that I have Q > remapped to gq, since I had gotten used to t

Re: replying to unwrapped messages with vi

2002-10-01 Thread Thomas Dickey
On Tue, Oct 01, 2002 at 07:38:35AM -0400, Thomas E. Dickey wrote: > On Tue, 1 Oct 2002, kevin lyda wrote: > > i find fmt to be more standard across unicies. > > that's arguable (fmt is likely to be installed, but like most Unix > utilities would have version dependencies - par is a relative latec

Re: replying to unwrapped messages with vi

2002-10-01 Thread Ken Weingold
On Tue, Oct 1, 2002, Elimar Riesebieter wrote: > > I use gqap in vim. Thats for leaving the qotes at start of line. Oh, yeah. Q} will preserve quotes too, but I forgot that I have Q remapped to gq, since I had gotten used to the Q in vim 4 I think. Or something like that. :) -Ken

Re: replying to unwrapped messages with vi

2002-10-01 Thread Thomas E. Dickey
On Tue, 1 Oct 2002, Elimar Riesebieter wrote: > On Tue, 01 Oct 2002 the mental interface of > > "Or you can have vim do this reformatting automatically by applying > patches 6.1.142 and 6.1.143 and adding this to your autocmd: > > set formatoptions+=a" > (posted at vim.vim.org!) I don't use

Re: replying to unwrapped messages with vi

2002-10-01 Thread Elimar Riesebieter
On Tue, 01 Oct 2002 the mental interface of Thomas E. Dickey told: > On Tue, 1 Oct 2002, kevin lyda wrote: > > > On Tue, Oct 01, 2002 at 06:09:47AM -0400, Thomas E. Dickey > > wrote: > > > On Mon, 30 Sep 2002, Ken Weingold wrote: > > > > Not sure about vi, but vim has a wonderful method of > >

Re: replying to unwrapped messages with vi

2002-10-01 Thread Thomas E. Dickey
On Tue, 1 Oct 2002, kevin lyda wrote: > On Tue, Oct 01, 2002 at 06:09:47AM -0400, Thomas E. Dickey wrote: > > On Mon, 30 Sep 2002, Ken Weingold wrote: > > > Not sure about vi, but vim has a wonderful method of wrapping text. A > > > simple Q} will wrap the whole paragraph. Or Q will do for > >

Re: replying to unwrapped messages with vi

2002-10-01 Thread kevin lyda
On Tue, Oct 01, 2002 at 06:09:47AM -0400, Thomas E. Dickey wrote: > On Mon, 30 Sep 2002, Ken Weingold wrote: > > Not sure about vi, but vim has a wonderful method of wrapping text. A > > simple Q} will wrap the whole paragraph. Or Q will do for > > Outhouse since it seems to make each paragraph

Re: replying to unwrapped messages with vi

2002-10-01 Thread Thomas E. Dickey
On Mon, 30 Sep 2002, Ken Weingold wrote: > On Thu, Sep 26, 2002, Mike Jackson wrote: > > If I receive a message from an outlook luser, or similar, and the > > message is completely unwrapped, how do I "fix" that part which I quote? > > I would like to be able to do this automatically. > > Not su

Re: replying to unwrapped messages with vi

2002-09-30 Thread Ken Weingold
On Thu, Sep 26, 2002, Mike Jackson wrote: > If I receive a message from an outlook luser, or similar, and the > message is completely unwrapped, how do I "fix" that part which I quote? > I would like to be able to do this automatically. Not sure about vi, but vim has a wonderful method of wrappi

Re: replying to unwrapped messages with vi

2002-09-30 Thread Robert Lillack
Mike Jackson wrote: > If I receive a message from an outlook luser, or similar, > and the message is completely unwrapped, how do I "fix" > that part which I quote? I would like to be able to do > this automatically. I don't use vi but nearly every editor allows you to call external p

Re: replying to unwrapped messages with vi

2002-09-30 Thread Gary Johnson
On Thu, Sep 26, 2002 at 09:55:08PM +0300, Mike Jackson wrote: > Hello, > I use mutt for reading messages and vi for composing/replying. I guess > this is more related to vi, but since somebody here most likely has > encountered the same problem here goes. > > If I receive a message from an outl

Re: replying to and quoting an HTML attachment

2002-07-11 Thread Eugene Lee
On Thu, Jul 11, 2002 at 09:44:53AM -0700, Gary Johnson wrote: : : On Wed, Jul 10, 2002 at 06:44:46PM -0700, Eugene Lee wrote: : > : > Now if I can only figure out how to keep both entries and get Mutt to : > let me select between the two methods... : : You can. Just put them in you mailcap in

Re: replying to and quoting an HTML attachment

2002-07-11 Thread Gary Johnson
On Wed, Jul 10, 2002 at 06:44:46PM -0700, Eugene Lee wrote: > Thanks to you and John Iverson and Will Yardley for the responses. > It turned out to be my mailcap entry. I had this: > > text/html; links %s; nametemplate=%s.html > > when I really needed this: > > text/html; links -d

Re: replying to and quoting an HTML attachment

2002-07-10 Thread Eugene Lee
On Wed, Jul 10, 2002 at 05:36:43PM -0700, Gary Johnson wrote: : : On Wed, Jul 10, 2002 at 05:06:12PM -0700, Eugene Lee wrote: : > : > I receive several HTML messages that arrive as an attachment with no : > plain text equivalent in the main message body or another attachment. : > When I reply to

Re: replying to and quoting an HTML attachment

2002-07-10 Thread Gary Johnson
On Wed, Jul 10, 2002 at 05:06:12PM -0700, Eugene Lee wrote: > I looked in the archives and couldn't find a specific answer this one. > I receive several HTML messages that arrive as an attachment with no > plain text equivalent in the main message body or another attachment. > When I reply to thes

Re: replying to and quoting an HTML attachment

2002-07-10 Thread Will Yardley
Eugene Lee wrote: > I looked in the archives and couldn't find a specific answer this one. > I receive several HTML messages that arrive as an attachment with no > plain text equivalent in the main message body or another attachment. > When I reply to these messages, how do I configure Mutt to co

Re: replying to and quoting an HTML attachment

2002-07-10 Thread John Iverson
* On Wed, 10 Jul 2002, Eugene Lee wrote: > I looked in the archives and couldn't find a specific answer > this one. I receive several HTML messages that arrive as an > attachment with no plain text equivalent in the main message > body or another attachment. When I reply to these messages, > ho

Re: Replying without "modifying"

2002-06-11 Thread Nicolas Rachinsky
* Johan Svedberg <[EMAIL PROTECTED]> [2002-06-11 22:59 +0200]: > I was just wondering if there is some configuration in mutt that makes it possible >for you to reply to a message without actually "modifying" the original message (used >when confirming mailinglists subscriptions), all I get now i

Re: Replying without "modifying"

2002-06-11 Thread Rocco Rutte
[ please wrap lines at something around 72 characters ] Hi, * Johan Svedberg [02-06-11 23:36:23 +0200] wrote: > I was just wondering if there is some configuration in > mutt that makes it possible for you to reply to a message > without actually "modifying" the original message (used > when conf

Re: Replying without "modifying"

2002-06-11 Thread David T-G
Johan -- ...and then Johan Svedberg said... % % Hi! Hello! % % I was just wondering if there is some configuration in mutt that makes it possible for you to reply to a message without actually "modifying" the original message (used when confirming mailinglists subscriptions), all I get now

Re: Replying with headers (SOLVED)

2002-04-18 Thread David Champion
* On 2002.04.18, in <[EMAIL PROTECTED]>, * "mstevenson" <[EMAIL PROTECTED]> wrote: > > Just for the record: the complete solution to achieve an "Outlook-like" behavior >(yuck) with mutt is > > set header > set indent_string="" > set attribution="- Original message -" > > It

Re: Replying with headers (SOLVED)

2002-04-18 Thread mstevenson
On April 18, 2002, 12:36 PM, Michael Elkins wrote: > > mstevenson wrote: > > Is it possible to include (quote) the headers for a message I'm replying to? > > set header Just for the record: the complete solution to achieve an "Outlook-like" behavior (yuck) with mutt is set header set inde

Re: Replying with headers

2002-04-18 Thread Dave Price
On Thu, Apr 18, 2002 at 12:40:09PM -0700, mstevenson wrote: > Hi David, > > On April 18, 2002, 12:31 PM, David T-G wrote: > > ...and then mstevenson said... > > % > > % Is it possible to include (quote) the headers for a message I'm replying to? > > % In some special situations I'd like a reply

Re: Replying with headers

2002-04-18 Thread mstevenson
Hi David, On April 18, 2002, 12:31 PM, David T-G wrote: > ...and then mstevenson said... > % > % Is it possible to include (quote) the headers for a message I'm replying to? > % In some special situations I'd like a reply to appear like a forward, yet > % preserving the references (In-Reply-To:

Re: Replying with headers

2002-04-18 Thread Michael Elkins
mstevenson wrote: > Is it possible to include (quote) the headers for a message I'm replying to? set header

Re: Replying with headers

2002-04-18 Thread David T-G
Matthew -- ...and then mstevenson said... % % Hello, Hi! % % Is it possible to include (quote) the headers for a message I'm replying to? % In some special situations I'd like a reply to appear like a forward, yet % preserving the references (In-Reply-To: and such). Something like The only

Re: replying to more than 1 message at a time

2002-02-02 Thread Prahlad Vaidyanathan
Hi, On Sat, 02 Feb 2002 Prahlad Vaidyanathan spewed into the ether: [-- snip --] Gak ! Sorry, I was doing some bad things with my macros, and that's why it didn't work. Now everything is A-ok :-) pv. -- Prahlad Vaidyanathan <[EMAIL PROTECTED]> The finest eloquence is that which gets things do

Re: replying to more than 1 message at a time

2002-02-01 Thread Gary Johnson
On Sat, Feb 02, 2002 at 01:51:55AM +, Prahlad Vaidyanathan wrote: > Was looking for some way by which I could tag a bunch of messages, and > reply to all of them in one edit window. ie. > > '' should run vim with all the tagged messages quoted > one after another. Currently, I do this : It

Re: Replying

2001-07-11 Thread Bob Bell
On Wed, Jul 11, 2001 at 02:25:28PM +, Nelson D. Guerrero <[EMAIL PROTECTED]> wrote: >I tried putting: >set attribution:"* %n%d wrote on %L:" >And all it did when replying was put: >Wed Jul 11, Michael Elkins wrote on Michael Elkins: Do you have the list address defined in

Re: Replying

2001-07-11 Thread Nelson D. Guerrero
* On Wed Jul 11, Michael Elkins wrote: -> On Wed, Jul 11, 2001 at 09:21:49AM +, Nelson D. Guerrero wrote: -> > This is prolly a stupid question, but I'm gonna throw it -> > anyways. How do I, when replying to an email put the mailing list or -> > mbox on the attribution? -> -> If you fi

Re: Replying

2001-07-11 Thread Michael Elkins
On Wed, Jul 11, 2001 at 09:21:49AM +, Nelson D. Guerrero wrote: > This is prolly a stupid question, but I'm gonna throw it > anyways. How do I, when replying to an email put the mailing list or > mbox on the attribution? If you filter the mail for a particular mailing list into its own

Re: mutt praise (was: Re: Replying to "From:" address)

2001-03-02 Thread John P. Verel
On 03/02/01, 11:22:34AM -0500, Ken Weingold wrote: > On Thu, Mar 1, 2001, John P. Verel wrote: > > On 03/01/01, 09:45:10PM +0100, Michael Tatge wrote: > > > Dirk Laurie muttered: > > > > > > Is there a mutt function that lest me reply to the "From" address > > > > even when "Reply-To" is provide

mutt praise (was: Re: Replying to "From:" address)

2001-03-02 Thread Ken Weingold
On Thu, Mar 1, 2001, John P. Verel wrote: > On 03/01/01, 09:45:10PM +0100, Michael Tatge wrote: > > Dirk Laurie muttered: > > > > Is there a mutt function that lest me reply to the "From" address > > > even when "Reply-To" is provided? > > > > For this purpose set ignore_list_reply_to. Maybe in

Re: Replying to "From:" address

2001-03-01 Thread John P. Verel
On 03/01/01, 09:45:10PM +0100, Michael Tatge wrote: > Dirk Laurie muttered: > > Is there a mutt function that lest me reply to the "From" address > > even when "Reply-To" is provided? > > For this purpose set ignore_list_reply_to. Maybe in combination with > sent- or folder-hook. Hey this is co

Re: Replying to "From:" address

2001-03-01 Thread Michael Tatge
Dirk Laurie muttered: > Very properly, mutt replies to the "Reply-To" address if one is set. > I belong to some mailing lists where "Reply-To" is set to the list. > This is OK if I wish to send to the sender and the list ("g") or to > the list only ("r") but not if I wish to reply to the sender on

Re: Replying to "From:" address

2001-03-01 Thread Christian R Molls
* Dirk Laurie <[EMAIL PROTECTED]> [010301 09:43]: > Very properly, mutt replies to the "Reply-To" address if one is set. > I belong to some mailing lists where "Reply-To" is set to the list. > This is OK if I wish to send to the sender and the list ("g") or to > the list only ("r") but not if I w

Re: Replying to multiple messages

2000-05-31 Thread David Ellement
On 000530, at 15:27:11, Bob Bell wrote: > On Tue, May 30, 2000 at 08:55:11PM +0300, Mikko Hnninen <[EMAIL PROTECTED]> >wrote: > > I wonder how something like this could be implemented? It would be > > quite unpractical to keep a list of tagging order or anything like that. > > My thoughts e

Re: Replying to multiple messages

2000-05-30 Thread David T-G
Bob, et al -- ...and then Bob Bell said... % % Is there any way to specify which message should be used to set % the "References" field? In my limited experience, mutt figures its Refs: and I-R-T: fields from the first message in the tagged list, probably based on the current sort order.

Re: Replying to multiple messages

2000-05-30 Thread Gary Johnson
On Tue, May 30, 2000 at 03:27:11PM -0400, Bob Bell wrote: > My thoughts exactly. I'd tag all relevant messages, and then just > hit ';g' or whatever over the message where I want the followups to > appear. This would be a really nice feature, as my threading is > currently getting messed up

Re: Replying to multiple messages

2000-05-30 Thread Bob Bell
On Tue, May 30, 2000 at 08:55:11PM +0300, Mikko Hnninen <[EMAIL PROTECTED]> wrote: > I wonder how something like this could be implemented? It would be > quite unpractical to keep a list of tagging order or anything like that. > Maybe something like "if the current message is tagged, use that as

Re: Replying to multiple messages

2000-05-30 Thread Mikko Hänninen
Bob Bell <[EMAIL PROTECTED]> wrote on Tue, 30 May 2000: > Is there any way to specify which message should be used to set > the "References" field? Not that I know of. I wonder how something like this could be implemented? It would be quite unpractical to keep a list of tagging order or any

Re: replying w/out signature?

1999-07-24 Thread SBTM
Rob Reid wrote: > Did you change this?: > > (defcustom post-signature-pattern "\\(--\\|Cheers,\\|^L\\)" > "*Pattern signifying the beginning of signatures. It should not contain > trailing whitespace (unless you know what you're doing ;-)." Apparently this is what I had missed. Thanx Rob for

Re: replying w/out signature?

1999-07-24 Thread Rob Reid
At 1:48 AM EDT on July 24 SBTM sent off: > Rob Reid wrote: > > And for emacs you can use post mode, available at > > > > http://astro.utoronto.ca/~reid/mutt/ > > It works just fine when starting a new file or editing and existing > file. The problem rises when I reply to an email in mutt. It de

Re: replying w/out signature?

1999-07-23 Thread SBTM
Rob Reid wrote: > And for emacs you can use post mode, available at > > http://astro.utoronto.ca/~reid/mutt/ Hello everyone, Since I use emacs, and been looking for exactly what has been mentioned in the previous post, I decided to download the post mode and use it. I got the file put the lines

Re: replying w/out signature?

1999-07-22 Thread mutt
On 0, Holger Lillqvist <[EMAIL PROTECTED]> wrote: > >if (bol_fsearch (">--")) > > Actually there should be a space after the dashes: > > if (bol_fsearch (">-- ")) > Yeah sorry. There was a space there, I got this from the mutt newsgroup, was it from you ? For some reason I

Re: replying w/out signature?

1999-07-21 Thread Rob Reid
At 3:22 PM EDT on July 21 [EMAIL PROTECTED] sent off: > On 0, Aris Mulyono <[EMAIL PROTECTED]> wrote: > > On Tue, Jul 20, 1999 at 01:18:49PM -0600, Steve Talley wrote: > > > When replying to someone with a quoted ("> ") message, is it > > > possible for mutt to automatically remove their signatu

Re: replying w/out signature?

1999-07-21 Thread Holger Lillqvist
On Jul 21, [EMAIL PROTECTED] wrote: >if (bol_fsearch (">--")) Actually there should be a space after the dashes: if (bol_fsearch (">-- ")) Regards, Holger

Re: replying w/out signature?

1999-07-21 Thread mutt
On 0, Aris Mulyono <[EMAIL PROTECTED]> wrote: > On Tue, Jul 20, 1999 at 01:18:49PM -0600, Steve Talley wrote: > > When replying to someone with a quoted ("> ") message, is it > > possible for mutt to automatically remove their signature (as > > denoted with "-- ")? > > Assuming you use vi editor

Re: replying w/out signature?

1999-07-20 Thread Aris Mulyono
On Tue, Jul 20, 1999 at 01:18:49PM -0600, Steve Talley wrote: > When replying to someone with a quoted ("> ") message, is it > possible for mutt to automatically remove their signature (as > denoted with "-- ")? Assuming you use vi editor, Try this in .muttrc: set editor ="vi +'/^[ ,\t]*> --/,/^-

Re: Replying to CC email as well

1999-06-11 Thread Jeremy Blosser
Warning Could not process message with given Content-Type: multipart/signed; boundary=2FkSFaIQeDFoAt0B; micalg=pgp-md5;protocol="application/pgp-signature"

Re: Replying to CC email as well

1999-06-11 Thread Renaud Colinet
on Jun 11, Maciej Majchrowski wrote: > > When I've got a message where are some CC addressem (mine or not - doesn't matters) > and I'm replying to it, I want mutt to ask me if I want to reply to CC users as well > r(eply): reply to sender only g(roup reply): reply to all recipients. If you have

Re: Replying to CC email as well

1999-06-11 Thread Stephan Seitz
Hi! On Fri, Jun 11, 1999 at 03:24:52PM +0200, Maciej Majchrowski wrote > doesn't matters) and I'm replying to it, I want mutt to ask me if I > want to reply to CC users as well Hm, use 'r' to reply only to the to-line and 'g' (group reply) to reply to all (to and cc). Shade and sweet water!

Re: Replying to CC email as well

1999-06-11 Thread Lars Hecking
Maciej Majchrowski writes: > > When I've got a message where are some CC addressem (mine or not - doesn't matters) > and I'm replying to it, I want mutt to ask me if I want to reply to CC users as well > > It was the pine's feature which I've missed atfer switching to mutt. In mutt, this is ca

Re: Replying with headers

1999-06-03 Thread Byrial Jensen
On Tue, Jun 01, 1999 at 15:34:46 +0200, Gerrit Holl wrote: > On Mon, May 31, 1999 at 11:39:10AM +0200, Byrial Jensen wrote 19 lines To >[EMAIL PROTECTED]: > > If you like, I could make a patch for you with a new $reply_weed > > configuration variable -- it would only take a few minutes. I've had

Re: Replying with headers

1999-06-01 Thread Gerrit Holl
On Mon, May 31, 1999 at 11:39:10AM +0200, Byrial Jensen wrote 19 lines To [EMAIL PROTECTED]: > Date: Mon, 31 May 1999 11:39:10 +0200 > From: Byrial Jensen <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Re: Replying with headers > > On Wed, May 26, 1999 at 15:

Re: Replying with headers

1999-05-31 Thread Byrial Jensen
On Mon, May 31, 1999 at 13:32:34 -0400, Rob Reid wrote: > At 5:39 AM EDT on May 31 Byrial Jensen sent off: > > If you like, I could make a patch for you with a new $reply_weed > > configuration variable -- it would only take a few minutes. > > Maybe it'd be easier to set editor to something like

Re: Replying with headers

1999-05-31 Thread Rob Reid
At 5:39 AM EDT on May 31 Byrial Jensen sent off: > On Wed, May 26, 1999 at 15:28:01 +0200, Gerrit Holl wrote: > > I mean that if I reply, I see the specified headers by the > > previous mail. I've "header" turned on now, but if I reply, I see > > _all_ headers quoted, including the ones I ignored

Re: Replying with headers

1999-05-31 Thread Byrial Jensen
On Wed, May 26, 1999 at 15:28:01 +0200, Gerrit Holl wrote: > I mean that if I reply, I see the specified headers by the previous mail. I've > "header" turned on now, but if I reply, I see _all_ > headers quoted, including the ones I ignored. The ones I ignore are only > ignored when reading mail..

Re: Replying with headers

1999-05-30 Thread dizzy73
Quoting our friend --> David Thorburn-Gundlach <[EMAIL PROTECTED]>: > Gerritt -- > > ...and then Gerrit Holl said... > % Hello all, > % I've got a question about mutt and replying with headers. I want to see the > % headers, but not all of them. > > Do you mean that you want to see the headers

  1   2   >