Re: OT- print front ends

2000-04-04 Thread Leonid Mamtchenkov
Hello, Once you wrote about "OT- print front ends": > I have a slightly off-topic question. I am looking for a program to format my > printouts from mutt to be slightly nicer. Currently I get the basic > line-printer like dump but I would like a bit more. Having no real experience > with user

Mailboxes

2000-04-04 Thread Leonid Mamtchenkov
Hello. I am using procmail to filter my mail into several mailboxes. The problem is that when I add a new rule to my .procmailrc I have to also change my .muttrc to include a new mailbox. Assuming that all my mailboxes are in the same directory, is there any way to automatically generate a list

Re: Mailboxes

2000-04-04 Thread Darren Greaves
Try the following: mailboxes `echo ~/Mail/*` Note the quotes are backticks, key above the TAB key on a PC keyboard. That will list all the mailboxes in the folder you specify. It has the following limitations: Does not recurse into subdirectories. Lists your outbox (should you have one). This is

Re: Q: Mutt and Email Lists

2000-04-04 Thread Mikko Hänninen
David DeSimone <[EMAIL PROTECTED]> wrote on Mon, 03 Apr 2000: > This is really a problem best solved in the MTA, rather than with an MUA > like Mutt or Pine. The MTA is best suited to handle the task of making > your E-mail appear to come from a particular domain or pseudo-domain. > And, once co

Re: Mailboxes

2000-04-04 Thread Ola Nyström
On Tue, 04 Apr 2000, Darren Greaves wrote: > Should I post a copy of the script to the list? It's 87 lines. Yes please, or even better, put it on a nice webserver and post the url ;) > > I have only written it a few days ago, so it probably needs a bit of testing > by others. I'll be happy

Re: Mailboxes

2000-04-04 Thread Darren Greaves
Done. Address is http://krapplets.org/linux/ Program is mailboxes.pl Mail me with any probs, comments etc. Thanks. On Tue, Apr 04, 2000 at 11:59:20AM +0200, Ola Nyström wrote: > Yes please, or even better, put it on a nice webserver and post the url ;) -- "They that can give up liberty to obt

Re: Mailboxes

2000-04-04 Thread Leonid Mamtchenkov
Hello Darren Greaves, Once you wrote about "Re: Mailboxes": > Done. > Address is http://krapplets.org/linux/ > Program is mailboxes.pl > > Mail me with any probs, comments etc. 500 Internal server error -- Best regards, Leonid Mamtchenkov Webmaster/System administrator J.F.Services Ltd.

Re: [patrick: Re: GEÇMİŞ OLSUN]

2000-04-04 Thread Edmund GRIMLEY EVANS
Patrick <[EMAIL PROTECTED]>: > > You didn't say what happens to those characters. Do they appear as > > '?', as ' ', or as something else? You also didn't say what kind of > > terminal you are using: Linux console, xterm, ...? > > Its ??? all the way and I am using Teraterm Pro under Windows wit

Re: Mailboxes

2000-04-04 Thread Darren Greaves
That should only happen if you click it to download it. If you right-click and choose "save as" it should be fine. This is (I assume) due to the server's treatment of .pl files. I will speak to the systems guys if it's a real problem for people. On Tue, Apr 04, 2000 at 02:15:36PM +0300, Leonid

Alias for a big name list

2000-04-04 Thread Subba Rao
Hi, I can create individual user aliases fine. How can I create an alias for a list of users ( about 30 )? Thank you in advance. -- Subba Rao [EMAIL PROTECTED] http://pws.prserv.net/truemax/ => Time is relative. Here is a new way to look at time. <= http://www.smcinnovations.com

Re: Mailboxes

2000-04-04 Thread Darren Greaves
I have put up a copy of the file without the .pl extension. It seems to work fine now. I have also changed the index page to reflect this and told Apache that requests for mailboxes.pl.gz should redirect to mailboxes Sorry for any hassles for anyone. Darren. > On Tue, Apr 04, 2000 at 02:15:36P

Re: OT- print front ends

2000-04-04 Thread Thomas Roessler
On 2000-04-03 16:53:08 -0700, Neelakanth wrote: > If you are looking for printing within mutt, have you checked out > a2ps? works wonderfully for me. enscript is similar, however I find its printouts more aesthetic than a2ps's. -- http://www.guug.de/~roessler/

tags and copy help

