Displaying tar.gz archives

2009-07-22 Thread Noah Slater
Hey, I would like to add a mailcap entry so that I view the contents of tar.gz archives as a list of filenames, but I'm, not sure how to do it. When I attach one, it is added with the application/octet-streem MIME type. Any thoughts on how to approach this? Thaks, -- Noah Slater, http://tumbol

Re: Displaying tar.gz archives

2009-07-22 Thread Nicolas Sebrecht
On Wed, Jul 22, 2009 at 08:00:47AM +0100, Noah Slater wrote: > I would like to add a mailcap entry so that I view the contents of tar.gz > archives as a list of filenames, but I'm, not sure how to do it. When I attach > one, it is added with the application/octet-streem MIME type. > > Any thought

Re: sigdashes

2009-07-22 Thread Rocco Rutte
Hi, * Tim Gray wrote: > True. I just wanted to make sure that was in fact how mutt was > supposed to behaving. Though I would hope that most format=flowed > rewrapping engines first strip off the quote characters, and then > recognize a "-- " as a sigdash and leave it alone. That's at least I

Re: program to generate mailboxes lines

2009-07-22 Thread Christian Ebert
* Christian Ebert on Tuesday, July 21, 2009 at 17:55:36 +0100 > * lee on Monday, July 20, 2009 at 22:28:25 -0600 >> On Mon, Jul 20, 2009 at 10:11:15PM -0600, lee wrote: >>> Here's the program. Let me know how you like it :) > > Nice. > >> Hn, one small adjustment: The recursion level is irrelevan

Re: SSL encrypts for recipients only

2009-07-22 Thread Rocco Rutte
Hi, * Bertram Scharpf wrote: > As I need the same thing with PGP encryption, I just wrote another > patch: > > http://www.bertram-scharpf.de/tmp/encrypt_self.patch So I think somebody should open a ticket (if there isn't one yet) and add both patches as an enhancement along with the "patch" k

Re: Displaying tar.gz archives

2009-07-22 Thread Rocco Rutte
Hi, * Noah Slater wrote: > I would like to add a mailcap entry so that I view the contents of tar.gz > archives as a list of filenames, but I'm, not sure how to do it. When I attach > one, it is added with the application/octet-streem MIME type. Just search the net for mutt.octet.filter. It's a

Re: split display?

2009-07-22 Thread Arthur Dent
On Tue, 2009-07-14 at 00:31 -0600, lee wrote: > Hi, > > is it possible to somehow create a display that is split up in some > way, or is there a way to assign mails to categories and fold these > categories? > > What I want to see as overview of my inbox is something like a number > of categories

Re: [mutt] generating mailboxes command

2009-07-22 Thread Christian Ebert
* Adam Wellings on Tuesday, July 21, 2009 at 20:28:39 +0100 > On Tue, 21 Jul 2009, Christian Ebert wrote: >> Well, your nodes clobber the mailboxes list, don't they. > > Not that I can see. Do (bound to by default) in the browser. This lists your configured mailboxes, and the nodes shouldn't be

Re: SSL encrypts for recipients only

2009-07-22 Thread Bertram Scharpf
Hi, Am Mittwoch, 22. Jul 2009, 11:19:01 +0200 schrieb Rocco Rutte: > * Bertram Scharpf wrote: > > > As I need the same thing with PGP encryption, I just wrote another > > patch: > > > > http://www.bertram-scharpf.de/tmp/encrypt_self.patch > > So I think somebody should open a ticket (if there

Re: [mutt] generating mailboxes command

2009-07-22 Thread Adam Wellings
On Wed, 22 Jul 2009, Christian Ebert wrote: > * Adam Wellings on Tuesday, July 21, 2009 at 20:28:39 +0100 > > On Tue, 21 Jul 2009, Christian Ebert wrote: > >> Well, your nodes clobber the mailboxes list, don't they. > > > > Not that I can see. > > Do (bound to by default) in the browser. > Thi

Re: program to generate mailboxes lines

2009-07-22 Thread lee
On Tue, Jul 21, 2009 at 05:55:36PM +0100, Christian Ebert wrote: > * lee on Monday, July 20, 2009 at 22:28:25 -0600 > > On Mon, Jul 20, 2009 at 10:11:15PM -0600, lee wrote: > >> Here's the program. Let me know how you like it :) > > Nice. I put a better version on http://sourceforge.net/projects/

Re: program to generate mailboxes lines

