* Re: SMTP stuff. Was: Re: [9fans] Re: Free Plan 9 "shell" accounts?
@ 2003-05-19 16:35 markp
2003-05-19 21:28 ` matt
0 siblings, 1 reply; 9+ messages in thread
From: markp @ 2003-05-19 16:35 UTC (permalink / raw)
To: 9fans
| Now I'm solving the "how to get the .awk out of the .ps" problem instead
term% gs -q -dNODISPLAY -dNOBIND -dWRITESYSTEMDICT -dSIMPLE ps2ascii.ps sendout3.ps quit.ps
:)
---mp
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: SMTP stuff. Was: Re: [9fans] Re: Free Plan 9 "shell" accounts?
2003-05-19 16:35 SMTP stuff. Was: Re: [9fans] Re: Free Plan 9 "shell" accounts? markp
@ 2003-05-19 21:28 ` matt
2003-05-20 8:50 ` Aharon Robbins
0 siblings, 1 reply; 9+ messages in thread
From: matt @ 2003-05-19 21:28 UTC (permalink / raw)
To: 9fans
markp@panix.com wrote:
>| Now I'm solving the "how to get the .awk out of the .ps" problem instead
>
>term% gs -q -dNODISPLAY -dNOBIND -dWRITESYSTEMDICT -dSIMPLE ps2ascii.ps sendout3.ps quit.ps
>
>:)
>
was it on purpose that this would extract everything *but* the awk code?
> The program relies on a not-yet-released version of gawk
I guess I'll have to wait until then, which is a shame because I'm a big
fan of awk and it's derivatives.
But I'm excited about awk and sockets meeting on unix
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: SMTP stuff. Was: Re: [9fans] Re: Free Plan 9 "shell" accounts?
2003-05-19 21:28 ` matt
@ 2003-05-20 8:50 ` Aharon Robbins
2003-05-20 11:33 ` boyd, rounin
0 siblings, 1 reply; 9+ messages in thread
From: Aharon Robbins @ 2003-05-20 8:50 UTC (permalink / raw)
To: 9fans
In article <3EC94C72.7080304@proweb.co.uk>, matt <9fans@cse.psu.edu> wrote:
>markp@panix.com wrote:
>
>>| Now I'm solving the "how to get the .awk out of the .ps" problem instead
>>
>>term% gs -q -dNODISPLAY -dNOBIND -dWRITESYSTEMDICT -dSIMPLE ps2ascii.ps
>sendout3.ps quit.ps
>>
>>:)
>
>was it on purpose that this would extract everything *but* the awk code?
I will email you the awk code under separate cover, later today.
Or I can put it up for http if enough people want it.
> > The program relies on a not-yet-released version of gawk
>
>I guess I'll have to wait until then, which is a shame because I'm a big
>fan of awk and it's derivatives.
Remember that I said that in 1999. Current gawk supports sockets.
ftp://ftp.gnu.org/gnu/gawk/gawk-3.1.2.tar.gz. 3.1.3 will be out, I hope,
soon. In the meantime, enjoy.
Arnold
--
Aharon (Arnold) Robbins --- Pioneer Consulting Ltd. arnold@skeeve.com
P.O. Box 354 Home Phone: +972 8 979-0381 Fax: +1 928 569 9018
Nof Ayalon Cell Phone: +972 51 297-545
D.N. Shimshon 99785 ISRAEL
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: SMTP stuff. Was: Re: [9fans] Re: Free Plan 9 "shell" accounts?
@ 2003-05-20 0:33 markp
0 siblings, 0 replies; 9+ messages in thread
From: markp @ 2003-05-20 0:33 UTC (permalink / raw)
To: 9fans
| was it on purpose that this would extract everything *but* the awk code?
oops. no. :/
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [9fans] Re: Free Plan 9 "shell" accounts?
@ 2003-05-18 19:25 Andrew
2003-05-18 19:38 ` Dan Cross
0 siblings, 1 reply; 9+ messages in thread
From: Andrew @ 2003-05-18 19:25 UTC (permalink / raw)
To: 9fans
On Sun, May 18, 2003 at 09:21:07PM +0200, boyd, rounin wrote:
> > "Life With Qmail"
>
> oxymoron
>
maybe Im going to look stupid for asking this, but whats wrong with
qmail? Sure its a unix tool, and djb isnt always the nicest guy in the
world, but it seems to work pretty darn well, compared with
say...sendmail.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [9fans] Re: Free Plan 9 "shell" accounts?
2003-05-18 19:25 Andrew
@ 2003-05-18 19:38 ` Dan Cross
2003-05-19 11:17 ` SMTP stuff. Was: " Aharon Robbins
0 siblings, 1 reply; 9+ messages in thread
From: Dan Cross @ 2003-05-18 19:38 UTC (permalink / raw)
To: 9fans
> > oxymoron
>
> maybe Im going to look stupid for asking this, but whats wrong with
> qmail? Sure its a unix tool, and djb isnt always the nicest guy in the
> world, but it seems to work pretty darn well, compared with
> say...sendmail.
Qmail is okay. The biggest single problem with it is that DJB is
firmly convinced that the thing to do is avoid latency, because SMTP is
slow. So, he opens up many TCP connections to a single remote server
at once. The result is that the remote server can get severely
overloaded, which makes it defer delivery. You end up with this
happening in a slowly attenuating cycle, which can actually increase
latency. Maybe this has been fixed with a qmail patch; I don't know.
Postfix solves this problem by using a slow-start style algorithm to
find the point at which it's transfering the most mail to a remote site
in parallel, without overloading it. You trade a little bit of
increased latency at the beginning for greater efficiency overall. But
Postfix is getting kind of big and bloated, itself. :-(
- Dan C.
^ permalink raw reply [flat|nested] 9+ messages in thread
* SMTP stuff. Was: Re: [9fans] Re: Free Plan 9 "shell" accounts?
2003-05-18 19:38 ` Dan Cross
@ 2003-05-19 11:17 ` Aharon Robbins
2003-05-19 12:19 ` matt
2003-05-19 12:29 ` boyd, rounin
0 siblings, 2 replies; 9+ messages in thread
From: Aharon Robbins @ 2003-05-19 11:17 UTC (permalink / raw)
To: 9fans
Perhaps a bit off topic, but ... since SMTP came up, if anyone's interested,
http://www.skeeve.com/sendout3.ps.gz
is the postscript for a small program I wrote (four years ago) using
Gawk and its sockets. It reads a Unix-style mbox file and sends the
contained messages to an SMTP server for delivery. I wrote it when my
network connectivity was somewhat more primitive than now.
It's not a sendmail/qmail/postfix replacement by any means, but it may
provide some amusement.
(It's a .ps file since I used literate programming (noweb + latex) to
write the code.)
Enjoy,
Arnold
--
Aharon (Arnold) Robbins --- Pioneer Consulting Ltd. arnold@skeeve.com
P.O. Box 354 Home Phone: +972 8 979-0381 Fax: +1 928 569 9018
Nof Ayalon Cell Phone: +972 51 297-545
D.N. Shimshon 99785 ISRAEL
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: SMTP stuff. Was: Re: [9fans] Re: Free Plan 9 "shell" accounts?
2003-05-19 11:17 ` SMTP stuff. Was: " Aharon Robbins
@ 2003-05-19 12:19 ` matt
2003-05-19 12:29 ` boyd, rounin
1 sibling, 0 replies; 9+ messages in thread
From: matt @ 2003-05-19 12:19 UTC (permalink / raw)
To: 9fans
I'm particularly interested as that was a solution I was looking for at
that very moment
Now I'm solving the "how to get the .awk out of the .ps" problem instead
I'm not sure if that wouldn't even be a DMCA violation !
>Perhaps a bit off topic, but ... since SMTP came up, if anyone's interested,
>
> http://www.skeeve.com/sendout3.ps.gz
>
>is the postscript for a small program I wrote (four years ago) using
>Gawk and its sockets. It reads a Unix-style mbox file and sends the
>contained messages to an SMTP server for delivery. I wrote it when my
>network connectivity was somewhat more primitive than now.
>
>It's not a sendmail/qmail/postfix replacement by any means, but it may
>provide some amusement.
>
>(It's a .ps file since I used literate programming (noweb + latex) to
>write the code.)
>
>Enjoy,
>
>Arnold
>
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: SMTP stuff. Was: Re: [9fans] Re: Free Plan 9 "shell" accounts?
2003-05-19 11:17 ` SMTP stuff. Was: " Aharon Robbins
2003-05-19 12:19 ` matt
@ 2003-05-19 12:29 ` boyd, rounin
1 sibling, 0 replies; 9+ messages in thread
From: boyd, rounin @ 2003-05-19 12:29 UTC (permalink / raw)
To: 9fans
> Perhaps a bit off topic, but ... since SMTP came up, if anyone's interested,
>
> http://www.skeeve.com/sendout3.ps.gz
>
does it grok groups?
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2003-05-21 8:30 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-05-19 16:35 SMTP stuff. Was: Re: [9fans] Re: Free Plan 9 "shell" accounts? markp
2003-05-19 21:28 ` matt
2003-05-20 8:50 ` Aharon Robbins
2003-05-20 11:33 ` boyd, rounin
2003-05-21 8:30 ` Aharon Robbins
-- strict thread matches above, loose matches on Subject: below --
2003-05-20 0:33 markp
2003-05-18 19:25 Andrew
2003-05-18 19:38 ` Dan Cross
2003-05-19 11:17 ` SMTP stuff. Was: " Aharon Robbins
2003-05-19 12:19 ` matt
2003-05-19 12:29 ` boyd, rounin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).