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 the help :)

--Sadiq



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 that were necessary to add to .emacs and made
the required file.

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 deletes all
of the message no matter what, but leaves the line "blah wrote on..."

Am I missing something here? ANy help would be appreciated.

Thank you.

--Sadiq



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,
 Try this in .muttrc:
 set editor ="vi +'/^[ ,\t]* --/,/^-- /-2d'"

and for jed...


define kill_sig ()
{
   push_spot ();
   if (bol_fsearch ("--"))
 {
push_mark ();
forward_paragraph ();
del_region ();
 }
   pop_spot ();
}

then just bind this to a key, or run it automatically run the command line,
ie in set editor="jed -f kill_sig".


-- 
UK Independance Party (NOW WITH 3 MEP's!!): http://www.IndependenceUK.org.uk



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-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]* --/,/^-- /-2d'"

Hope that helps,
-Aris
-- 
"It's God.  No, not Richard Stallman, or Linus Torvalds, but God."
(By Matt Welsh)