macro stopped working

2001-07-12 Thread Michael Hong

Hi,

Does anyone know what's wrong with this macro? It was working in 1.2.5
but now the second time I press 'z' mutt says the key is not bound or
'macro loop detected'.

# toggle zoom 
macro pager z \
":set pager_index_lines=0\n:macro pager z Z \"toggle zoom\"\n"
  macro pager Z \
":set pager_index_lines=10\n:macro pager z z \"toggle zoom\"\n"
  macro pager z  z  "toggle zoom"


Thanks for any help.
Michael




Re: Random Sigs?

2001-07-12 Thread Mike Erickson

* Chris Fuchs ([EMAIL PROTECTED]) wrote:
[...]
> Since we are on the subject and not having given much thought
> ... (and yes this probably should be another post) ... I've
> often come across neat quotes which I'd like to extract, should
> I be using a filter to do this and if so has anyone come out
> with anything robust enough to handle most the situations that
> I'd be likely to see?

I get quotes sent to me every day through a couple word-a-day lists, and
like to keep the ones that I like. Here's how I do it:

addquote.pl:

#!/usr/bin/perl
use strict;
use diagnostics;

# addquote.pl
# Mike Erickson <[EMAIL PROTECTED]>

my $quotefile = '/home/mee/errata/quidquotes';

open(QUOTES,">>$quotefile") || die "Couldn't open $quotefile: $!";

undef $/;
my $quote = <>;

print QUOTES "%\n$quote";

close(QUOTES);

__END__

in my .vimrc I have 

vmap  !addquote.plq!

