Find Related Mails

2002-07-16 Thread Nelson D. Guerrero

Is there a way to bind a key that searches all the mdirs/ for related
messages? I've been searching up on that and can't find a thing. Has
anyone tried it?

--
Nelson D. Guerrero



Re: Mutt users ml downloadable archives

2002-07-16 Thread Alain Bench

 On Friday, July 12, 2002 at 6:56:42 AM -0500, David Thorburn-Gundlach wrote:

%| From Michael Elkins [EMAIL PROTECTED] Fri Jul 31 00:32:50 1998
 The [yahoo2mbox.pl] script generated valid From_ lines for me
 (probably since I didn't try unmunging)

No, I get the same bad From_ separator with or without unmunging.
Same also with version 0.06 which didn't have the unmunging function.
Both scripts seem to be aware of the problem, and try to make something
against it. Something unfortunately not working here. I don't know Perl,
so don't know what this means, but there is:

| if ( $line =~ /^From / ) {
| # mutt (and probably others) doesn't like Foo Bar foo@...
| # in the From  lines, so leave just the envelope address
| # which is the standard
| $line =~ s/.* //;
| }


Bye!Alain.



Re: reverse_name and send-hook

2002-07-16 Thread Michael Elkins

Gregory Seidman wrote:
 It looks like the solution may be to set $from to the reflector and use a
 hook to set From to the local address for local mail. Is there any other
 way? I'd *really* like a pattern for whether reverse_name has found
 something or not.

This type of information doesn't really fit into the send-hook pattern
neatly.  I think the same functionality could be implemented by adding
another boolean variable to control whether or not the address set by
reverse_name can be overridden by a subsequent my_hdr command.  So you
could instead do something like:

set nooverride_reverse_name
send-hook . 'unmy_hdr from'
send-hook 'pattern' 'my_hdr from: foo@bar'

This would cause the my_hdr command to only have effect when not doing a
reply to a message which matched $alternates.

Comments?



pop3 and ssl

2002-07-16 Thread Andre Floeter

Hello,
I am new to the list, so please, excuse if this question has already been
answered several times:

I configured MUTT to get my mail from a pop3 account via ssl. But every time
it checks for mail, I will be asked to accept some fingerprint. How do I
get MUTT to only ask me once per session (and not every 60 seconds)?

Thanks for the help!
Cheers, Andre



Re: pop3 and ssl

2002-07-16 Thread Ralf Hildebrandt

On Tue, Jul 16, 2002 at 11:08:43AM +0200, Andre Floeter wrote:
 Hello,
 I am new to the list, so please, excuse if this question has already been
 answered several times:
 
 I configured MUTT to get my mail from a pop3 account via ssl. But every time
 it checks for mail, I will be asked to accept some fingerprint. How do I
 get MUTT to only ask me once per session (and not every 60 seconds)?

set imap_user=username
set imap_pass=password
set certificate_file=~/.mutt/certificates

-- 
Ralf Hildebrandt (Im Auftrag des Referat V A)   [EMAIL PROTECTED]
Charite Campus Virchow-Klinikum Tel.  +49 (0)30-450 570-155
Referat V A - Kommunikationsnetze - Fax.  +49 (0)30-450 570-916
I wish you'd tell me what kind of systems they're using instead,
because HP can't be doing much worse than Sun would you like the
compiler or internet options with that Microsystems, or Silicon hey
be glad the support-contract number isn't a 1-900 Graphics. Then
there's Digital It sucks in 64 bits, you can't suck in 64 bits
anywhere else Equipment Corp (Did we mention it's 64 bits?). 




save_alias patch and maintree

2002-07-16 Thread Stephan Seitz

Hi!

I'm using the save_alias patch for a long time now (version 1.1.1). It
works even with mutt 1.4.

I wonder what were the reasons it isn't in the main sourcetree.
The patch is small and very useful, or so I think ;-)
For those who doesn't know it a short explanation:
If you hit 's' to save a mail and there is an alias for this sender
the default savebox will be the alias name not the part of the mail
address. You have to activate the patch with set save_alias.

I talked with the Debian maintainer to include it, but he wishes to
know the reasons before he thinks about it.

Shade and sweet water!

Stephan

-- 
| Stephan Seitz   E-Mail: [EMAIL PROTECTED] |
|  WWW: http://fsing.fs.uni-sb.de/~stse/|
| PGP Public Keys: http://fsing.fs.uni-sb.de/~stse/pgp.html |



msg29711/pgp0.pgp
Description: PGP signature


Re: Mutt users ml downloadable archives

2002-07-16 Thread Rocco Rutte

Hi,

* Alain Bench [02-07-16 12:22:56 +0200] wrote:
 I don't know Perl, so don't know what this means, but
 there is:

 | if ( $line =~ /^From / ) {
[...]
 | $line =~ s/.* //;
 | }

If a line starting with ``From '' is found, this one removes
everything between double-quotes and the following space.
Example:

| From Foo Bar foo@bar ...

gets:

| From foo@bar ...

   bye, Rocco



Re: Viewing both text and image

2002-07-16 Thread John P Verel

This also works, using ee as the client to view graphic images:

Mailcap entries

image/gif; ~/bin/spawn ee %s
image/jpg; ~/bin/spawn ee %s
image/jpeg; ~/bin/spawn ee %s

~/bin/spawn is the following script:

#!/bin/sh
cp $2 $2.tmp
($1 $2.tmp;rm -f $2.tmp) 

John
On 07/15/02 14:25 -0700, Gary Johnson wrote:
 On Mon, Jul 15, 2002 at 01:41:57PM -0700, Jim Osborn wrote:
  I'm on a list where most of the traffic consists of a paragraph or two
  of text and an accompanying chart as an image attachment.  I really
  need to be able to see the image as I read the text, and it'd be nice
  to be able to do that within Mutt.  I haven't figured out how to get
  the image to xv without going into the ``v'' attachment menu, which
  hides the text part of the mail.




automatic pgp key import

2002-07-16 Thread Viktor Rosenfeld

Hi,

I noticed, that some while ago, mutt or gnupg stopped to automatically
load a key from a keyserver, when it's not on my keyring.  Maybe, I
disabled that myself, I don't remember.

I searched the documentation on how to re-enable it, but couldn't find
anything.  I have the following in my muttrc:

set pgp_getkeys_command=gpg --no-verbose --recv-keys %f

Thanks,
Viktor
-- 
Viktor Rosenfeld
WWW: http://www.informatik.hu-berlin.de/~rosenfel/



msg29714/pgp0.pgp
Description: PGP signature


Re: automatic pgp key import

2002-07-16 Thread Justin R. Miller

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Said Viktor Rosenfeld on Tue, Jul 16, 2002 at 04:59:39PM +0200:

 I noticed, that some while ago, mutt or gnupg stopped to automatically
 load a key from a keyserver, when it's not on my keyring.  Maybe, I
 disabled that myself, I don't remember.
 
 I searched the documentation on how to re-enable it, but couldn't find
 anything.  I have the following in my muttrc:
 
   set pgp_getkeys_command=gpg --no-verbose --recv-keys %f
 

Check the upgrade notes to GnuPG 1.0.7.  I believe you need: 

keyserver-options auto-key-retrieve

- -- 
[!] Justin R. Miller [EMAIL PROTECTED]
Encrypted email preferred (key 0xC9C40C31)
Mutt/GnuPG guide at http://codesorcery.net

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (FreeBSD)

iD8DBQE9NDsB94d6K8nEDDERApIcAJ4svANDr0p3MSKaStfYTZI6lPGiNACghOA+
EY+qNuaX/V0IGe27Ize39JA=
=Y0f/
-END PGP SIGNATURE-



Re: automatic pgp key import

2002-07-16 Thread Peter T. Abplanalp

On Tue, Jul 16, 2002 at 11:25:53AM -0400, Justin R. Miller wrote:
 Check the upgrade notes to GnuPG 1.0.7.  I believe you need: 
 
   keyserver-options auto-key-retrieve

minor clarification: you need to put the above in your gnupg options
file not in any of the muttrc pgp stuff.

-- 
Peter Abplanalp

Email:   [EMAIL PROTECTED]
PGP: pgp.mit.edu



msg29716/pgp0.pgp
Description: PGP signature


Re: Viewing both text and image

2002-07-16 Thread David Champion

* On 2002.07.15, in [EMAIL PROTECTED],
*   Jim Osborn [EMAIL PROTECTED] wrote:
 to be able to do that within Mutt.  I haven't figured out how to get
 the image to xv without going into the ``v'' attachment menu, which
 hides the text part of the mail.

I'll assume that the other postings describing how to run a viewer
asynchronously work well.

To make this happen without entering the attachments menu, you'll also
need to set an autoview for the image type you're dealing with:
auto_view image/jpeg
for example.

However, that will make mutt view all JPEGs automatically -- not
necessarily what you want. You could try tricks with message-hooks --
for example:

message-hook .   unauto_view image/jpeg
message-hook ~f list   auto_view image/jpeg

Or you could set up a macro that does auto_view, then displays the
message, then unauto_views. This won't have the overhead of executing
hooks for every message you read, but it would require you to recall and
use a different keystroke.

Or you could play with changing the MIME type of the image, either
through procmail or using (again) message-hooks. This would allow you to
get what you want on these messages particularly, without necessarily
running the image viewer asynchronously on other message with JPEG
attachments.

As usual, there are arguable advantages to any approach.

-- 
 -D.Fresh fruit enriches everyone.  Takes the thirst
 ENSA, NSIT out of everyday time.  A pure whiff of oxygen,
 University of Chicago  painting over a monochrome world in primary colors.
 [EMAIL PROTECTED]   We all know that.  It's why everyone loves fruit.



Re: Mutt users ml downloadable archives

2002-07-16 Thread Alain Bench

Hello Rocco,

 On Tuesday, July 16, 2002 at 12:27:35 PM +0200, Rocco Rutte wrote:

 If a line starting with ``From '' is found, this one removes
 everything between double-quotes and the following space.

Thanks for the explanation. That's what I feared: it doesn't work
most of the time, without double quotes around name... will report this
to yahoo2mbox.pl author.


Bye!Alain.



Re: Mutt users ml downloadable archives

2002-07-16 Thread Patrick

* Alain Bench [EMAIL PROTECTED] [07-16-02 12:28]:
  If a line starting with ``From '' is found, this one removes
  everything between double-quotes and the following space.
 
 Thanks for the explanation. That's what I feared: it doesn't work
 most of the time, without double quotes around name... will report this
 to yahoo2mbox.pl author.
 Bye!  Alain.

Alain, you might look at FetchYahoo.pl.
http://freshmeat.net/projects/fetchyahoo/?topic_id=861%2C32
or  http://web.mit.edu/ravir/fetchyahoo/index.html

It works very well.  I use it for 2 accounts on yahoo mail.
-- 
Patrick Shanahan
Registered Linux User #207535 
  @ http://counter.li.org



Re: reverse_name and send-hook

2002-07-16 Thread Alain Bench

[followups set to mutt-users only]

Hello Gregory,

 On Tuesday, July 16, 2002 at 12:09:29 PM -0400, Gregory Seidman wrote:

 I'd love to be able to set the Reply-To to be whatever the From
 happens to be, i.e. all mail I send has a Reply-To matching the From

You want the same address in Reply-To: as in From:? What for?


Bye!Alain.



Re: reverse_name and send-hook

2002-07-16 Thread Gregory Seidman

Alain Bench sez:
} [followups set to mutt-users only]
} 
} Hello Gregory,
} 
}  On Tuesday, July 16, 2002 at 12:09:29 PM -0400, Gregory Seidman wrote:
} 
}  I'd love to be able to set the Reply-To to be whatever the From
}  happens to be, i.e. all mail I send has a Reply-To matching the From
} 
} You want the same address in Reply-To: as in From:? What for?

