[9fans] Acme Mail

2010-05-25 Thread Skip Tavakkolian
is there a way to mark *all* messages in a mail box for later processing - e.g. Delmesg. in nedmail one can do g/pattern/d unfortunately Edit ,x/pattern/ --+ marks only one.

Re: [9fans] Acme Mail

2010-05-25 Thread David Leimbach
Edit , selects the whole thing doesn't it? When I want to clear out an entire Acme window I just do Edit ,d for example. I don't really use Acme Mail though, so I'm unsure of what the difference is in "marking" vs "selecting" Daev On Tue, May 25, 2010 at 12:11 AM, Skip Tavakkolian <9...@9netic

Re: [9fans] Acme Mail

2010-05-25 Thread erik quanstrom
> is there a way to mark *all* messages in a mail box for later > processing - e.g. Delmesg. in nedmail one can do g/pattern/d > unfortunately > > Edit ,x/pattern/ --+ > > marks only one. what about: Edit s:^[0-9].*$:(deleted-)&:g nupas Mail has a nonstandard Save in the main window. iirc, a

Re: [9fans] Acme Mail

2010-05-25 Thread Skip Tavakkolian
sorry, i meant all messages meeting a pattern in the subject line. combining your suggestion with pattern marking works correctly: Edit ,x/pattern/ --+ s/^[0-9]+/(deleted)-&/ >> is there a way to mark *all* messages in a mail box for later >> processing - e.g. Delmesg. in nedmail one can do g/p

Re: [9fans] Acme Mail

2010-05-25 Thread Skip Tavakkolian
i was wrong; it doesn't work. Put doesn't actually delete the messages. i think this will require mods to /acme/mail/src/mail.c > sorry, i meant all messages meeting a pattern in the subject line. combining > your suggestion with pattern marking works correctly: > > Edit ,x/pattern/ --+ s/^[0-9]+

Re: [9fans] Acme Mail

2010-05-25 Thread ron minnich
On Tue, May 25, 2010 at 8:42 AM, Skip Tavakkolian <9...@9netics.com> wrote: > i was wrong; it doesn't work. Put doesn't actually delete the messages. i > think > this will require mods to /acme/mail/src/mail.c we had a back and forth a long time ago about this. I wanted a way to match a subject a

[9fans] Announcing rc-http 1.0

2010-05-25 Thread Ethan Grammatikidis
rc-httpd is a web server designed to run anywhere werc will, requiring only rc, awk, sed, and ls from the Plan 9 toolset. At 388 lines of code it's not tiny, but it is rather feature-complete. It will serve CGI scripts (including werc), its own modules (rather more efficient than CGI), stat

Re: [9fans] Announcing rc-http 1.0

2010-05-25 Thread Kris Maglione
On Tue, 25 May 2010 17:53:29 +0100 Ethan Grammatikidis wrote: > rc-httpd is a web server designed to run anywhere werc will, > requiring only rc, awk, sed, and ls from the Plan 9 toolset. At 388 > lines of code it's not tiny, but it is rather feature-complete. It > will serve CGI scripts (includi

Re: [9fans] Acme Mail

2010-05-25 Thread erik quanstrom
> You can't just change what's in the window AFAIK. That's a reflection > of state, not the state itself. Mail's inspection of the selection confused me try typing (deleted- in front of a message. now try deleting it by selecting that line and b2ing Delmesg. Nothing happens. i can't find the dis

[9fans] Tvx update

2010-05-25 Thread EBo
I am please to announce the 05/22/2010 update of Tvx has been accepted into TinyCoreLinux's standard distribution package list. This update includes all updates to 9vx and sysfromiso including more strongarm support, a 9vx wrapper which assists new users in either copying or linking to the base P

Re: [9fans] Tvx update

2010-05-25 Thread Nick LaForge
Amazing. I have no excuse for not using Linux now.

Re: [9fans] Tvx update

2010-05-25 Thread EBo
On Tue, 25 May 2010 11:34:13 -0800, Nick LaForge wrote: > Amazing. I have no excuse for not using Linux now. Let me know about your experiences. EBo --

Re: [9fans] Acme Mail

2010-05-25 Thread Mathieu Lonjaret
I had only replied to the OP because I didn't think other people could be interested, and I had announced it a while ago already, but here goes again, just in case. I patched p9p acme Mail to have a sort by conversation/subject (http://codereview.appspot.com/264043/show), so if what you want is be

[9fans] dealing with pessimal tcp stacks

2010-05-25 Thread erik quanstrom
i had some trouble with a very badly behaved tcp stack "crashing" my terminal by causing the resequence queues of >900 tinygrams. there's a little writeup here http://www.quanstro.net/plan9/tcpreseq/index.html the short story is that limiting the resequence queue to a "reasonable" number of packe

Re: [9fans] Acme Mail

2010-05-25 Thread Skip Tavakkolian
thanks. that will go a long way toward what i need. hopefully the patch is easy to apply to the latest Plan9 sources. > I had only replied to the OP because I didn't think other people could > be interested, and I had announced it a while ago already, but here goes > again, just in case. > > I pa

Re: [9fans] Acme Mail

2010-05-25 Thread Akshat Kumar
> thanks. that will go a long way toward what i need. hopefully the patch > is easy to apply to the latest Plan9 sources. If you make any modifications to Mathieu's patch for p9p, in order to apply it to Plan 9, then could you please post the new patch sources somewhere? I could definitely make u

Re: [9fans] dealing with pessimal tcp stacks

2010-05-25 Thread erik quanstrom
On Tue May 25 17:31:50 EDT 2010, quans...@quanstro.net wrote: > i had some trouble with a very badly behaved tcp stack > "crashing" my terminal by causing the resequence queues > of >900 tinygrams. there's a little writeup here > http://www.quanstro.net/plan9/tcpreseq/index.html > > the short sto

Re: [9fans] Acme Mail

2010-05-25 Thread Russ Cox
Nedmail and acme Mail are operating on the same mailbox, and nedmail already has a nice language built in. Back when I did that sort of thing, I found it easy to just fire up nedmail in a shell window. Russ

Re: [9fans] Acme Mail

2010-05-25 Thread Lyndon Nerenberg
Nedmail and acme Mail are operating on the same mailbox, and nedmail already has a nice language built in. Back when I did that sort of thing, I found it easy to just fire up nedmail in a shell window. But ultimatly this sort of functionality should be in upas/fs itself, driven by commands wri