mailboxes

2001-04-02 Thread dan radom
I'm defining mailboxes in ~/.muttrc as follows... mailboxes `echo $HOME/mail/*` /var/spool/mail/graffix ...that works fine for displaying notifications about new messages in those folders. the problem is is that $HOME/mail/* includes sent (set record=~/mail/sent), and i'd rather not get notif

Re: mailboxes

2001-04-02 Thread dan radom
or my mailboxes directive in .muttrc? * dan radom ([EMAIL PROTECTED]) wrote: > I'm defining mailboxes in ~/.muttrc as follows... > > mailboxes `echo $HOME/mail/*` /var/spool/mail/graffix > > ...that works fine for displaying notifications about new messages in those folders.

Re: Finding new mail

2001-04-14 Thread dan radom
use the mailboxes directive to turn on notifications for mailboxes. here's mine... mailboxes `echo $HOME/mail/* | tr " " "\n" | grep -Ev "sent" | tr "\n" " "` /var/spool/mail/graffix that allows notifications for "/var/spool/mail/graffix" and everythig in "$HOME/mail/" except for the sent fol

macro to delete large attachments

2001-04-24 Thread dan radom
I get lots of email with large attachments. Some are important and some I don't need. What I would like to do is have a macro that will delete larger (bigger than x) attahcments. Procmail isn't an option sine I will need some of the attachments. Is this possible with mutt and where would I

macro help

2001-05-16 Thread dan radom
I'm trying to create an index macro to mark all messages as read in all my mailboxes. It will switch to all mailboxes, but isn't changing any flags. Any ideas? Here's the macro... macro index ...c "c=box1\n;T.*\n;WN;^t.*\n;T.*\n;WN;^t.*\n;c=box2\n;c=Inbox\n;T.*\n;WN;^t.*\n;c=box3-users\n;T.

folder-hook sort strangeness

2001-06-26 Thread dan radom
My folders are being sorted using "folder-hook . set sort=threads" in ~/.muttrc. What I've noticed is that new messages that aren't part of a thread are sorted by date received. This morning I received a messsage that became message number 1 in that folder for some reason, and I'm not sure wh

Re: folder-hook sort strangeness

2001-06-26 Thread dan radom
you are correct...i should have noticed that... Date: Tue, 27 Jun 1989 13:38:04 -0700 thanks! Dan * Dan Boger ([EMAIL PROTECTED]) wrote: > On Tue, Jun 26, 2001 at 09:43:17AM -0600, dan radom wrote: > > My folders are being sorted using "folder-hook . set sort=threads" in

Re: customized folders

2001-06-28 Thread dan radom
You should use procmail or maildrop to filter your mail. Dan * GARGIULO Eduardo INGDESI ([EMAIL PROTECTED]) wrote: > Hi all. > > I need to *automagically* save email messages (after read) from > diferent lists to diferent files or folders based on recipient > addresses (To or CC). How can I co

archiving mail folders

2001-07-14 Thread dan radom
I've got several mbox format mailboxes I want to archive monthly. I've come up with the following shell script to run from cron, but I'm not sure there isn't a better way to go about this. Here's the script.. #!/bin/sh maildir=/home/graffix/mail for x in $maildir/lug $

Re: archiving mail folders

2001-07-14 Thread dan radom
mat mailbox, and > then lets the message continue through any other rules that I have. > > Works For Me (tm). > > M > > On Sat, Jul 14, 2001 at 08:34:26AM -0600, dan radom wrote: > > I've got several mbox format mailboxes I want to archive monthly. I've co

(index/pager)_format size display

2001-07-27 Thread dan radom
Is it possible to display the message size in a more human readable format than bytes? I'd like to see something like 20K or 3.3M if possible. Dan

outgoing mail over localhost port 25 ssh tunnel

2001-07-31 Thread dan radom
Is there any reason why I couldn't use ssh port forwarding to forward locahost 25 to a remote smtp server? I'm constantly connectiong to different networks, and reconfiguring sendmail everytime to masq as another domain isn't a very good option. On another nonmutt related issue how would fetc

Re: outgoing mail over localhost port 25 ssh tunnel