Generally to work around stupid mailing lists and stupid mail clients. Some
mailing lists don't put in the proper reply-to, which means that normal
replies go to the list as a whole. Some mail clients use the envelope
rather than the From header, and I don't want to use $envelope_from because
at least my sendmail setup gives a warning about -f being used.

} Bye!  Alain.
--Greg




pgp problems...

2002-07-16 Thread jbw

I'm using mutt 1.4 and gpg 1.07.

Until I upgraded to mutt 1.4 I couldn't read encrypted messages that
were sent to me. I had to save the whole msg as a text file and decrypt it
from the commandline with gpg.  With 1.4 I'm able to do ESC Shift P to
read encrypted messages that are sent to me in the traditional format.

Problem...

When I receive mime encoded msgs I can't read it and mutt reports that
the signature couldn't be verified even though the screen output
reports a good signature. And I can't read the msg unless I press v
to go to the attachment menu.
Save the whole thing as a text file. Then I have to
run gpg --decrypt once which verifies the signature and then run gpg again
on that output to decrypt the msg.  Why is that happening?  Below
is the from the mime messages which I can't read..



[-- PGP output follows (current time: Tue Jul 16 17:11:22 2002) --] 
gpg: Warning: using insecure memory!
gpg: please see http://www.gnupg.org/faq.html for more information  
gpg: Signature made Tue Jul 16 17:04:12 2002 EDT using DSA key ID B1D7GC04  
gpg: Good signature from. 

