Infinite Sign as: loop with GPG.

2000-11-26 Thread Lloyd Zusman
I'm using mutt-1.2.5 with gnupg-1.0.4 under Linux 2.2.14. Within my .muttrc, I include 'gpg.rc' from the 'contrib' subdirectory in the mutt-1.2.5 source tree, and I use this without any changes. I have chosen not to auto-sign (i.e., I set 'pgp_sign_as' to "" within .muttrc), and when I type

Problem fixed (Was: Infinite Sign as: loop with GPG)

2000-11-26 Thread Lloyd Zusman
Lloyd Zusman [EMAIL PROTECTED] writes: [ ... ] I have chosen not to auto-sign (i.e., I set 'pgp_sign_as' to "" within .muttrc), and when I type 'pa' after composing a message, I very nicely get the "Sign as:" prompt. However, no matter what I enter after this prompt, I just get this

Multiple commands in a single hook

2000-11-26 Thread Tom Nott
I'm trying to create a send hook that both sets $signature and does a my_hdr in the one go. I don't really want to use two send-hooks because the regex I have is large. I know that I can put the two commands in a separate file and source it, but if possible, I'd like to keep everything in my

Mailcap

2000-11-26 Thread Martin Schweizer
Hello I convert with xlHtml and pptHtml (both on www.xlhtml.org) Microsofts .xls and .ppt to .html files. This program send the result to standart output and not in a file. My .mailcap: -snip- application/x-msexcel; xlHtml %s test.html -snip- How can start lynx to read test.html directly (on

Emacs configuration in .muttrc

2000-11-26 Thread Gian Piero Ascenso
Hi! I'm a new mutt 1.2.5i user and I need some help to configure Emacs as my editor. Actually it works fine, but when I have just to write the Subject and nothing else (as when subscribing to a mail-list) I hit ^X^S then ^X^C to exit Emacs and the message is aborted. My current .muttrc

Preventing CC from appearing at all when composing messages?

2000-11-26 Thread Lloyd Zusman
[ Note: I subscribed to "[EMAIL PROTECTED]", but it wouldn't let me post. So, I hope that this email address is the correct one for posting queries to the mutt users mailing list. ] Is there a way to prevent the Cc: header from appearing when composing or replying to

Re: Emacs configuration in .muttrc

2000-11-26 Thread Rich Lafferty
On Sat, Nov 25, 2000 at 05:09:16PM +0100, Gian Piero Ascenso ([EMAIL PROTECTED]) wrote: Hi! I'm a new mutt 1.2.5i user and I need some help to configure Emacs as my editor. Actually it works fine, but when I have just to write the Subject and nothing else (as when subscribing to a

folder-hooks with IMAP mailboxes?

2000-11-26 Thread Tabor J. Wells
Up until yesterday I had folder-hook statements that look like: folder-hook =mutt-users set sort=thread Yesterday I moved everything from local mailboxes to IMAP mailboxes at my site and I've been unable to figure out how to get this behavior when I enter the mailbox. I would have expected

Re: Mutt PGP.. problem

2000-11-26 Thread Thomas Roessler
On 2000-11-24 08:02:35 -0600, Scott Davis wrote: when I cat filename on this FreeBSD box, it is all garbled... nothing readable. Try typing "pgpring -2", and extract the part of the output which looks like it's related to you. -- Thomas Roessler [EMAIL PROTECTED]

Re: Emacs configuration in .muttrc

2000-11-26 Thread Waldemar Brodkorb
On Sat, Nov 25, 2000 at 05:09:16PM +0100, Gian Piero Ascenso wrote: Hi! I'm a new mutt 1.2.5i user and I need some help to configure Emacs as my editor. Actually it works fine, but when I have just to write the Subject and nothing else (as when subscribing to a mail-list) I hit ^X^S

Re: Preventing CC from appearing at all when composing messages?

2000-11-26 Thread John P. Verel
On 11/26/00, 12:39:28AM -0500, Lloyd Zusman wrote: Is there a way to prevent the Cc: header from appearing when composing or replying to messages? Have a look at the mutt manual, section 3.13. You can do the following in your .muttrc (eliminating "cc" from the hdr_order setting: # - - - - -

Re: OT (sort of): VIM/ex/tr question

2000-11-26 Thread John P. Verel
Per Steve Kirkendall in comp.editors, this works: :g/\s/j One must admire the beauty and simplicity of this. On 11/25/00, 03:13:48PM -0500, John P. Verel wrote: Greetings. I have a vim file which, in general, resembles this: Hello world Hello world I want to

Re: Mailcap

2000-11-26 Thread awn
Martin Schweizer wrote: : Hello : : I convert with xlHtml and pptHtml (both on www.xlhtml.org) Microsofts .xls and .ppt : to .html files. This program send the result to standart output and not in a : file. : My .mailcap: : -snip- : application/x-msexcel; xlHtml %s test.html : -snip- : How

Re: problem using quoted printable encoding with gpg

2000-11-26 Thread awn
Anand Buddhdev wrote: : If I send a message with mutt 1.2, and sign it with gpg 1.0.4, and if the : message has no quoted printable encoding, then the recipient, also using : 1.2 and gpg 1.0.4, can verify the signature. : : However, if I send the same message with quoted-printable encoding

Re: How to compose plain PGP messages?

2000-11-26 Thread awn
Daniel Gonz?lez Gasull wrote: : Hello. I want to know how to compose plain PGP : messages within Mutt. Can it be done without any : script? If you use only ASCII (7 bit) characters then: set pgp_create_traditional For messages what contain 8bit data Mutt ignore settings of this

Re: Mailcap

2000-11-26 Thread Brian Salter-Duke
On Mon, Nov 27, 2000 at 04:25:10AM +0200, [EMAIL PROTECTED] wrote: Martin Schweizer wrote: : Hello : : I convert with xlHtml and pptHtml (both on www.xlhtml.org) Microsofts .xls and .ppt : to .html files. This program send the result to standart output and not in a : file. : My

Re: OT (sort of): VIM/ex/tr question

2000-11-26 Thread davidturetsky
:g/$/j worked for me David - Original Message - From: "John P. Verel" [EMAIL PROTECTED] To: "Mutt User List" [EMAIL PROTECTED] Sent: Sunday, November 26, 2000 8:36 PM Subject: Re: OT (sort of): VIM/ex/tr question Per Steve Kirkendall in comp.editors, this works: :g/\s/j One must

Re: OT (sort of): VIM/ex/tr question

2000-11-26 Thread davidturetsky
Actually you could search for any present character on the line. For example: :g/./j :g/^/j :g/$/j :g/[a-z]/j would all work -- David --- richSOB.com - Original Message - From: "davidturetsky" [EMAIL PROTECTED] To: "Mutt User List" [EMAIL PROTECTED] Sent: Sunday, November

Re: OT (sort of): VIM/ex/tr question

2000-11-26 Thread John P. Verel
On 11/26/00, 10:17:08PM -0500, davidturetsky wrote: :g/$/j Yes, it does. But I can't figure out why it should. $ indicates last line in stdin, right? So, how does this work?

Re: OT (sort of): VIM/ex/tr question

2000-11-26 Thread davidturetsky
The command says, 'search for every line where an end of line is present and join it with the next line' When used in pattern matching, $ is a reference to the end of the line -- David --- richSOB.com - Original Message - From: "John P. Verel" [EMAIL PROTECTED] To:

OT (sort of): VIM/ex/tr question

2000-11-26 Thread davidturetsky
Actually you could search for any present character on the line. For example: :g/./j :g/^/j :g/$/j :g/[a-z]/j would all work -- David --- richSOB.com - Original Message - From: "davidturetsky" [EMAIL PROTECTED] To: "Mutt User List" [EMAIL PROTECTED] Sent: Sunday,

Re: Mailcap

2000-11-26 Thread awn
Brian Salter-Duke wrote: : : Does not : : application/x-msexcel; xlHtml %s | lynx -dump; copiousoutput : : work? : No. Lynx can't read html page from stdin. -- Andrew W. Nosenko([EMAIL PROTECTED])

Re: Multiple commands in a single hook

2000-11-26 Thread Gary Johnson
On Sun, Nov 26, 2000 at 02:39:42PM +1100, Tom Nott wrote: I'm trying to create a send hook that both sets $signature and does a my_hdr in the one go. So, is there any way of executing multiple commands with *one* send-hook apart from putting them into a separate file and sourcing them? I've

Re: Multiple commands in a single hook

2000-11-26 Thread Michael Tatge
Tom Nott muttered: I'm trying to create a send hook that both sets $signature and does a my_hdr in the one go. send-hook 'regex' 'set signature=~/.signature; my_hdr X-Hello: Hi I'm Mutt!' HTH, Michael -- VMS version 2.0 == PGP-Key: http://www.stud.ims.uni-stuttgart.de/~tatgeml/public.key