Search addresses - possible?

1999-07-12 Thread Chris Green

'/' when viewing headers just searches the subject lines (I think), is
there any way to search through the To: address column?  I find that
this is almost always what I want to do when looking for some mail in
my sentmail folder.

-- 
Chris Green ([EMAIL PROTECTED])
  Home: [EMAIL PROTECTED]   Work: [EMAIL PROTECTED]
  WWW: http://www.isbd.co.uk/



Re: Search addresses - possible?

1999-07-12 Thread Frederic Gobry

> '/' when viewing headers just searches the subject lines (I think), is
> there any way to search through the To: address column?  I find that
> this is almost always what I want to do when looking for some mail in
> my sentmail folder.

Try: / ~t 

Basically, mutt supports lots of patterns for regexp matching (for specific
fields, date ranges,...). have a look at the manual, section 4.

Frédéric



Re: color/console vs. xterm

1999-07-12 Thread Lars Hecking


> > As for dtterm I'm not sure what sort of terminal
> > that is..?
> 
> Sun's terminal (supplied with CDE).
 
 Ergo it's *not* Sun's terminal.

 Many vendors ship CDE these days.



Re: Different signatures for each mailbox

1999-07-12 Thread David Thorburn-Gundlach

Mark --

...and then GARFiELD said...
% 
% Hi !

Hello!


% 
% Is it possible to use a different signature file for each mailbox ?

Yes.


% 
% I would like to have one signature, when I send emails from my "private-email" 
mailbox and another
% when I send from my work mailbox.

Sounds like you want something like

folder-hook .   'set signature=~/.sig-default'
folder-hook =private'set signature=~/.sig-private'
folder-hook =work   'set signature=~/.sig-work'

Note that you need the first case to provide a default, which might
actually just be your private or work sig; without that, you would
change into one box, switch sigs, and then never un-switch.


I set a number of things differently based on what mailbox I'm in, so
I just used

folder-hook =box1   'source $HOME/.muttrc-box1'
folder-hook =box2   'source $HOME/.muttrc-box2'

to source a special .muttrc, with all of the relevant commands, for
each case.