2000-04-04 Thread Serge Rey
I'm trying to copy a bunch of tagged files to a directory, but I'm only able to have the single file under the cursor copied. Can someone point me to the correct way to apply a copy to a set of tagged files (or a save)? Also, I tried to search for solutions in the archive (http://www.tnet.com/mut

Re: tags and copy help

2000-04-04 Thread Rob Reid
At 10:54 AM EST on April 4 Serge Rey sent off: > I'm trying to copy a bunch of tagged files to a directory, but I'm only able > to have the single file under the cursor copied. Can someone point me to the > correct way to apply a copy to a set of tagged files (or a save)? To do any operation on

Re: tags and copy help

2000-04-04 Thread Lars Hecking
Serge Rey writes: > I'm trying to copy a bunch of tagged files to a directory, but I'm only able > to have the single file under the cursor copied. Can someone point me to the > correct way to apply a copy to a set of tagged files (or a save)? To operate on tagged messages, the command must be p

Re: tags and copy help

2000-04-04 Thread Lars Hecking
I wrote: > To operate on tagged messages, the command must be prefixed by ";", i.e. > ;c (semi-colon c) copies all tagged files. Scrap that. It's a capital C for copy. ;C

Re: Mailboxes

2000-04-04 Thread Jim Toth
On Tue, Apr 04, 2000 at 09:35:49AM +0100, Darren Greaves ([EMAIL PROTECTED]) said: > Try the following: > mailboxes `echo ~/Mail/*` > Note the quotes are backticks, key above the TAB key on a PC keyboard. > > That will list all the mailboxes in the folder you specify. > It has the following limit

Re: Mailboxes

2000-04-04 Thread Bennett Todd
2000-04-04-12:37:56 Jim Toth: > Assuming you have gnu find: > mailboxes `find ~/Mail ! -name sent -type f -printf '%p ' | sed > 's?/home/jtoth/?=?g'` If you use Maildirs you don't want to be recursing; that's easy to do with GNU find. And if you're using GNU find, you can lose the sed altogethe

Re: Mailboxes

2000-04-04 Thread Jim Toth
On Tue, Apr 04, 2000 at 12:54:03PM -0400, Bennett Todd ([EMAIL PROTECTED]) said: > 2000-04-04-12:37:56 Jim Toth: > > Assuming you have gnu find: > > mailboxes `find ~/Mail ! -name sent -type f -printf '%p ' | sed > > 's?/home/jtoth/?=?g'` > > If you use Maildirs you don't want to be recursing;

Re: Mailboxes

2000-04-04 Thread Bennett Todd
2000-04-04-14:37:48 Jim Toth: > > find Mail -maxdepth 1 -printf '=%P\n' > > Right, but if you don't have Maildir, and want, say > =oldmail/something, then that would turn into =something, which would > be wrong. (although of course it wouldn't get there to begin wth b/c > of the maxdepth).

Sorting

2000-04-04 Thread Lisa Phillips!
How can I set up mutt to display my email messages with the newest messages at the top? I'm using a pine-like .muttrc file, but all the mail that comes in new starts at the bottom. -- Lisa [grrl.org]

Re: Q: Mutt and Email Lists

2000-04-04 Thread Mun Johl
Hi, On Sat, Apr 01, 2000 at 12:22 PM PST, Gary Johnson wrote: GJ> I ran into this problem, too. Same company even. GJ> GJ> The vim mailing list uses ezmlm. When I tried subscribing to the list Same company, same mailing list :) ... Stuff Deleted ... GJ> I sent a message to [EMAIL PROTECTED]

Re: Sorting

2000-04-04 Thread Hall Stevenson
>From the mutt manual, section 6.3: sort Type: string Default: date-sent Specifies how to sort messages in the index menu. Valid values are date or date-sent date-received from mailbox-order (unsorted) score size subject threads to You may optionally use the reverse- prefix to specify reverse

save-hooks? and mail notifiers

2000-04-04 Thread climer
Hello all, I am trying to accomplish a number of things at once. I like to sort mail from my co-workers into individual folders after I read it and deal with it. I currently do this by tagging messages and using the default save folder. Works great. What I want to do is: 1) match on th

gpg always downloading sigs for signed mail...

2000-04-04 Thread Sam Roberts
I don't know if this is a gpg question, or a mutt one, but... I'd like mutt to not verify signatures that are not in my keyring, in particular I don't want gpg to trying to connect to the keyserver when I'm not on-line. How is gpg being called for key verification, and is there a way to make it n

why is my spool read-only?

2000-04-04 Thread Sam Roberts
mutt says my /usr/spool/mail/sam spool file is read-only, any idea why? It's only used for local-to-my-machine mail, but I'd like to have it be read/write. For incoming mail I'm working around this by having a =spool mailbox in ~/Mail/spool, and I get my mail from a pop server when I'm in that ma

Re: help, set from=xxx

2000-04-04 Thread David T-G
Neel -- ...and then Neelakanth said... % % send-hook '(~C mutt)' "set signature="uptime|" ;my_hdr From: Neelakanth <[EMAIL PROTECTED]> " It's just a nit, but you might want to change your sig to set signature='uptime|' so that it's parsed at hook-time instead of at muttrc-read time. To

Re: why is my spool read-only?

2000-04-04 Thread David T-G
Sam -- ...and then Sam Roberts said... % mutt says my /usr/spool/mail/sam spool file is read-only, any % idea why? It's only used for local-to-my-machine mail, but % I'd like to have it be read/write. The most likely reason is because your mutt_dotlock program has not been installed with special

Re: Alias for a big name list

2000-04-04 Thread David T-G
Subba -- ...and then Subba Rao said... % % Hi, % % I can create individual user aliases fine. % How can I create an alias for a list of users ( about 30 )? Just like you would for individual users: alias aliasname alias_title: member, member, member ; or alias aliasname member, member,

Re: save-hooks? and mail notifiers

2000-04-04 Thread David T-G
Duncan -- The short answer to your first question (how to change $folder or, actually $save_name) is that a few people have asked about it a few times without getting a great answer, and I'm extremely interested in getting it working. I think that some hooks about like fcc-save-hook . "set sa

Re: help, set from=xxx

2000-04-04 Thread Aaron Schrab
At 00:39 -0400 05 Apr 2000, David T-G <[EMAIL PROTECTED]> wrote: > % send-hook '(~C mutt)' "set signature="uptime|" ;my_hdr From: Neelakanth ><[EMAIL PROTECTED]> " > > It's just a nit, but you might want to change your sig to > > set signature='uptime|' > > so that it's parsed at hook-time