2009-07-22 Thread lee
On Wed, Jul 22, 2009 at 10:18:14AM +0100, Christian Ebert wrote: > > > > mailboxes = `mutt-mb ~/Mail` > > mailboxes `mutt-mb ~/Mail` > > grr, mailboxes is a command, not a variable. Both work --- does it make a difference?

Re: program to generate mailboxes lines

2009-07-22 Thread Rocco Rutte
Hi, * lee wrote: > On Wed, Jul 22, 2009 at 10:18:14AM +0100, Christian Ebert wrote: > > > mailboxes = `mutt-mb ~/Mail` > > mailboxes `mutt-mb ~/Mail` > > grr, mailboxes is a command, not a variable. > Both work --- does it make a difference? Yes and no. Given 'mutt-mb ~/Mail' prints '~/Mail

Re: program to generate mailboxes lines

2009-07-22 Thread lee
On Wed, Jul 22, 2009 at 03:53:20PM +0200, Rocco Rutte wrote: > Hi, > > * lee wrote: > > On Wed, Jul 22, 2009 at 10:18:14AM +0100, Christian Ebert wrote: > > > > > mailboxes = `mutt-mb ~/Mail` > > > > mailboxes `mutt-mb ~/Mail` > > > > grr, mailboxes is a command, not a variable. > > > Both w

Re: generating mailboxes command (was: split display?)