% 
% 
% ,-.
% > Mark Nellemann|   The squeaky wheel doesn't always get the grease.  <
% >   [EMAIL PROTECTED]   |  Sometimes it gets replaced.<
% `-'


:-D
-- 
David Thorburn-Gundlach * It's easier to fight for one's principles
(play) [EMAIL PROTECTED]  * than to live up to them. -- fortune cookie
(work) [EMAIL PROTECTED] Helping out at Pfizer
http://www.bigfoot.com/~davidtg/Shpx gur Pbzzhavpngvbaf Qrprapl Npg!
"Why2k?  Well, I didn't think at the time that I could charge any more!"
Note: If bigfoot.com gives you fits, try sector13.org in its place. *sigh*


 PGP signature


Mutt, Exim, Bcc

1999-07-12 Thread Pann McCuaig

A quick examination seems to indicate that the mutt, exim combination
gives one an all-or-nothing "solution" with bcc.

Exim doesn't touch bcc headers and cites an RFC.

Apparently if 'write_bcc' is unset, then _no_ bcc headers are written by
mutt to _any_ recipient, and if 'write_bcc' is set, the bcc headers are
written to _all_ recipients.

Is there a way to have bcc headers _not_ written to the "To:" recipient,
but have them written the "Bcc:" recipients (and included in the
copy written to my outbox as a result of 'set copy=yes' and
'set record=+outbox'.

Thanks.
-- 
Pann McCuaig  [EMAIL PROTECTED]   PO Box 55549, Seattle, WA 98155
Technical Manager  Phone: (206) 782-7733 ext 122
SSC, Inc. www.ssc.comFax: (206) 782-7191
Linux Journal www.linuxjournal.com



Re: color/console vs. xterm

1999-07-12 Thread Morten Bo Johansen

Quoting Vincent Lefevre <[EMAIL PROTECTED]>:
> On Fri, Jul 09, 1999 at 12:42:36 +0200, Morten Bo Johansen wrote:
> > Confusing...when I run mutt in rxvt yellow is certainly
> > yellow.
> 
> Perhaps it depends on the screen contrast and brightness.


It's *yellow* or I am colorblind (possibility exists!)



Morten



Re: Attachment menu

1999-07-12 Thread David DeSimone

Brian Salter-Duke <[EMAIL PROTECTED]> wrote:
>
> Could anyone tell me where this limitation is in the code or is there
> a way to configure this in .muttrc.

It's not in the code, it's in the attach_format variable.

Here's the one I use:

  set attach_format='%u%D%t%2n [%5s] "%d"  %> %e %m/%M '

-- 
David DeSimone   | "The doctrine of human equality reposes on this:
[EMAIL PROTECTED]   |  that there is no man really clever who has not
Hewlett-Packard  |  found that he is stupid." -- Gilbert K. Chesterson
Convex Division  |PGP: 5B 47 34 9F 3B 9A B0 0D  AB A6 15 F1 BB BE 8C 44



Re: secure tunnel and IMAP

1999-07-12 Thread Brendan Cully

To reply to my own message, I've also added CRAM-MD5 authentication to
the IMAP code (also supported by, at least, UW-IMAP). This does not
require any security infrastructure, so it may be more convenient for
many of you. Find it and instructions at the web page:

http://www.kublai.com/~brendan/mutt/


On Friday, 25 June 1999 at 09:53, Brendan Cully wrote:
> If you're running kerberos V and your mail server supports it (UW-IMAP
> does), you could try my GSS authentication patch for mutt, which I just
> wrote last weekend. It works well for me.
> 
> If anyone's interested in it, ask me. I'll set up a web page...
> 
> - Original Message -
> From: Brian D. Winters <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, 24 June, 1999 23:37
> Subject: Re: secure tunnel and IMAP
> 
> 
> > On Thu, Jun 24, 1999 at 11:11:19PM -0400, Adam Lazur wrote:
> > > I've looked at still attempting to move my email over to imap, and am
> > > a little weary of sending my password over the internet in
> > > plaintext. Is there a method currently available in mutt to setup a
> > > secure tunnel (via ssh) to the imapd before I open an imap mailbox?
> >
> > I have the following in a script:
> >
> > ssh -f -L 4143:imapserver:143 sshhost 'sleep 5 /dev/null'
> > mutt $*
> >
> > The server is then referred to as {localhost:4143}.  This is not
> > ideal, but it gets the job done.  I would love to hear if someone has
> > come up with something better.
> >
> > Brian
> >

-- 
Brendan Cully <[EMAIL PROTECTED]> | OLD SKOOL ROOLZ
"I hope I don't win|  .-_|\ 
 The rules say to bring a friend   | / \
 I don't have any" | Perth ->*.--._/



Quoting sign

1999-07-12 Thread Axel Schlicher

Hi,
I want to have a quoting like: >> and not > >. How
can I change that?
Editor Vim 5.2

Many thanks,
Axel



multiple mail address(from)

1999-07-12 Thread Shao Zhang

Hi,
Is it possible to configure mutt to do the following.

Say I have 3 email address, I would like to use each one for a 
different mailing list.

Say when I send a mail to my uni, I want to use my uni's mail address for the 
from
header, and when I send a mail to the mailing list, I want to use a different 
mail
address for the from header..

Thanks.

Shao.

-- 

Shao Zhang - Running Debian 2.1  ___ _   _
Department of Communications/ __| |_  __ _ ___  |_  / |_  __ _ _ _  __ _ 
University of New South Wales   \__ \ ' \/ _` / _ \  / /| ' \/ _` | ' \/ _` |
Sydney, Australia   |___/_||_\__,_\___/ /___|_||_\__,_|_||_\__, |
Email: [EMAIL PROTECTED]  |___/ 
_



Re: multiple mail address(from)

1999-07-12 Thread Jeremy Blosser

Shao Zhang [[EMAIL PROTECTED]] wrote:
>   Say when I send a mail to my uni, I want to use my uni's mail address for the 
>from
>   header, and when I send a mail to the mailing list, I want to use a different 
>mail
>   address for the from header..

set alternatives=regexp matching your addresses
set reverse_name

-- 
Jeremy Blosser   |   [EMAIL PROTECTED]   |   http://jblosser.firinn.org/
-+-+--
"Would you fight to the death, for that which you love?
   In a cause surely hopeless ...for that which you love?"
 -- D. McKiernan, _Dragondoom_

 PGP signature