When I find a quote I like, I hit 'e' to edit the message, then go down,
V to visual-block select it, then hit ^G to add it to my fortune-file
(well, pre-strfile'd) list of quotes.

Then, I have a script to get a quote out of said list (if I don't feel
like going through fortune)

getquote.pl

#!/usr/bin/perl
use strict;
use diagnostics;

my $line;

$/ = qq(%\n);
rand($.) < 1 && ($line = $_) while <>;
print substr($line,0, length($line) -2);

__END__

yes, I know it's a nasty, dirty hack of a script, but it works!!

I'll attach them to save anyone the trouble of cutting and pasting.

hth,
me



 getquote.pl
 addquote.pl


Re: Newsgroups

2001-07-12 Thread Louis LeBlanc

Yes, but not with the default build.  If you are using Mandrake or 
RH6.2, you can get rpms of the vvv patch build here:
http://acadia.ne.mediaone.net/mutt/

Otherwise, follow the link from the mutt page for the Volkov patches.  
Scratch that.  The link: http://mutt.kiev.ua/ redirects to this:
http://mutt.org.ua/download/
You can get the latest stable or development and anything in between.

I am using 1.3.19 (little on the adventurous side, but no problems).

It is pretty slick though.  Get to know server-hooks.

I also suggest just taking all his patches for your build, and no 
others.  He has the basics integrated, and leaving anything out turns 
into a headache.

HTH

Lou

On 07/12/01 04:06 PM, Ryan Cook sat at the `puter and typed:
> OK...I don't see it anywhere in the man pages or the Mutt manual.  Is
> there a way to subscribe to newsgroups through the use of Mutt...or
> view newsgroups in Mutt...like if I want to sign up for
> alt.comp.os.linux or something?
> 
> Thanks,
> /rc
> -- 
> "When I read about the evils of drinking, I stopped reading."
> 

-- 
Louis LeBlanc   [EMAIL PROTECTED]
Fully Funded Hobbyist, KeySlapper Extrordinaire :)
http://acadia.ne.mediaone.net ԿԬ

Telephone, n.:
  An invention of the devil which abrogates some of the advantages
  of making a disagreeable person keep his distance.
-- Ambrose Bierce




Newsgroups

2001-07-12 Thread Ryan Cook

OK...I don't see it anywhere in the man pages or the Mutt manual.  Is
there a way to subscribe to newsgroups through the use of Mutt...or
view newsgroups in Mutt...like if I want to sign up for
alt.comp.os.linux or something?

Thanks,
/rc
-- 
"When I read about the evils of drinking, I stopped reading."



Re: encrypted/plain mix?

2001-07-12 Thread Thomas Roessler

No - except by sending the message twice.

On 2001-07-12 16:24:20 -0400, Justin R. Miller wrote:
>Date: Thu, 12 Jul 2001 16:24:20 -0400
>From: "Justin R. Miller" <[EMAIL PROTECTED]>
>To: Mutt Users List <[EMAIL PROTECTED]>
>Subject: encrypted/plain mix?
>Mail-Followup-To: Mutt Users List <[EMAIL PROTECTED]>
>User-Agent: Mutt/1.3.19-current-20010712i
>
>Hi,
>
>Is there as easy way to send one message to multiple recipients and have
>some be encrypted and others be unencrypted (with PGP)?  
>
>-Justin
>-- 
>[ ] -- Justin R. Miller - [EMAIL PROTECTED] -- [ ]
>[ ] -- see full headers for PGP key information -- [ ]
>[ ] -- http://solidlinux.com/~justin/pubkey.asc -- [ ]



-- 
Thomas Roesslerhttp://log.does-not-exist.org/



 PGP signature


MS Exchange and Outlook related issues

2001-07-12 Thread Chris Fuchs


Hello,

I work in an MS environment and wonder if there is a document
of tips, hints, etc for mutt users having to send to either
MS exchange or outlook?  I've looked in the archives without
much luck.

Some of the idiosyncracies are having to use "^\n\n$" instead of
"^\n$" for MS exchange to realize you're starting a new paragraph.
A ">" seems to indent.  Exchange seems to encourage having
paragraphs as long strings terminated by an "\n" which either
my sendmail or procmail settings (more likely) is chopping up. Etc.

How do mutt users deal with this?  Is there some sort of script
that people use to post-process and/or pre-process?

Any advice from people that have been there?

Chris

--
   "Gun control is a steady hand." [EMAIL PROTECTED]



Re: Random Sigs?

2001-07-12 Thread Chris Fuchs

On Thu, Jul 12, 2001 at 03:26:46PM -0400, darren chamberlain wrote:

*snip*

> 
> Perl's printf is C's printf, and very fast.  This is probably not
> a big deal to you, though.  The real gain is that fact that you
> now can let Perl's printf Do The Right Thing, and not have to
> rely on a less than complete regex.  I've been bitten before by
> regexes that appear to do the right thing, until given the wrong
> input... Those bugs are impossible to track down.

Thanks, I've made the change... although the whitespace problem
remains.  This means processing the quotes upfront which I don't
have a problem with.  And yes I do care about efficiency.

On the same theme... slurping in the entire fortune file might
irk me if I revive a much slower machine I've got which is
why I originally wanted to save the fortunes to a tied structure.
I haven't had time to delve into this.

> 
> > Since we are on the subject and not having given much thought
> > ... (and yes this probably should be another post) ... I've
> > often come across neat quotes which I'd like to extract, should
> > I be using a filter to do this and if so has anyone come out
> > with anything robust enough to handle most the situations that
> > I'd be likely to see?
> 
> Hmm...  I have written a small mail processor before; they're
> pretty trivial, if you don't account for attachments.  To extract
> a quote, assuming that the quote in question comes after the
> Net-standard "-- \n" signature indicator, I'd use a script like:
> 

*snip*

> This will (should -- untested!) read the message in, extract the
> signature, and append it to a file.  macro it in mutt, so mutt
> will pass the message to it in STDIN.
> 
> OK, I shelled out and tested it with some trivial input, and it
> seems to work.  If you do try it out, let me know.

Yup, it works.

Chris

--
   Great spirits have always encountered violent opposition from mediocre
   minds. -Albert Einstein




encrypted/plain mix?

2001-07-12 Thread Justin R. Miller

Hi,

Is there as easy way to send one message to multiple recipients and have
some be encrypted and others be unencrypted (with PGP)?  

-Justin
-- 
[ ] -- Justin R. Miller - [EMAIL PROTECTED] -- [ ]
[ ] -- see full headers for PGP key information -- [ ]
[ ] -- http://solidlinux.com/~justin/pubkey.asc -- [ ]

 PGP signature


Re: vfolders

2001-07-12 Thread Bob Bell

On Thu, Jul 12, 2001 at 12:49:39PM +, Jonathan Miller <[EMAIL PROTECTED]> wrote:
> I've recently become unhappy with the way that my email is
> sorted/stored/whatever, and I've been looking into more advanced ways
> of handling it as opposed to a big text file. I really love the concept
> of vfolders, which are basically SQL statements that create "folders"
> out of a bunch of mail in a database. Unfortunately all the email
> clients that use this kind of technology are X based, and I need a
> console client.
> 
> Anyhow, I was wondering if anyone has toyed with the idea of patching
> mutt to use vfolders or anything similar.
> 
> Or alternatively anyone know of an IMAP server that would work like
> this?

Some co-workers/friends and myself had ideas to start such a
project, but we've been busy and it's stalled.  See
http://prufrock.sf.net/

-- 
Bob Bell <[EMAIL PROTECTED]>
-
 "Suppose I want to take over the world. Simplicity says I should
  just take over the world by myself."
   -- Larry Wall, creator of the Perl programming language



Re: vfolders

2001-07-12 Thread darren chamberlain

Jonathan Miller <[EMAIL PROTECTED]> said something to this effect on 07/12/2001:
> I've recently become unhappy with the way that my email is
> sorted/stored/whatever, and I've been looking into more advanced ways
> of handling it as opposed to a big text file. I really love the concept
> of vfolders, which are basically SQL statements that create "folders"
> out of a bunch of mail in a database. Unfortunately all the email
> clients that use this kind of technology are X based, and I need a
> console client.

Have you considered Maildir format?  It was designed specifically
to compensate for the limitations of mbox format, specifically
locking and speed.  Take a look at
http://cr.yp.to/proto/maildir.html for some info.

>From this document:

  Why should I use maildir?

  Two words: no locks. An MUA can read and delete messages while
  new mail is being delivered: each message is stored in a separate
  file with a unique name, so it isn't affected by operations on
  other messages. An MUA doesn't have to worry about partially
  delivered mail: each message is safely written to disk in the tmp
  subdirectory before it is moved to new. The maildir format is
  reliable even over NFS. 

(darren)

-- 
It is impossible to travel faster than the speed of light, and
certainly not desirable, as one's hat keeps blowing off.
-- Woody Allen



vfolders

2001-07-12 Thread Jonathan Miller

I've recently become unhappy with the way that my email is
sorted/stored/whatever, and I've been looking into more advanced ways
of handling it as opposed to a big text file. I really love the concept
of vfolders, which are basically SQL statements that create "folders"
out of a bunch of mail in a database. Unfortunately all the email
clients that use this kind of technology are X based, and I need a
console client.

Anyhow, I was wondering if anyone has toyed with the idea of patching
mutt to use vfolders or anything similar.

Or alternatively anyone know of an IMAP server that would work like
this?

-- Jonathan



Re: Random Sigs?

2001-07-12 Thread Chris Fuchs

On Thu, Jul 12, 2001 at 11:35:59AM -0400, darren chamberlain wrote:
> Chris Fuchs <[EMAIL PROTECTED]> said something to this effect on 07/11/2001:
> > #!/usr/local/bin/perl
> > #randsig.pl, by Don Blaheta.  Released into public domain, blah, blah, blah.
> > # Generates a signature randomly from a single file of witty quotes which
> > # the user maintains; the quotes can be multi-line, and are separated by
> > # blank lines.
> 
> This is too much work. Try this:
> 
> #!/usr/bin/perl
> 
> my $fortunes = "$ENV{HOME}/.randsig";
> my $fortfile = "$ENV{HOME}/.sig"
> my $fortune;
> 
> my @f = do {
> local *F;
> local $/ = "\n\n";
> open F, $fortunes or die $!;
> ;
> }
> 
> chomp($fortune = $f[rand @f])
> 
> {
> local *F;
> open F, ">$fortfile" or die $!;
> print F $fortune;
> }
> 
> # END

Yes I've been meaning to rewrite it but in the context of
the original posted script, this is what I meant:

#!/usr/local/bin/perl

my $fortfile = $ARGV[0];
my $fortunes = $ARGV[1];

my $fortune;

my @f = do {
local *F;
local $/ = "\n\n";
open F, $fortunes or die $!;
;
};

chomp($fortune = $f[rand @f]);

my $g = do {
local *G;
undef $/;
open G, $fortfile or die $!;
;
};

$g=~s/%QUOTE%/$fortune/; 
print $g;

# END

This of course assumes that there is no whitespace between
each quote.  I've not figured out how to change $/ to deal
with spaces between quotes - any help is greatly appreciated.

Since we are on the subject and not having given much thought
... (and yes this probably should be another post) ... I've
often come across neat quotes which I'd like to extract, should
I be using a filter to do this and if so has anyone come out
with anything robust enough to handle most the situations that
I'd be likely to see?

--
  If I have seen further it is by standing on the shoulders of giants.
  -Isaac Newton



Re: mutt and vim questions

2001-07-12 Thread stevencooper

On Wed, Jul 11, 2001 at 05:08:05PM -0400, Viraj Alankar wrote:
> This may be a very dumb question but for the life of me I cannot
> figure it out. I am trying to do text formatting when sending mails via mutt
> via vim.  For some reason, 'gqap' does not do anything for me. I can only do
> '{gq}'...

Isn't it 'gqip'?  That works great for me.

Cheers,
Steve

-- 

  \_O<  \_O<  \_O<
~~~
 Steve Cooper  Redmond, WA



macro

2001-07-12 Thread Benjamin Michotte

hello,

first, if I want to define a macro with , I must use \c, what about
 ?

and, how can I define 'a automatic sign mails' _only_ for [EMAIL PROTECTED]
and [EMAIL PROTECTED] (sic) ?

cu,
binny

-- 

I think I've got a problem with my keybo

Benjamin Michotte<[EMAIL PROTECTED]>
web  : http://www.baby-linux.net
homepage : http://www.baby-linux.net/binny
icq uin  : 99745024



Re: bugs in latest [was: Re: signed + encrypted = odd output]

2001-07-12 Thread Justin R. Miller

Thus spake Justin R. Miller ([EMAIL PROTECTED]):

> In the mailbox browser, since 1.3.19, 'imaps://' was added to the
> beginning of the folder name (since I use IMAPS) and this pushes some
> folder names too far to the left.  In fact, I have a bunch of folders
> that start like 'imaps://{mail.server.com}INBOX.Lists...' and on
> these, I can only see the first letter of the word after 'Lists.'
> since they're over so far.  Not good for 10+ 'Lists.' folders :-)

Sorry, make that imaps://mail.server.com/INBOX/Lists/x... and over too
far to the RIGHT :-)

-Justin
-- 
[ ] -- Justin R. Miller - [EMAIL PROTECTED] -- [ ]
[ ] -- see full headers for PGP key information -- [ ]
[ ] -- http://solidlinux.com/~justin/pubkey.asc -- [ ]

 PGP signature


Re: Error Codes

2001-07-12 Thread Chisel Wright

On (12/07/01 13:07), GARGIULO Eduardo INGDESI's letters did form the following text:
> Is there some doc to look for mutt error codes?
> When I try to send a message mutt says that cannot send
> message (Error exec) code 127. I'm using qmail on
> debian potato and mutt 1.2.5i compiled from sources.


I recently reinstalled some bits and bobs, and was getting this error too.
Although mutt was 'slightly less than helpful' in the matter, it turned out that mutt 
couldn't find sendmail.

If it's not in your PATH, you might want to specify it in your .muttrc:

  set sendmail="/usr/sbin/sendmail -oem -oi"

I think.


Chiz


-- 
Chisel Wright

Moneyextra Limited is an independent intermediary regulated by the Personal Investment 
Authority. The PIA does not regulate mortgages, current or deposit accounts, credit 
cards, loans or general and medical insurance.  Moneyextra Limited, One Temple Back 
East, Temple Quay, Bristol BS1 6DX

 PGP signature


Re: Error Codes

2001-07-12 Thread Andy Wingo

On Thu, 12 Jul 2001, GARGIULO Eduardo INGDESI wrote:

> Is there some doc to look for mutt error codes?
> When I try to send a message mutt says that cannot send
> message (Error exec) code 127. I'm using qmail on
> debian potato and mutt 1.2.5i compiled from sources.

This means your MTA could not be executed. Be sure to set $sendmail to
the right path.

Andy




Error Codes

2001-07-12 Thread GARGIULO Eduardo INGDESI

Is there some doc to look for mutt error codes?
When I try to send a message mutt says that cannot send
message (Error exec) code 127. I'm using qmail on
debian potato and mutt 1.2.5i compiled from sources.

~edu



Re: Limiting Folder view

2001-07-12 Thread Mike Erickson

* Ailbhe Leamy ([EMAIL PROTECTED]) wrote:
> On (11/07/01 16:20), Drew Raines wrote:
> 
> > * Ailbhe Leamy <[EMAIL PROTECTED]>:
> >
> > > > Utilize the magical  key.
> > >
> > > My only real problem with this is that I want it to display only
> > > those mailboxes which actually contain new mail.
> >
> > You're allowed to press it more than once.
> 
> OK, I press it twice and get...
> 
> List of all folders and files in Mail directory
> 
> List of all mailboxes listed with "mailboxes"
> 
> List of all folders and files in Mail directory
> 
> What should I be getting?

Beats me, I get the same thing.

if I hit c I get a listing of a single mailbox (the next w/ new
messages, then it goes into the cycle you describe above. c? puts
me directly in that cycle.

maybe this is a 1.3 thing?

1.2.5i,
me



bugs in latest [was: Re: signed + encrypted = odd output]

2001-07-12 Thread Justin R. Miller

Thus spake Thomas Roessler ([EMAIL PROTECTED]):

> I use this with gnupg-1.06:
> 
>   set pgp_good_sign="^gpg: Good signature from"
> 
> (However, there is a bug in the PGP code which is triggered by 
> GnuPG, which I fixed _after_ 1.3.19.  Try having a look at the 
> latest CVS snapshot.)

Well, that did the trick.  The only thing I don't like about 1.3.19/CVS
is what I think is IMAP-specific behavior.  Two things:

1.  Since 1.3.18, the behavior of 'c' seems to have changed.  Say more
than one folder has new mail.  When I hit 'c', I'm presented with the
name of one of them.  I can hit 'space' to toggle through all folders
with new mail, and then 'enter' to select.  However, in old versions
(<=1.3.18), I could also hit 'tab' and go to the mailbox view.  This
doesn't work anymore, 'tab' just doesn't do anything.  I have to go to
all of the folders with new mail before I can go to any of the other
folders.  

2.  The mailbox view toggles between two views as before, the
filesystem/IMAP folder browser and the mailbox (i.e. those that are
watched for mail) browser.  In the mailbox browser, since 1.3.19,
'imaps://' was added to the beginning of the folder name (since I use
IMAPS) and this pushes some folder names too far to the left.  In fact,
I have a bunch of folders that start like
'imaps://{mail.server.com}INBOX.Lists...' and on these, I can only see
the first letter of the word after 'Lists.' since they're over so far.
Not good for 10+ 'Lists.' folders :-)

Anyway, these are the things that had previously been keeping me at
1.3.18.  

-Justin
-- 
[ ] -- Justin R. Miller - [EMAIL PROTECTED] -- [ ]
[ ] -- see full headers for PGP key information -- [ ]
[ ] -- http://solidlinux.com/~justin/pubkey.asc -- [ ]

 PGP signature


Re: Random Sigs?

2001-07-12 Thread darren chamberlain

Chris Fuchs <[EMAIL PROTECTED]> said something to this effect on 07/11/2001:
> #!/usr/local/bin/perl
> #randsig.pl, by Don Blaheta.  Released into public domain, blah, blah, blah.
> # Generates a signature randomly from a single file of witty quotes which
> # the user maintains; the quotes can be multi-line, and are separated by
> # blank lines.

This is too much work. Try this:

#!/usr/bin/perl

my $fortunes = "$ENV{HOME}/.randsig";
my $fortfile = "$ENV{HOME}/.sig"
my $fortune;

my @f = do {
local *F;
local $/ = "\n\n";
open F, $fortunes or die $!;
;
}

chomp($fortune = $f[rand @f])

{
local *F;
open F, ">$fortfile" or die $!;
print F $fortune;
}

# END

(darren)

-- 
More than any other time in history, mankind faces a crossroads. One
path leads to despair and utter hopelessness. The other, to total
extinction. Let us pray we have the wisdom to choose correctly.
-- Woody Allen



Re: signed + encrypted = odd output

2001-07-12 Thread Thomas Roessler

On 2001-07-12 10:40:11 -0400, Justin R. Miller wrote:

>I set this to "Good signature" (which is what my GnuPG outputs) 
>and now I get the message that every signature was unable to be 
>verified!  Any ideas?  Anyone else using GnuPG and have a fix?

I use this with gnupg-1.06:

set pgp_good_sign="^gpg: Good signature from"

(However, there is a bug in the PGP code which is triggered by 
GnuPG, which I fixed _after_ 1.3.19.  Try having a look at the 
latest CVS snapshot.)

-- 
Thomas Roesslerhttp://log.does-not-exist.org/

 PGP signature


Re: signed + encrypted = odd output

2001-07-12 Thread Justin R. Miller

Thus spake Thomas Roessler ([EMAIL PROTECTED]):

> Setting pgp_good_sign should help against this.  Basically, you don't
> know from the outside whether or not something is just
> signed+encrypted.  So unless it's entirely sure, mutt will claim it
> couldn't verify a signature.

I set this to "Good signature" (which is what my GnuPG outputs) and now
I get the message that every signature was unable to be verified!  Any
ideas?  Anyone else using GnuPG and have a fix?  

-Justin
-- 
[ ] -- Justin R. Miller - [EMAIL PROTECTED] -- [ ]
[ ] -- see full headers for PGP key information -- [ ]
[ ] -- http://solidlinux.com/~justin/pubkey.asc -- [ ]

 PGP signature


Re: timestamp of mailbox file is not updated

2001-07-12 Thread Matt Dunford

* Matt Dunford <[EMAIL PROTECTED]> [010707 16:54]:
> 
> I'm experiencing a similar problem.  My mailboxes count fluctuates as I
> browse through my mailboxes.  Here's a snippit from my .muttrc:
> 
> set status_format="%v: %f%r [%M/%m] [N=%n,*=%t,post=%p,boxes=%b] %?V?{%V}?"
> mailboxes ! =ancientbiblehistory =bahai \
> =bugmaster =classics =cybalist \
> =dreams =duplicates =ex_in_italy \
> =gnu-screen =magnagraecia =moop \
> =mutt =paml =php-cvs =procmail =python \
> =spam =vim =vim-dev =vim-multibyte \
> =xs 
> 
> When I fire up mutt, the status starts out as 'boxes=8', but as I browse
> through one or two, it will jump down to 'boxes=2'!  I'm still trying to
> figure out exactly how to reproduce this.  It may not be mutt at all,
> rather my crappy shell account.  But perhaps it has something to do w/
> mutt not updating any file timestamps.
> 
> I'm using the cvs version by the way.

Ok, so I'll reply to my own email.  It looks like my system is pretty
screwed up.  But it seems like I fixed the problem by doing this:

%> CFLAGS='-g -pipe -Dwint_t=int -DBUFFY_SIZE=1' \
  ./configure --with-slang --without-wc-funcs && make

-- 
- Matt Dunford <> [EMAIL PROTECTED] ..
-. www.zotikos.com -- o,;-

On the other hand, the proximity of an army causes
prices to go up; and high prices cause the people's
substance to be drained away.
   -- Sun Tzu, Art of War
--



Re: feature request

2001-07-12 Thread Biju Chacko

On Thu, Jul 12, 2001 at 11:35:43AM +0200, Erwin Kaiser wrote:
> 2. Often I get mail with a lot of adresses in the Cc: field which
> I'd like to take into my alias list. So: Could the taking alias
> feature be expanded to other entries and mulpiple entries?

see http://webrum.uni-mannheim.de/jura/moritz/mail2muttalias.shtml

for a script that does more-or-less what you want.

-- Biju

-- 
-
Biju Chacko| [EMAIL PROTECTED] (work)
Exocore Consulting | [EMAIL PROTECTED] (play)
Bangalore, India   | http://www.exocore.com
-



Re: mutt and vim questions

2001-07-12 Thread Suresh Ramasubramanian

Ailbhe Leamy [mutt-users] <12/07/01 10:18 +0100>: 
> I'm not sure how this will work, but never mind. What I do is have
> procmail sort all mail to a given address into a folder, and use a
> folder-hook to source a file containing the relevant headers.
 
I use that as well - for list mail.

-- 
Suresh Ramasubramanian + Wallopus Malletus Indigenensis
EMail Sturmbannfuhrer, Lower Middle Class Unix Sysadmin



Re: feature request

2001-07-12 Thread Lars Hecking

Erwin Kaiser writes:
> Mutt is great!
> Two features I'd like to propose: 
> 1. The screen should be cleared at termination.

 This is a feature of the terminal emulator you are running.

 This is the reason why I replaced the xterm terminfo entry
 on my Solaris box with the X11R6 xterm definition from ncurses ;)




feature request

2001-07-12 Thread Erwin Kaiser

Mutt is great!
Two features I'd like to propose: 
1. The screen should be cleared at termination.
2. Often I get mail with a lot of adresses in the Cc: field which
I'd like to take into my alias list. So: Could the taking alias
feature be expanded to other entries and mulpiple entries?
Thanks to all developers!
Erwin



Re: netiquette

2001-07-12 Thread iain truskett

* Ken Weingold ([EMAIL PROTECTED]) [11 Jul 2001 14:33]:

[...]
> You have a thread going on for a while, and want to quote it, but it
> is MANY lines. That is where I wonder what to do, since you could have
> more than a page-worth of just quoting, and it is all relevent. Still
> okay?

Break it up. Intersperse your comments with the original text addressing
points as they appear in the prior post. If you can, that is. Feel free
to break up paragraphs =)

Personally, I've never seen any need to leave much unedited quoting at
the top of a message. But maybe I just hang around in the wrong circles?


cheers,
-- 
iain.  
I am currently reading, amongst other things:
  "The Virgin Suicides" by Jeffrey Eugenides



Re: mutt and vim questions

2001-07-12 Thread Ailbhe Leamy

On (12/07/01 10:30), Suresh Ramasubramanian wrote:

> Viraj Alankar [mutt-users] <11/07/01 17:08 -0400>:

> > 2. I receive mail as different addresses. For example, say I receive
> > mail at [EMAIL PROTECTED] When I reply to this message, I
> > would like my From: to be [EMAIL PROTECTED] Likewise for other
> > addresses. Is there an easy way to do this?
>
> $alternates in muttrc (see the manual)

I'm not sure how this will work, but never mind. What I do is have
procmail sort all mail to a given address into a folder, and use a
folder-hook to source a file containing the relevant headers.

Hope this helps.

Ailbhe

-- 
Homepage: http://ailbhe.ossifrage.net/



Re: Limiting Folder view

2001-07-12 Thread Ailbhe Leamy

On (11/07/01 16:20), Drew Raines wrote:

> * Ailbhe Leamy <[EMAIL PROTECTED]>:
>
> > > Utilize the magical  key.
> >
> > My only real problem with this is that I want it to display only
> > those mailboxes which actually contain new mail.
>
> You're allowed to press it more than once.

OK, I press it twice and get...

List of all folders and files in Mail directory

List of all mailboxes listed with "mailboxes"

List of all folders and files in Mail directory

What should I be getting?

Ailbhe

-- 
Homepage: http://ailbhe.ossifrage.net/



Re: two e-mail addresses

2001-07-12 Thread Michael Tatge

Oliver Kullmann muttered:
> Hi,
> 
> my problem is, that I have an internal e-mail address
> 
> [EMAIL PROTECTED]
> 
> [EMAIL PROTECTED]
> 
> Now the mail I have send off (and got back by bcc)
> is not recognized as my outgoing mail, 

> What to do??!

set alternates

HTH,

Michael
-- 
"I'd crawl over an acre of 'Visual This++' and 'Integrated Development
That' to get to gcc, Emacs, and gdb.  Thank you."
(By Vance Petree, Virginia Power)

PGP-Key: http://www-stud.ims.uni-stuttgart.de/~tatgeml/public.key