Re: Mutt hanging on color

2000-06-29 Thread Wari Wahab
Oh man, it works!! But I have brightyellow almost everywhere in the .mutt.color.body.. color header brightyellow default .* color body brightyellow default "\\\([-A-Z']{2,}[ ,]*\)+" color body brightyellow red "1-[0-9]{3}[- ][-0-9]+ +ext.? [0-9]+" color body brightyellow default "\\(c\\)"

Re: Mutt hanging on color

2000-06-29 Thread Suresh Ramasubramanian
Wari Wahab proclaimed on mutt-users that: Oh man, it works!! But I have brightyellow almost everywhere in the .mutt.color.body.. !?!?! It's the same terminal anyway, fscked if I know what's up :) -suresh color header brightyellow default .* color body brightyellow default "\\\([-A-Z']{2,}[

Re: Mutt hanging on color

2000-06-29 Thread David Porter
This is curious enough to investigate... * Suresh Ramasubramanian [EMAIL PROTECTED]: Wari Wahab proclaimed on mutt-users that: # SCREAMING TEXT (often used in spam) color body brightyellow default" \([-A-Z']{2,}[ ,]*\)+" Maybe your terminal doesn't understand a color called

Re: feature request: delayed delete

2000-06-29 Thread Eugene Lee
On Wed, Jun 28, 2000 at 02:06:02PM +0200, Marius Gedminas wrote: :On Wed, Jun 28, 2000 at 02:14:28AM -0700, Eugene Lee wrote: : : Besides tagging messages by absolute datetimes, this could be extended : to your specific problem by allowing relative datetime patterns. So you : could do things

Re: Mutt hanging on color

2000-06-29 Thread Thomas Roessler
On 2000-06-29 14:46:31 +0800, Wari Wahab wrote: color body brightyellow default" \([A-Z']{2,}[ ,]*\)+" As a general rule, try to avoid regular expressions which nest multiple instances of "+" and "*". They tend to take very long to apply. Note, BTW, that the grouping and the trailing

Re: Mutt hanging on color

2000-06-29 Thread Thomas Dickey
On Thu, Jun 29, 2000 at 11:17:45AM +0530, Suresh Ramasubramanian wrote: Wari Wahab proclaimed on mutt-users that: # SCREAMING TEXT (often used in spam) color body brightyellow default" \([-A-Z']{2,}[ ,]*\)+" Maybe your terminal doesn't understand a color called brightyellow? Try

how to colorize the entire line of selected messages ?