2001-08-01 Thread dan radom
Suresh, Could you maybe provide me with a little more details? Here's what I've done so far.. # my headers my_hdr From: "dan radom" <[EMAIL PROTECTED]> my_hdr Reply-To: "dan radom" <[EMAIL PROTECTED]> set realname = "dan radom" set env

what happened to my keybindings

2001-08-07 Thread dan radom
i recently upgraded fro 1.2.5i to 1.3.20i, and i've noticed that my home and end keybindings no longer work. the inline keybinding help still shows these two keys as bound. is this a bug? dan

Re: [Announce] mutt-1.3.23i is out (BETA).

2001-10-25 Thread dan radom
is there a 1.3.23 manual available? * Thomas Roessler ([EMAIL PROTECTED]) wrote: > I've just released the next mutt beta. This version fixes a bunch > of bugs found during the last weeks. Some of the more interesting > changes, in no particular order:

Re: PGP

2001-10-28 Thread dan radom
download the source. it's in the contrib/ directory. dan * Stephen E. Hargrove ([EMAIL PROTECTED]) wrote: > when i click on on anything, it presents me with the exact same directory structure. > it's been doing this for 2 days now. anyone know where i can get a copy of gpg.rc?

Re: mailboxes command confusion.

2002-01-10 Thread dan radom
mailboxes `ls -l /home/graffix/mail/* |awk '{print $9}' |egrep -v '(gz|drafts|sent)' | tr '\012' ' '` I uswe the above to catch everything in my mail directory with the exception of drafts, sent and anything that's been archived (gzipd). dan * Nick Wilson ([EMAIL PROTECTED]) wrote: > -BEG

Re: mailboxes command confusion.

2002-01-10 Thread dan radom
the reason is i wasn't aware of the -1 option for ls. am now :) thanks > Just curious... Is there any reason that you're using > > ls -l | awk > > instead of a simple > > ls -1

macro usage within editor

2002-01-10 Thread dan radom
Is it possible to create a macro that can be used when composing an email? I like to trim my emails as much as possible, and a macro to send :.,$d to vi would be helpful. can that be done? dan

tagging messages based on date

2002-02-15 Thread dan radom
Fellow mutt lovers, I'm wondering if mutt has the ability to tag messages based on a date range. I'm specifically looking to tag all messages received from say 1.1.2002 to 1.31.2002. dan

Re: tagging messages based on date

2002-02-15 Thread dan radom
Hmmm. IAfter reading the muttrc man page I'm not sure why this isn't working. I'm doing T~r02/02/2002-02/05/2002 and even T~r02/02-/02/05 which should both work. mutt 1.3.27i. dan * Christopher S. Swingley ([EMAIL PROTECTED]) wrote: > Dan, > > > I'm wondering if mutt has the ability to tag

Re: How to bind t to pager as it's done to index?

2002-03-02 Thread dan radom
well home and end are bound as well, but neither of those have worked in a long time. * parv ([EMAIL PROTECTED]) wrote: > in message <[EMAIL PROTECTED]>, > wrote Charles Jie thusly... > > > ... > > I tried: > > > > bind pager t tag-thread > > > > I tried again: > > > > macro pager t t

Re: My Mutt Won't Bark

2002-03-02 Thread dan radom
you want ... set mbox = ~/Mail/inbox and mailboxes `echo ~/mail/*` and 1.3.22i has a remote security expliot. grab 1.3.27i. dan * Jerry Van Brimmer ([EMAIL PROTECTED]) wrote: > SuSe 7.3, Mutt 1.3.22.1i (2001-08-30) > > Mutt newbie here, starting to be a frustrated Mutt newbie. The docs say t

Re: outgoingmail

2002-04-03 Thread dan radom
you can probably just get by with setting a smart relay in sendmail...DSsomesmtp.yourisp.com dan * Johannes Breu ([EMAIL PROTECTED]) wrote: > I can get mails from my POP-server using mutt but I am not able to send > mails. I think is due to unsuccessfull configuration of sendmail. So > this is

Re: running mutt behind a firewall

