Re: repondre a tous ?

2002-10-07 Thread Olivier Tharan

* Maxime GLAIZOT [EMAIL PROTECTED] (20021007 14:08):
 Lorseque je fait un repondre a tous (g), a chaque fois je suis dans
 la liste des personne a qui le mail a ete envoyer (si je n'etait
 aps le destinataire principale.
 Comment puis je faire pour que je ne soit plus dans la liste te
 que j'arrete de l'emvoyer des message a moi meme...

Regarde la variable 'metoo' dans la documentation de mutt (manual.txt).
Par défaut elle est à 'no', ce qui veut dire que la réponse n'inclut pas
soi-même.

Sinon, 'alternates' indique toutes les adresses sur lesquelles tu reçois
tu mail.

olive
-- 
First off, I'd suggest printing out a copy of the GNU coding standards,
and NOT read it.  Burn them, it's a great symbolic gesture.



Re: Creating Aliases from sent messages?

2002-10-07 Thread darren chamberlain

* John P Verel [EMAIL PROTECTED] [2002-10-06 19:31]:
 This worked just as promised!  Cleaning out the Message-IDs was no big
 deal.  Thanks a million Darren!  Forgive my delay in responding, but I
 just found time to do this today.

Nice.  I banged it out pretty quickly.

 I piped the output to a file.  The only thing I had to then do was to
 prepend the word 'alias' and a dummy alias (I used numbers) before each
 address, so as to make the list work with mutt.  (I did this via a
 spreadsheet)  I am a COMPLETE Perl novice, so please forgive this
 question, but how could the script be modified to automate this
 prepending?

Change the last line (the print line) to read:

  print map alias $_\n, sort keys %addrs;

Which will give you a list like:

  alias [EMAIL PROTECTED]
  alias [EMAIL PROTECTED]

(darren)

-- 
Pohl's law: Nothing is so good that somebody, somewhere, will not hate
it.



Re: case-insensitive scoring patterns

2002-10-07 Thread Rocco Rutte

Hi,

* Michael Elkins [02-10-05 23:15:05 +0200] wrote:
 Rocco Rutte wrote:

[...]
score '~s \[?[Mm][Uu][Tt][Tt]\]?' ...

 If you specify all lowercase letters, Mutt will
 automatically use a case-insensitive search.  If you use
 at least one uppercase letter, Mutt assumes case-sensitive
 search.  This works for all use of the pattern language.

Hmm, I thought so, too, and tried it before I asked the list
for help because I doesn't work. I use:

   score '(~s \[?[Mm][Uu][Tt][Tt]\]? ) ~w $newsgroup' +100

...which works as intended while:

   score '(~s \[?mutt\]? ) ~w $newsgroup' +100

...is applied to all messages and doesn't work.

   bye, Rocco



looping through a macro w/ tagged messages?

2002-10-07 Thread Kurt Lieber

I have the following macro defined to report spam to Razor:

macro index S| ~/spamassassin/usr/bin/spamassassin -renterd

This works great on a message-by-message basis.  However, given the amount
of spam that I receive, it would be nice to be able to mass-report several
emails at once.

From my reading of the manual, tags appear to be what I want, but I haven't
been able to get them to work.  So far, I've just tried prepending the
tag-prefix operator (;) and then hitting the macro.  Is there something
special I need to do in order to get this to work properly?

--kurt



Re: Mails sorting

2002-10-07 Thread Elimar Riesebieter

On Mon, 07 Oct 2002 the mental interface of 
Fred told:

 Hi,
 
 Using $sort, $sort_aux, $sort_browsing (that's what Ive tried) I
 would like to sort my mails by threads so that when a new mail
 which belongs to a previous thread, arrives, mutt moves the
 freshly updated thread at the top of the index.  Currently, the
 mail is just put in a thread, and I have to scroll down to see the
 incoming mails.

You can browse very easy using tab jumping from one new mail to
the next!

HTH

Elimar

-- 
  Numeric stability is probably not all that 
  important when you're guessing;-).
  [Testing Michael Elkin's patch-1.5-me.color_eol.1]



Re: Mails sorting

2002-10-07 Thread Chris Huseman

On Mon, Oct 07, 2002 at 10:50:32AM +0200, Fred wrote:
 Using $sort, $sort_aux, $sort_browsing (that's what Ive tried) I would
 like to sort my mails by threads so that when a new mail which belongs
 to a previous thread, arrives, mutt moves the freshly updated thread
 at the top of the index.
 Currently, the mail is just put in a thread, and I have to scroll down
 to see the incoming mails.


I use this:

  set sort = threads
  set sort_aux = last-date-received

But then again, I prefer to have new mail added to the bottom of my
index.  It sounds like you'd prefer this?

  set sort = reverse-threads
  set sort_aux = date-received

There are other sorting options as well, check the docs:
http://www.mutt.org/doc/manual/manual-6.html

HTH,
-chris



Re: case-insensitive scoring patterns

2002-10-07 Thread Sven Guckes

* Rocco Rutte [EMAIL PROTECTED] [2002-10-07 13:14]:
score '(~s \[?[Mm][Uu][Tt][Tt]\]? ) ~w $newsgroup' +100
 ...which works as intended while:

score '(~s \[?mutt\]? ) ~w $newsgroup' +100

 ...is applied to all messages and doesn't work.

~w?  using some patches, i presume?  nntp?

besides, as the square brackets are optional you
might as well leave them out.   so how about these?
 score '~s mutt ~w $newsgroup' +100
 score ~s mutt ~w $newsgroup +100

Sven



Re: case-insensitive scoring patterns

2002-10-07 Thread Michael Elkins

Rocco Rutte wrote:
 Hmm, I thought so, too, and tried it before I asked the list
 for help because I doesn't work. I use:
 
score '(~s \[?[Mm][Uu][Tt][Tt]\]? ) ~w $newsgroup' +100
 
 ...which works as intended while:
 
score '(~s \[?mutt\]? ) ~w $newsgroup' +100
 
 ...is applied to all messages and doesn't work.

I think your quoting is the problem.  Try this one instead:

score '(~s \\[?mutt\\]? ) ~w $newsgroup' +100

That will make the regexp on the subject come out to
\[?mutt\]?
instead of
[?mutt]?
which means something else quite entirely.



mut_dotlock and compressed folders patch

2002-10-07 Thread Jose Romildo Malaquias

Hello.

I have noticed that the pre-packaged mutt in RHL 8.0
(and also in prior versions) is compiled with the
options --disable-flock and --enable-fcntl and that
building the package does not produce any external
dotlock program (mutt_dotlock). When I customize the
package to add support for compressed folders (compressed
folder patch by Roland Rosenfeld) or nntp (nntp patch by
Vsevolod Volkov), while keeping the above options, the
building process adds support for external dotlock
and also instals the mutt_dotlock program. Does anybody
has noticed this behaviour and would comment on it? I want
the support for compressed folders and nntp, but I do not
want to use an external dotlock program. Is that possible?

Regards,

Romildo
-- 
Prof. José Romildo Malaquias[EMAIL PROTECTED]
Departamento de Computação   [EMAIL PROTECTED]
Univ. Federal de Ouro Preto  http://uber.com.br/romildo



Re: Creating Aliases from sent messages?

2002-10-07 Thread John P Verel


On 10/07/02 08:40 -0400, darren chamberlain wrote:
 
 Change the last line (the print line) to read:
 
   print map alias $_\n, sort keys %addrs;
 
 Which will give you a list like:
 
   alias [EMAIL PROTECTED]
   alias [EMAIL PROTECTED]
Many thanks!

John