2000-06-29 Thread Virginie \[ ML \]
Hi, Does anybody know how I could color the entire line of selected messages in front of the indicator ? I've set : indicator brightcyan black But as you know it just colors the arrow and I didn't find any other options :( And I'm not sure at all that it must be defined in the indicator's

Re: how to colorize the entire line of selected messages ?

2000-06-29 Thread Suresh Ramasubramanian
Virginie [ ML ] proclaimed on mutt-users that: Hi, Does anybody know how I could color the entire line of selected messages in front of the indicator ? I've set : indicator brightcyan black But as you know it just colors the arrow and I didn't find any other options :( And I'm not sure at all

Re: how to colorize the entire line of selected messages ?

2000-06-29 Thread cgreen
On Thu, Jun 29, 2000 at 01:16:56PM +0200, Virginie [ ML ] wrote: Hi, Does anybody know how I could color the entire line of selected messages in front of the indicator ? I've set : indicator brightcyan black But as you know it just colors the arrow and I didn't find any other options :(

Re: how to colorize the entire line of selected messages ?

2000-06-29 Thread Virginie \[ ML \]
On Thu, Jun 29, 2000 at 03:58:15PM +0530, Suresh Ramasubramanian wrote: Heh ... just put this line into your .muttrc unset arrow_cursor That way, the entire message will be highlighted by a bar - like in pine. hth -suresh It works fine ! I'm so happy, Thank you :) -- Virginie Vacca

Re: Mutt hanging on color

2000-06-29 Thread Wari Wahab
Alright, this works as well ;) I have no idea what the regexp refer to though and yours is considerably easier to understand.. The question still remains though, why does mutt freeze.. * Thomas Roessler [EMAIL PROTECTED] [000629 15:44]: On 2000-06-29 14:46:31 +0800, Wari Wahab wrote:

Re: those users

2000-06-29 Thread Kai Blin
On Wed, Jun 28, 2000 at 07:30:23AM -0400, David T-G wrote: % Come to think of it: the first section in the "How do I..." stuff should be % How do I ask questions correctly, How do I read the manual and What the hell Actually, that sounds like a very very good idea. Perhaps the first part

Re: Mutt hanging on color

2000-06-29 Thread Thomas Roessler
On 2000-06-29 19:42:26 +0800, Wari Wahab wrote: The question still remains though, why does mutt freeze.. Simple: The regexp library hangs when trying the regular expression. I don't believe it's an endless loop - most likely, mutt will continue to work in an hour or two. ;-)

Removing a prefix from the subject of messages

2000-06-29 Thread Jose Romildo Malaquias
Hello. I want to remove a prefix from the messages coming from a mailing list I am subscribed before saving the messages in its folder. Currently my procmail recipes for saving the message is DUMMY=`test -d linux-br || mkdir linux-br` :0: * ^[EMAIL PROTECTED]

Re: Removing a prefix from the subject of messages

2000-06-29 Thread Dirk Pirschel
* Jose Romildo Malaquias wrote on Thu, 29 Jun 2000: [procmail question] Please use the procmail list [EMAIL PROTECTED] -Dirk

Re: Qmail isn't delivering to MAILDIR/new....?

2000-06-29 Thread Jason Helfman
I don't understand it but when I send a message through echo to: deklown | /var/qmail/bin/qmail-insert . it is delivered to my box in Maildir format perfectly. I do it through telnet to my actual email address, it is delivered in mbox format to /var/spool/mail/$USER If I take out my

Re: Removing a prefix from the subject of messages

2000-06-29 Thread Lars Hecking
If you can comfortably accept that all Subject: lines look like Subject: .*(linux-br) ... then just turn your recipe into a clone/copy recipe and pipe the message through sed -s "s/^Subject: .*(linux-br) /Subject: /" and then proceed as normal. D'oh. That's a job for

Re: Removing a prefix from the subject of messages

2000-06-29 Thread Jose Romildo Malaquias
On Thu, Jun 29, 2000 at 11:39:27AM -0400, David T-G wrote: ...and then Jose Romildo Malaquias said... % % I want to remove a prefix from the messages coming ... % % The subject header line comes with one of the prefixes % "(linux-br) ", "Re: (linux-br) ", "Re: Re: (linux-br) ", % and

Re: Removing a prefix from the subject of messages

2000-06-29 Thread David T-G
Lars -- ...and then Lars Hecking said... % % If you can comfortably accept that all Subject: lines look like % %Subject: .*(linux-br) ... % % then just turn your recipe into a clone/copy recipe and pipe the message % through % %sed -s "s/^Subject: .*(linux-br) /Subject: /" %

Re: Removing a prefix from the subject of messages

2000-06-29 Thread David T-G
Romildo -- ...and then Jose Romildo Malaquias said... % On Thu, Jun 29, 2000 at 11:39:27AM -0400, David T-G wrote: % %sed -s "s/^Subject: .*(linux-br) /Subject: /" % ^^ You're right, of course; thanks for catching my typo. % % As am not an experienced procmail user, would you

Re: Removing a prefix from the subject of messages

2000-06-29 Thread Lars Hecking
% D'oh. That's a job for procmail's MATCH and formail. No need for an % external program. Well, I thought about that, and formail is a called program at the same level as sed, but I didn't know how to strip part of the Subject: line with formail :-) As always, I realised that

UTF-8?

2000-06-29 Thread Marius Gedminas
Can Mutt 1.2 handle UTF-8? When I have $charset="iso-8859-13", and $send_charset="utf-8", bad things happen. BTW, I have glibc 2.1.3. Marius Gedminas -- Hoping the problem magically goes away by ignoring it is the "microsoft approach to programming" and should never be allowed.

Help on save-hook please

2000-06-29 Thread Rino Mardo
Hi. I've been running mutt for several days now and also managed to setup my own procmail recipes. My problem is with the the save-hook as I want to be able to save read messages to, let's say, a "Mail\read.mutt" file. This is my present ~/.muttrc contents for the save-hook: folder-hook . set

Re: Mail-Followup-To and Reply-To