2002-04-21 Thread dan radom
You can also set "my_hdr From:" and "set envelope_from" and not have to mess with sendmail. It doesn't need to be listening for connections to send mail. It will invoke itself when needed. If you can send mail through your firewall, so can sendmail. dan * Russell Hoover ([EMAIL PROTECTED])

Re: How to define mailboxes ?

2002-05-11 Thread dan radom
* Michael Seiwert ([EMAIL PROTECTED]) wrote: > > Hi, > > how to define imap mailboxes ??? > mailboxes `ls -1 /home/graffix/mail/* |egrep -v '(gz|drafts|sent)' | tr '\012' ' '` that's how i define them. the -1 and |tr isn't really necessary, as ls outputs differently to a term then it does to

Re: How to define mailboxes ?

2002-05-11 Thread dan radom
that's what happens when i send email before that first cup of coffee. dan * Michael Seiwert ([EMAIL PROTECTED]) wrote: > *On Sat, May 11, 2002 at 08:15:56AM -0600, dan radom wrote: > > * Michael Seiwert ([EMAIL PROTECTED]) wrote: > > > > > > Hi, > >

Re: Sending Mails out of mutt to mailhub

2002-05-14 Thread dan radom
You cannot have sendmail and ssmail listening on port 25. only one or the other. fetchmail doesn't have to pass mail off to a MTA like sendmail. It can be configured to pass mail directly to a MDA like procmail. If you're using the built in pop capabilities of mutt, you really don't need fe

imap troubles

2002-10-09 Thread dan radom
I've nuilt mutt with imap and ssl support, but when i start it and try to connect to any imaps server it tells me that "SSL in unavailable". I don't understand whu it thinks SSL is unavaiable. (%:~)- ldd /usr/local/bin/mutt |egrep '(crypto|ssl)' libssl.so.2 => /lib/libssl.so.2 (0x4005c

imap issues

2002-10-09 Thread dan radom
in the process of playing with imap i noticed something strange. when opening any mailbox, the current highlighted message appears to have the same text, foreground and background colors. in other words it appears as a solid red bar, where it should have white text. if i move to another mess

imap troubles

2002-10-09 Thread dan radom
I've nuilt mutt with imap and ssl support, but when i start it and try to connect to any imaps server it tells me that "SSL in unavailable". I don't understand whu it thinks SSL is unavaiable. (%:~)- ldd /usr/local/bin/mutt |egrep '(crypto|ssl)' libssl.so.2 => /lib/libssl.so.2 (0x4005c

Re: imap issues - color of indicator

2002-10-10 Thread dan radom
this only happens with imap (image at http://radom.org/mutt-imap.png). you'll notice the stuff that's normally highlighted is at the very bottom of the image. here's my color config... color indicator white red dan * Sven Guckes ([EMAIL PROTECTED]) wrote: > * dan radom

Re: imap issues - color of indicator

2002-10-11 Thread dan radom
The terminal apps that I've tested with are xterm and Eterm. The terminal types I've tested with are xterm , xterm-color, screen-w, linux (console) and vt100. With vt100 I do not see this problem. WIth all other term types mentioned I do see it. This same client also reads local mbox files,

Re: imap issues

2002-10-13 Thread dan radom
* dan radom ([EMAIL PROTECTED]) wrote: > in the process of playing with imap i noticed something strange. when opening any >mailbox, the current highlighted message appears to have the same text, foreground >and background colors. in other words it appears as a solid red bar, where

Re: imap issues -> color issue?

2002-10-13 Thread dan radom
* Sven Guckes ([EMAIL PROTECTED]) wrote: > so the "green on default" thing made mutt place > the red bar at the bottom of the screen? huh?? > > Sven [green things? it's *gotta* be aliens...] yup. when vt100 worked fine i figured it was a runaway color line in muttrc. i commented then out o

Re: be ,,subscribed'' on a mailinglist but not change view of index

2002-10-14 Thread dan radom
* Richard Cattien ([EMAIL PROTECTED]) wrote: > Hi, > > is there a way to be ``subscribed'' on a mailinglist in ~/.muttrc but > not change the view in the index, say to keep seeing who sent the mail > to the list? > set index_format="%4C %Z %{%b %d} %-30.30F %-25.25L (%c) %s" will display both