On Wednesday 24 July 2002 12:53, Calvin Austin wrote:
> No news is good news. Juergen has got some 1.4.1 beta builds in testing
>
WOOHOO!
--
Rob Saul.:|:[EMAIL PROTECTED]:|:.de recta non tolerandum sunt
--
To UNSUBSCRIBE, e
On Wed, Jul 24, 2002 at 12:53:27PM -0700, Calvin Austin wrote:
>No news is good news. Juergen has got some 1.4.1 beta builds in testing
>regards
>calvin
Yes indeed :)
Sometimes its awfully silent though ;)
Of course I haven't been subscribed to
this list for a long time yet ...
No news is good news. Juergen has got some 1.4.1 beta builds in testing
regards
calvin
Vincent Touquet wrote:
>
> Is there still anyone from the blackdown project active on this list ? :)
>
> Only mails I've been getting so far , is "I'm away on holiday&qu
Is there still anyone from the blackdown project active on this list ? :)
Only mails I've been getting so far , is "I'm away on holiday"
and unsubscription emails :/
Well, except for that valid question about source
code availability of the JMF libs ...
Hello ?
On Wed, 2002-07-03 at 18:09, Karl Asha wrote:
> Due to spam complaints from my provider that originated from this mailing list, I
>have enabled the restriction that posting to this list requires you to be subscribed
>to the list. What this means to you is that if the email ad
Heyaz. In case anyone has caught the W32.Klez virus
that has flown around this list recently, have a look here:
http://securityresponse.symantec.com/avcenter/venc/data/w32.klez.removal.tool.html
I'm in no way associated with Symantec, I've just
had good luck with th
Due to spam complaints from my provider that
originated from this mailing list, I have enabled the restriction that posting
to this list requires you to be subscribed to the list. What this means to you is that if the email address you subscribed with
does not match the email address you
> >Has anybody got an idea about why this list is so slow?
> >When people send a message it takes an average of 45 min. from a
> > mail is sent to the list till it is received by the people on
> > the list making it hard to ask quick questions.
Yes, this is a real sha
Yes, it is very slow.
Perhaps this is a moderated list?
(although I don't see why it would be)
Drew
>
>Hi List
>
>Has anybody got an idea about why this list is so slow?
>When people send a message it takes an average of 45 min. from a mail is
>sent to the list til
CTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, April 04, 2002 7:33 AM
Subject: Slow list
Hi List
Has anybody got an idea about why this list is so slow?
When people send a message it takes an average of 45 min. from a mail is
sent to the list till it is received by the people on the list
Hi List
Has anybody got an idea about why this list is so slow?
When people send a message it takes an average of 45 min. from a mail is
sent to the list till it is received by the people on the list making it
hard to ask quick questions.
To Drew Lane: Sorry for sending this mail to you first
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Sorry for the OT post, but I cant seem to find anywhere a mailing list
SPECIFICALLY for Java on Solaris/SPARC ... specially when dealing with
threading ( Solaris 8 comes with an alternative threading library in
/usr/lib/lwp ), optimization, JNI
I am developing an user interface for exploring file system. I use List to
contain the lists of files/subdirectory. Currently, file and directory are
the same text fond/color when they are displayed in the List. My question is
how to give users an obvious way to distinguish file and directory
You wrote:
> I had an inquiry/ feature request about how to do this for my JavaUnix project.
> Looks pretty easy on LINUX. Damn if I know how to do on Solaris tho.
> You said some directories in /proc//* are in accessible, ok just try it.
>
> I could also default to `/usr/sbin/ps -afe' or `/usr
>>>>> "Weiqi" == Weiqi Gao <[EMAIL PROTECTED]> writes:
Weiqi> Peter Pilgrim wrote:
>> I am considering writing a JNI to the process list.
>> How do you do this in Linux/Unix?
Weiqi> You open files in the "/proc" filesy
Peter Pilgrim wrote:
>
> I am considering writing a JNI to the process list.
> How do you do this in Linux/Unix?
You open files in the "/proc" filesystem. (We are going around in
circles now.)
--
Weiqi G
To: Peter Pilgrim/DMGIT/DMG UK/DeuBa@DMG UK; [EMAIL PROTECTED]
cc:
Subject: Re: How do you get to process list ?(ps auwwx in Java)
On Tue, Nov 21, 2000 at 03:37:48PM +, Peter Pilgrim wrote:
>
> Ok you've convinced me to look at `info proc' or `man proc' latter tonigh
1/2000 07:06 PST
>
> To: Peter Pilgrim/DMGIT/DMG UK/DeuBa@DMG UK
> cc: [EMAIL PROTECTED]
> Subject: Re: How do you get to process list ?(ps auwwx in Java)
>
>
> Peter Pilgrim wrote:
>
> > Hi
> >
> > I am considering writing a JNI to the process list.
&
/proc man page. For example, each process'
command line can be found in /proc//cmdline, where is the
process ID, and reading the file returns a null-separated list of
arguments. Environments can be found, in a similar format, in
/proc//environ. Basically, your program needs to step through al
- Message History
From: [EMAIL PROTECTED]@javalinux.net on 21/11/2000 07:06 PST
To: Peter Pilgrim/DMGIT/DMG UK/DeuBa@DMG UK
cc: [EMAIL PROTECTED]
Subject: Re: How do you get to process list ?(ps auwwx in Java)
Peter Pilgrim wrote:
> Hi
>
> I am considering writing a JNI to
---
>
>
> From: Lopez Jose Ariel <[EMAIL PROTECTED]> on 21/11/2000 10:09 NST
>
> To: Peter Pilgrim/DMGIT/DMG UK/DeuBa@DMG UK
> cc: [EMAIL PROTECTED]
> Subject: Re: How do you get to process list ?(ps auwwx in Java)
>
>
> Peter:
>
Peter Pilgrim wrote:
> Hi
>
> I am considering writing a JNI to the process list.
> How do you do this in Linux/Unix?
Most such things are done on Linux using information available from the /proc
filesystem - you should be able to write a very thorough ps, just by reading from that
21/11/2000 10:09 NST
To: Peter Pilgrim/DMGIT/DMG UK/DeuBa@DMG UK
cc: [EMAIL PROTECTED]
Subject: Re: How do you get to process list ?(ps auwwx in Java)
Peter:
You can read /proc filesystem for that
Try info /proc for more information
Ariel Lopez
On Tue, 21 Nov 2000, Peter Pilgrim wrote:
Peter:
You can read /proc filesystem for that
Try info /proc for more information
Ariel Lopez
On Tue, 21 Nov 2000, Peter Pilgrim wrote:
>
>
> Hi
>
> I am considering writing a JNI to the process list.
> How do you do this in Linux/Unix?
>
> --
&
> I have a question that would be appropriate for a Linux Kernel list.
> Does anyone know of a good one?
LKML, or the specialized ones (e.g. for USB, networking, etc).
The modules bit doesn't make sense to me; are you referring
to the kernel driver plus the userspace JNI glue to cal
I'm pretty sure Java/Linux isn't the list you want :-). I recommend:
http://www.tux.org/lkml/
Nathan
On Fri, Oct 27, 2000 at 02:31:48PM -0400, Brett Smith wrote:
> I have a question that would be appropriate for a Linux Kernel list.
> Does anyone know of a good one?
>
I have a question that would be appropriate for a Linux Kernel list.
Does anyone know of a good one?
We have written a driver for our proprietary h/w. The driver handles a
multitude of interrupts. The bottom half routine calls the
corresponding "Interrupt Handler" (static void interr
Hi-
Does anyone know of a mailing list dedicated to
Swing issues?
thanks in advance,
dave
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Hi,
Who can tell ome excellent mail list about Jbuilder or pure java?
Thank you very much!
Boris :-)
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Where is a good place to search the archives of this list?
Bret
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Hi,
Is there a way to get a list of all drivers registered
with the odbc and/or register a driver with odbc using Java/JDBC.
Thanks,
Nash'at
Nash'at Ahmad
SAIC-Applied Physics Operation
--
To UNSUBSCRIBE, email
"Billy V. Kantartzis" wrote:
>
> On Wed, 5 Apr 2000, Billy V. Kantartzis wrote:
>
> > i am trying to use the ready type of linked list and i found that there is
> > a bug in the add.(index, object) method.
> > i am trying to read the index after each addi
On Wed, 5 Apr 2000, Billy V. Kantartzis wrote:
> i am trying to use the ready type of linked list and i found that there is
> a bug in the add.(index, object) method.
> i am trying to read the index after each addition is performed and the
> value i get is always 0.
> when
There was a mishap with the nameservice on monday that carried on through
until this morning, causing the mailing lists and webserver to be
unreachable. Please be forwarned that service will be transferred later
this week and may result in additional downtime.
Cheers,
Karl
-
This was posted yesterday. I asked Ken if I could repost it here
and he said yes.
Ken Arnold <[EMAIL PROTECTED]> - SMI Software Development wrote:
>
> Ah, what a day.
>
> I've been working this issue pretty hard and here is the scoop from
> here:
>
> The press release was messed up.
That's just a typo in the list maintainer address. Used to point back
to me. Will fix it shortly.
Cheers,
Karl
Chris Abbey <[EMAIL PROTECTED]> writes:
> every recent mail from the list says:
>
> >To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> >with a subject of &q
every recent mail from the list says:
>To UNSUBSCRIBE, email to [EMAIL PROTECTED]
>with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
response when trying to ask someone to finally drop [EMAIL PROTECTED]
after two weeks of bounces:
>This Message was undel
On Fri, 15 Oct 1999, Jacob Nikom wrote:
> Date: Fri, 15 Oct 1999 09:58:03 -0400
> From: Jacob Nikom <[EMAIL PROTECTED]>
> To: Nicholas Wright <[EMAIL PROTECTED]>
> Cc: [EMAIL PROTECTED], [EMAIL PROTECTED]
> Subject: Re: reminder - this list is for Java & Linux
>
iling lists I'm on and you
have a problem. I'd prefer that the list remain limited primarily to
Linux-based Java questions. A good way to limit traffic is not to reply
to the entire list when someone asks an off-topic (e.g., generic Java)
question.
ay.
No. I don't agree. Many of us are on quite a few mailing lists to
keep up with developments in different areas. 10-15 messages a day
is way too much considering the signal to noise ratio.
This list is for discussion of the Blackdown port of the Java
language to the Linux operation s
> -Original Message-
> From: Nicholas Wright [mailto:[EMAIL PROTECTED]]
> Sent: Friday, October 15, 1999 4:09 AM
> To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> Subject: Re: reminder - this list is for Java & Linux
>
>
> Hi
>
> > We've had a lo
right wrote:
>
> Hi
>
> > We've had a lot of discussions on the list recently that were generic
> > questions about Java, questions that had nothing to do with Linux. I'm
> > sending this note to remind everyone that this mailing list is about
> > Java on Li
Hi
> We've had a lot of discussions on the list recently that were generic
> questions about Java, questions that had nothing to do with Linux. I'm
> sending this note to remind everyone that this mailing list is about
> Java on Linux. If you have generic Java questio
We've had a lot of discussions on the list recently that were generic
questions about Java, questions that had nothing to do with Linux. I'm
sending this note to remind everyone that this mailing list is about
Java on Linux. If you have generic Java questions, they do not belong
here. I
hi all,
can someone recomend me a good solaris list?
TIA
--Yohans
~
Yohans Mendoza Unix Administrator
[EMAIL PROTECTED]Sirius Images Inc.
http://www2.utep.edu/~yohans
The list was modified a couple of weeks ago to allow subscribers on the
digest list to post to the main list.
Not sure about the nature of my reaction though. Did I grow horns and
threaten your firstborn?
Cheers,
Karl
Armen Yampolsky <[EMAIL PROTECTED]> writes:
> I also had diff
think the answer is yes, but
there's been some doubt about the future of the project on this list,
and I'd like to put those fears to rest.
>Regarding the issue of "read-only" lists presented in this thread, I can't
>understand why there are still out there at the
IL PROTECTED]]
> Sent: Thursday, September 02, 1999 8:11 PM
> To: Java-Linux List; [EMAIL PROTECTED]; [EMAIL PROTECTED]
> Subject: Re: OT: Mailing list control
>
> I also had difficulty at one point with another aspect of the list -- none
> of my
> posts would make it thr
I also had difficulty at one point with another aspect of the list -- none of my
posts would make it through. I had a correspondence with a fellow named Karl Asha in
which we finally figured out that it was because I was subscribed to the digest
rather than the full list, but still it surprised
quot; participants? You know, so they
> > continue to get the wisdom of Java-Linux mailing list, but can't send anything
> > to the list?
>
> Mr. Reitwiesner's request is not unreasonable. He didn't ask to get on
> this list... it was someone else's idea o
Charles Forsythe wrote:
>
> Hey, is it possible to setup "read-only" participants? You know, so they
> continue to get the wisdom of Java-Linux mailing list, but can't send anything
> to the list?
Mr. Reitwiesner's request is not unreasonable. He didn
Hey, is it possible to setup "read-only" participants? You know, so they
continue to get the wisdom of Java-Linux mailing list, but can't send anything
to the list?
William Reitwiesner wrote:
> At 08:14 PM 8/31/99 +, you wrote:
>
> Hi. The broken mailing-list so
> this is out of list question. Can anybody tell me any mailing list
> for java servlets.
>
send mail to
[EMAIL PROTECTED]
with
subscribe servlet-interest
in the body of the message
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Tom JenkinsDe
hi,
this is out of list question. Can anybody tell me any mailing list
for java servlets.
Any help is appreciated.
bye,
MUTHU.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe"
Test.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
take me out of your mail list please. you are sending your mail to me and i have
nothing to do with it !!
thanks
yoav
-- Forwarded by Yoav Lehiman/ECI Telecom on 14/07/99 05:01
PM ---
Greg Walker <[EMAIL PROTECTED]> on 14/07/99 04:00
http://rocking.to/Java
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> "Nelson" == Nelson Minar <[EMAIL PROTECTED]> writes:
Nelson> I am still not sure if this is comprehensive. If someone
Nelson> with access to the Blackdown sources would be so kind as
Nelson> to grep through them for calls to getenv(), that would
Nelson> help a lot.
What abo
Hi,
> Generic JDK variables, Java 1.1 and Java 1.2:
..
> JAVA_COMPILER If set to "tya", then "libtya.so" will be used as
> a JIT compiler if it is installed correctly. If
> set to "none", no JIT will be used.
IMHO should one use a _case_ _sensitive
Per request, I've reformatted the list so that there are specific JDK
1.1 and JDK 1.2 sections rather than mixing them together.
I am still not sure if this is comprehensive. If someone with access
to the Blackdown sources would be so kind as to grep through them for
calls to getenv(),
Nelson Minar wrote:
>
> Folks seemed to like my list of JDK environment variables, so here's a
> second pass incorporating all the feedback I got. Steve, are the
> DO_NOT_FREE and associated variables supported in 1.1 native threads?
In some past mail from Kazuki Yasumatsu d
Folks seemed to like my list of JDK environment variables, so here's a
second pass incorporating all the feedback I got. Steve, are the
DO_NOT_FREE and associated variables supported in 1.1 native threads?
--
The followi
Hy.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Anil kumar wrote:
> this is off topic. could you pl. suggest a java mail list where i can
> discuss language-specific issues.
Have you checked out the Java Developer Connection at
developer.javasoft.com? Registration and membership are free, and you
will get an email newsletter every mont
Why not try Sun. The the JDC ( Java Developer Connection ) free
of charge , with mutliple discussion groups and Knowledge base of bugs.
and much more.
http://java.sun.com
Anil kumar wrote:
> greetings,
>
> this is off topic. could you pl. suggest a java mail list where i can
greetings,
this is off topic. could you pl. suggest a java mail list where i can
discuss language-specific issues.
thanks
Anil
Advanced Technology Group, River Valley Technologies
URL http://www.river-valley.com
Date sent: Mon, 15 Mar 1999 11:08:28 -0500
From: Martin Little <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject:Re: Java-Linux mailing list weirdnesses
> Nathan Meyers wrote:
>
> > John Summerfield wrote:
&g
...
> I think there was a misunderstanding about the problem.
>
> The problem isn't bad email addresses in the list, it's about some moron
> who likes to subscribe people who irritate him/her to a bunch of high
> traffic mailing lists like this one.
Thank you
; > I hate that idea. better to set the list up properly so that mailing errors
> > go to the list manager, not to the list or its subscribers.
>
> Help me understand what's so offensive: I join a list, I get one piece
> of mail a few minutes later that I have to reply to, and tha
John Summerfield wrote:
> > Perhaps this would be a good time to add a challenge-response mechanism
> > to the subscription process -- an initial piece of mail requiring the
> > subscriber to confirm the subscription.
>
> I hate that idea. better to set the list up
On Sun, 14 Mar 1999, Nathan Meyers wrote:
> This mailing list appears to be finding its way into a lot of unwelcome
> mailboxes... seems that every time I send something out to java-linux, I
> get a "please stop sending me mail" complaint from someone. My best
> guess
This mailing list appears to be finding its way into a lot of unwelcome
mailboxes... seems that every time I send something out to java-linux, I
get a "please stop sending me mail" complaint from someone. My best
guess is that some prankster somewhere is getting his kicks by h
\I DID NOT SIGN UP TO BE ON THIS LIST. I WOULD APPREICIATE BEING TAKEN OF. I
DO NOT WANT THE EXCESS MAIL. IF THERE WAS A THING ON THE BOTTOM OF THESE
MAILS TELLING ME HOW TO UNSUB I WOULD BUT THERE ISN'T. PLEASE HELP. THANK YO
On Thu, 18 Feb 1999, Nelson Minar wrote:
> This mailing list has troubles, yes. The maintainer (Karl Asha) asked
> here about a month ago if someone else could host it, because he
> didn't have the time or resources to keep it going. Now might be a
> good opportunity for someo
"Brett W. McCoy" wrote:
> This is the bounce message I am continually getting. Is anyone else
> getting this?
>
I also get it whenever I do download my mails (and they contain a message
from the list).
Dimitris
I'm about to ban the IP of that server from my sendmail. It's obviously not
compliant with RFCs, and their admins never answer mail. Maybe if they get
a 550 when trying to deliver a bounce, it will create a mail loop on their
end, hehe :-)
On Thu, Feb 18, 1999 at 01:17:55PM -0500, David Harvill
Get it every single time
-dave
This mailing list has troubles, yes. The maintainer (Karl Asha) asked
here about a month ago if someone else could host it, because he
didn't have the time or resources to keep it going. Now might be a
good opportunity for someone to contact him about rehosting the list.
His email addre
:39 +
From: Mike Davies Mail Admin <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: TFS Delivery Failure: Re: Mailing list trouble
Your message to the following recipients was undeliverable:
[EMAIL PROTECTED]
On Thu, Feb 18, 1999 at 12:20:38PM -0500, Brett W. McCoy wrote:
> On Thu, 18 Feb 1999, John Goerzen wrote:
>
> Every message I've posted to the list this week has resulted in a
> bounced message from a system where the username is no longer valid.
Same here, and I've
o bounces my mail account caused, but in reality, it was
> [EMAIL PROTECTED] My mail server was up the entire time, and my
> mail logs confirm that.
Every message I've posted to the list this week has resulted in a
bounced message from a system where the username is no longer
01:54:21 -0500
To: [EMAIL PROTECTED]
Subject: You have been removed from the list
Your mail address [EMAIL PROTECTED] has been removed
from the [EMAIL PROTECTED] mailinglist.
It generated an excessive amount of bounced mails.
Before sending in a subscription request to
[EMAIL PROTECTED] again, p
John Goerzen wrote:
[Spam, unsubscribe, FAQs]
I think we really need to host this mailing
list somewhere where it will actually be
properly set up and managed. I am prepared
to do this, on a 24/7 connected machine
at the ISP where I work, but since I have had
absolutely no response from the real
GRR...
I'm getting a bit ticked with the endless "unsubscribe" posts to the list,
and the JDK 1.2 questions.
First, why are we not using cookies to confirm subscribe and unsubscribe
requests? Seems like a prudent thing to do.
Secondly, Majordomo has features to identify admin
unsubscribe
At 04:16 PM 2/14/99 EST, [EMAIL PROTECTED] wrote:
>I would like to be taken off your mailing list.
>
>
> I would like to be taken off your mailing list.
I would like to be removed from your mailing list.
I would like to be taken off your mailing list.
$)C
mail :83;Av 86< REMOVE
>
> Carlo E. Prelz @[<:GT:
>
> > Subject: [ATTENTION]: Mailing List Changes
> > Date: Sun, Jan 10, 1999 at 10:31:59AM -0600
> >
> > Quoting Karl Asha ([EMAIL PROTECTED]):
> >
> > > Now
Alex Chaffee wrote:
> Slightly off-topic:
>
> Newsgroups and mailing lists are so similar technically. Hasn't anyone
> written a free, stable two-way bridge between email and nntp? I'd love to
> keep subscribing to the list digest, but be able to use a news reader
On Tue, 12 Jan 1999, Alex Chaffee wrote:
> > > Newsgroups have a different audience and accessing method. I, for one,
> > > would probably stop following this list if it became a newsgroup.
>
> Slightly off-topic:
>
> Newsgroups and mailing lists are so simi
> > or move it to a place willing to host the java-linux and java-linux-digest
> > lists. The world unfortunately isn't a place of free bandwidth forever
> > and I have to make some decisions.
>
> java-linux is not a high-bandwidth mailing-list.
>
> I sugges
-0500, Alex Chaffee wrote:
>> > Newsgroups have a different audience and accessing method. I, for one,
>> > would probably stop following this list if it became a newsgroup.
>
>Slightly off-topic:
>
>Newsgroups and mailing lists are so similar technically. Hasn'
> > Newsgroups have a different audience and accessing method. I, for one,
> > would probably stop following this list if it became a newsgroup.
Slightly off-topic:
Newsgroups and mailing lists are so similar technically. Hasn't anyone
written a free, stable two-way bridge
Armen Yampolsky wrote:
> > Web based is the worst idea. I would much rather the messages continue
>
> > to fall into my mailbox or a newsgroup than I have to load up a
> > browser and go get them. If it moves to a web site, I won't move with
> > it.
>
> I agree absolutely. Slashdot? Reading the
> Web based is the worst idea. I would much rather the messages continue
> to fall into my mailbox or a newsgroup than I have to load up a
> browser and go get them. If it moves to a web site, I won't move with
> it.
I agree absolutely. Slashdot? Reading the posts are a nightmare! It is a
classi
blaise toad wrote:
>
> Like paul proposes, I honestly believe web based threaded discussion
> are the best (a la slashdot).
You obviously have free phone bills or
something (unlike in the UK where you
suck the 'net through a very narrow
straw at very high cost). You can go
to a web discussion if
Is it fairly easy st set up a mailing list then ?
How does one do it in linux - for general use ?
Matt
> Resent-Date: Tue, 12 Jan 1999 10:00:55 -0500
> Date: Tue, 12 Jan 1999 07:10:45 +0800 (WST)
> From: John Summerfield <[EMAIL PROTECTED]>
>
> >
> > I'
On Sun, 10 Jan 1999, Karl Asha wrote:
>
> I'd like to do one of two things with this mailing list, as it's really
> become a significant amount of traffic. Either move it to a newsgroup,
Too open to spamming (we get too much now) and email-address harvesting.
> or move
to be proactive in order to read the list messages.
I 'd rather seeing them coming in my mailbox!
Dimitris
1 - 100 of 153 matches
Mail list logo