2000-06-29 Thread Hugo Haas
[ Sorry, there is no In-Reply-To field because I forgot to set the correct headers in my original message, and I couldn't extract the message-id from the archive... ] On 2000-06-27, fman wrote: try my_hdr From: [EMAIL PROTECTED] My suggestion wasn't clear enough. Here's what I was

Re: Help on save-hook please

2000-06-29 Thread Mikko Hänninen
Rino Mardo [EMAIL PROTECTED] wrote on Wed, 28 Jun 2000: My problem is with the the save-hook as I want to be able to save read messages to, let's say, a "Mail\read.mutt" file. Do you want to save read messages automatically when you exit a folder, or do you want to specify the default folder

Re: Can't compile mutt 1.3.4

2000-06-29 Thread Mark Berry
On Thu, Jun 29, 2000 at 12:39:26AM +0200, Thomas Roessler wrote: checking for iconv... yes checking whether this iconv is good enough... no configure: error: Try using libiconv instead Get libiconv from http://clisp.cons.org/~haible/. I downloaded libiconv-1.3.tar.gz and followed the

Re: Mail-Followup-To and Reply-To

2000-06-29 Thread Mikko Hänninen
Hugo Haas [EMAIL PROTECTED] wrote on Tue, 27 Jun 2000: Hi. Hello! I read a lot about Mail-Followup-To and Reply-To recently (including in the mutt-users archive) and my conclusion is that: - Mail-Followup-To is not a standard and is supported by very few MUA's. Well, it's not a standard in

Re: Browser sorting by date and maildirs

2000-06-29 Thread Mikko Hänninen
Morten Bo Johansen [EMAIL PROTECTED] wrote on Sun, 25 Jun 2000: sort_browser=reverse-date It doesn't work, however, since I'm using maildirs and without assigning a lock file during procmail delivery then no time stamp is set on the mailbox folder and therefore Mutt cannot sort the

Re: Can't compile mutt 1.3.4

2000-06-29 Thread David Champion
On 2000.06.29, in [EMAIL PROTECTED], "Mark Berry" [EMAIL PROTECTED] wrote: On Thu, Jun 29, 2000 at 12:39:26AM +0200, Thomas Roessler wrote: checking for iconv... yes checking whether this iconv is good enough... no configure: error: Try using libiconv instead Get libiconv

Re: Can't compile mutt 1.3.4

2000-06-29 Thread Lars Hecking
David Champion writes: On 2000.06.29, in [EMAIL PROTECTED], "Mark Berry" [EMAIL PROTECTED] wrote: On Thu, Jun 29, 2000 at 12:39:26AM +0200, Thomas Roessler wrote: checking for iconv... yes checking whether this iconv is good enough... no configure: error: Try using libiconv

Re: those users (was Re: Reply to all???)

2000-06-29 Thread Thomas Ribbrock
On Tue, Jun 27, 2000 at 12:08:28PM -0400, David T-G wrote: [...] for starters? Heck, maybe the Muttrc included in RPMs could pop up a message saying "Don't ask; read first" until the user figures out how to get rid of it, [...] Hm, maybe for a start I could put a few big, red "Read the

Re: those users (was Re: Reply to all???)

2000-06-29 Thread Marius Gedminas
On Fri, Jun 30, 2000 at 01:32:41AM +0100, Thomas Ribbrock wrote: On Tue, Jun 27, 2000 at 12:08:28PM -0400, David T-G wrote: [...] for starters? Heck, maybe the Muttrc included in RPMs could pop up a message saying "Don't ask; read first" until the user figures out how to get rid of it,

Re: Mail-Followup-To and Reply-To

2000-06-29 Thread Stan Ryckman
At 11:55 PM 6/29/00 +0300, Mikko Hänninen wrote: [...] I'm also not aware of whether there is any specified way to have Reply-To set to more than one address. You can either have multiple Reply-To headers, one address per header, or you can have multiple addresses in one header. I think that in

Re: Removing a prefix from the subject of messages

2000-06-29 Thread David Champion
On 2000.06.29, in [EMAIL PROTECTED], "Lars Hecking" [EMAIL PROTECTED] wrote: D'oh. That's a job for procmail's MATCH and formail. No need for an external program. No, but it's easier with an external program, because procmail's $MATCHing is so weak. Here's my old procmail matcher

Re: Mail-Followup-To and Reply-To

2000-06-29 Thread Mikko Hänninen
Stan Ryckman [EMAIL PROTECTED] wrote on Thu, 29 Jun 2000: It's perfectly fine, and has been since at least RFC-822 (1982). Of course, that doesn't mean that there aren't broken MUAs out there... And what's the proper way of doing multiple addresses? One, single Reply-To or multiple headers?

Re: Removing a prefix from the subject of messages

2000-06-29 Thread David T-G
Romildo -- ...and then Jose Romildo Malaquias said... % Hello. Hi! % % I want to remove a prefix from the messages coming ... % % The subject header line comes with one of the prefixes % "(linux-br) ", "Re: (linux-br) ", "Re: Re: (linux-br) ", % and so on (without the quotes). This is

Re: Help on save-hook please

2000-06-29 Thread Rino Mardo
On Thu, Jun 29, 2000 at 11:33:33PM +0300 or thereabouts, Mikko Hänninen wrote: snipped... folder-hook . save-hook * =received The * should be a . instead, like this: folder-hook . save-hook . =received Hmm, that could be the reason why I'm getting a repetition operand invalid.