2009-07-22 Thread lee
On Tue, Jul 21, 2009 at 12:03:03PM +0100, Christian Ebert wrote: > Sure, but (my find doesn't have printf): > > ~$ time find ~/Mail -type d -name cur -execdir pwd \; > /dev/null > > real0m54.973s > user0m0.447s > sys 0m54.159s > ~$ time find ~/Mail -type -d \( \( -name cur -o -name n

Re: [mutt] generating mailboxes command (was: split display?)

2009-07-22 Thread lee
On Tue, Jul 21, 2009 at 02:52:57PM +0100, Adam Wellings wrote: > If the set of maildirs rarely changes, would it be faster to > generate a file and just source that in your .muttrc? It depends on what information from the file system is already cached. Assuming that nothing is cached, I would thi

Re: [mutt] generating mailboxes command

2009-07-22 Thread lee
On Tue, Jul 21, 2009 at 05:49:13PM +0100, Christian Ebert wrote: > lee's little C program mutt-mb that he posted in this thread > > Message-ID: <20090721042825.gj27...@cat.rubenette.is-a-geek.com> It's better to use the version on sourceforge instead. The one posted here doesn't free all the m

Re: Automatic thread collapsing

2009-07-22 Thread Noah Slater
On Tue, Jul 21, 2009 at 04:02:42PM -0500, Kyle Wheeler wrote: > On Tuesday, July 21 at 03:03 AM, quoth Noah Slater: > > Is there any way to get mutt to continually and automatically > > collapse threads as you move around in the pager? So, if I select a > > collapsed thread, it should be un-collaps

Re: split display?

2009-07-22 Thread lee
On Wed, Jul 22, 2009 at 10:29:50AM +0100, Arthur Dent wrote: > On Tue, 2009-07-14 at 00:31 -0600, lee wrote: > > Or is there another MUA which can do this and work on maildir? > > It may be heresy to say this on a Mutt list, but have you tried > Evolution? Yes --- it's polluting my mail storage b

Re: Displaying tar.gz archives

2009-07-22 Thread Rado S
=- Rocco Rutte wrote on Wed 22.Jul'09 at 11:26:09 +0200 -= > * Noah Slater wrote: > > I would like to add a mailcap entry so that I view the contents of tar.gz > > archives as a list of filenames, but I'm, not sure how to do it. When I > > attach > > one, it is added with the application/octet-st

Re: Displaying tar.gz archives

2009-07-22 Thread Noah Slater
On Wed, Jul 22, 2009 at 06:29:57PM +0200, Rado S wrote: > There is also "mime_lookup application/octet-stream", and then the > respective mailcap entry like "gzip -dc | tar -tvf -" Well, I had considered this, but application/octet-stream is a catch-all MIME type, and I can't blithely assume that

Re: setting mailboxes from the output of a command

2009-07-22 Thread lee
On Tue, Jul 21, 2009 at 04:04:23PM -0500, Kyle Wheeler wrote: > >mailboxes = `mutt-mb /home/lee/Mail` > > Just to make sure you notice: mailboxes is a *command*, not a value, > so mutt is interpreting that = as a mailbox name to expand (namely, > $folder). Thanks, I found it another post here.

how to prevent external commands from being substituted in macro definitions

2009-07-22 Thread lee
Hi, how do I prevent external commands from being processed when mutt is parsing a macro definition in ~/.muttrc? What I'm trying to do is: macro index .a "unmailboxes * ; mailboxes `mutt-mb -line ~/Mail`" macro index .l "unmailboxes * ; mailboxes `mutt-mb -line ~/Mail/Lists`" This gets substi

Re: navigation

2009-07-22 Thread Robert Holtzman
On Sun, 19 Jul 2009, Tim Tebbit wrote: Robert Holtzman wrote: Running mutt and mutt-patched 1.5.17 with the side panel listing mailboxes on Ubuntu Hardy. I can't find a way to navigate in this list other than by using "c" and "?". Is the side panel functional or just informative? I run mutt a

Re: navigation

2009-07-22 Thread Robert Holtzman
On Mon, 20 Jul 2009, lee wrote: On Sun, Jul 19, 2009 at 10:44:07AM -0700, Robert Holtzman wrote: Running mutt and mutt-patched 1.5.17 with the side panel listing mailboxes on Ubuntu Hardy. I can't find a way to navigate in this list other than by using "c" and "?". Is the side panel functional

Re: SSL encrypts for recipients only

2009-07-22 Thread sigi
On Wed, Jul 22, 2009 at 11:19:01AM +0200, Rocco Rutte wrote: > * Bertram Scharpf wrote: > > As I need the same thing with PGP encryption, I just wrote another > > patch: > > http://www.bertram-scharpf.de/tmp/encrypt_self.patch > > So I think somebody should open a ticket (if there isn't one yet)

Re: Displaying tar.gz archives

2009-07-22 Thread Noah Slater
On Wed, Jul 22, 2009 at 11:26:09AM +0200, Rocco Rutte wrote: > Just search the net for mutt.octet.filter. It's a shell script that has > useful commands for displaying many MIME types, including listing the > contents of a number of archive files. Thanks, this works a treat. -- Noah Slater, http

Re: SSL encrypts for recipients only

2009-07-22 Thread Bertram Scharpf
Hi, Am Mittwoch, 22. Jul 2009, 20:54:30 +0200 schrieb sigi: > On Wed, Jul 22, 2009 at 11:19:01AM +0200, Rocco Rutte wrote: > > * Bertram Scharpf wrote: > > > http://www.bertram-scharpf.de/tmp/encrypt_self.patch > > > > So I think somebody should open a ticket (if there isn't one yet) and > > ad

Re: navigation

2009-07-22 Thread lee
On Wed, Jul 22, 2009 at 10:46:12AM -0700, Robert Holtzman wrote: > On Mon, 20 Jul 2009, lee wrote: >> Did you get sidebar-scroll-up and sidebar-scroll-down to work? I can >> bind them to keys, but mutt says the key isn't bound when I press it. > > The sidebar scroll works great but the pager scroll

Re: Displaying tar.gz archives

2009-07-22 Thread Rocco Rutte
On Wed, Jul 22, 2009 at 05:35:02PM +0100, Noah Slater wrote: > On Wed, Jul 22, 2009 at 06:29:57PM +0200, Rado S wrote: > > There is also "mime_lookup application/octet-stream", and then the > > respective mailcap entry like "gzip -dc | tar -tvf -" > > Well, I had considered this, but application/o

Re: Displaying tar.gz archives

2009-07-22 Thread Noah Slater
On Thu, Jul 23, 2009 at 12:11:08AM +0200, Rocco Rutte wrote: > Did you actually look up what "mime_lookup" means? If you would > have done, you wouldn't have to worry. mime_lookup and mailcap do > exactly the same as the octet filter script. Nope! My bad! > I just find the script more convenient

urlview problems

2009-07-22 Thread dv1445
Hello, Today after building and installing the latest tip, I find that urlview doesn't work anymore. I hit CTRL-] and I get a list of urls, but when I go to one that I know is valid and hit return, nothing happens. Upon quitting mutt, I see right before my shell prompt: sh: line 1: url_handle

Re: urlview problems

2009-07-22 Thread dv1445
> Today after building and installing the latest tip, I find that urlview > doesn't work anymore. I hit CTRL-] and I get a list of urls, but when I go > to one that I know is valid and hit return, nothing happens. Upon quitting > mutt, I see right before my shell prompt: sh: line 1: url_handle