[-- End of PGP output --]   

[-- BEGIN PGP SIGNED MESSAGE --]

Mime-Version: 1.0   
Content-Type: text/plain; charset=us-ascii; format=flowed 

-BEGIN PGP MESSAGE- 
Version: PGPfreeware 7.0.3 for non-commercial use http://www.pgp.com  

qANQR1DBwU4DaFehRmw9FpoQB/9jUSMKeGpEtmB/N9AqllIyu0VouuKFV8hhgq35
ABSKznbHCB8tIjr5jnAZCV2X1ZgOrkTvlX39kPAormbup3TD3DmHtx1/rUceQFDs



When I receive emails like the following I can just do ESC Shift P to read it.

[-- PGP output follows (current time: Tue Jul 16 17:36:26 2002) --] 
gpg: Warning: using insecure memory!
gpg: please see http://www.gnupg.org/faq.html for more information  
gpg: Signature made Tue Jul 16 00:09:16 2002 EDT using DSA key ID B1D7GC04  
gpg: Good signature from  
[-- End of PGP output --]   

[-- The following data is signed --]

-BEGIN PGP MESSAGE- 
Version: PGPfreeware 7.0.3 for non-commercial use http://www.pgp.com  

qANQR1DBwU4DaFehRmw9FpoQCACeqgEe7R824wj6/5k+S6ZIP4gj7VQUvN+7ObMV
HEhEl0/veB3kb1A0IHMUgJBfP0kOIICn+AcfFzDAWcN7TKFgyLS4VHa+YklxDJkH


Is this a problem with mutt or gpg?

TIA

jbw



msg29723/pgp0.pgp
Description: PGP signature


html viewer config problem?

2002-07-16 Thread mjbjr

The newest mutt complains it can't find:

   h: lynx-dump: command not found

when I want to view html messages.  I had no problem doing this with previous
versions of mutt.  I have grepped through the master mutt config file:

   /usr/local/etc/Muttrc

and couldn't seem to find the the place to set the html viewer app.

I do I set this?

Thank you.

-- 
- Martin J. Brown, Jr. -   
- [EMAIL PROTECTED] -   
   
  Public PGP Key ID: 0xDB184F7B keyserver: http://certserver.pgp.com/



msg29724/pgp0.pgp
Description: PGP signature