Re: Is there still anyone from the blackdown project active on this list ?

2002-07-24 Thread Rob Saul
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

Re: Is there still anyone from the blackdown project active on this list ?

2002-07-24 Thread Vincent Touquet
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 ...

Re: Is there still anyone from the blackdown project active on this list ?

2002-07-24 Thread Calvin Austin
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 ?

2002-07-24 Thread Vincent Touquet
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 ?

Re: Mailing list changes

2002-07-04 Thread Geoff Beaumont
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

on-list virus trouble

2002-07-03 Thread Scott C. Best
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

Mailing list changes

2002-07-03 Thread Karl Asha
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

Re: Slow list

2002-04-05 Thread Walter Logeman
> >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

Re: Slow list

2002-04-04 Thread Drew Lane
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

Re: Slow list

2002-04-04 Thread Pierre Neihouser
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

Slow list

2002-04-04 Thread Jacob Vennervald Madsen
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

OT: Java on Solaris mailing list?

2001-09-27 Thread Jesus M. Salvo Jr.
-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

text of List

2001-08-29 Thread flora yuan
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

Re: How do you get to process list ?(ps auwwx in Java)

2000-11-22 Thread Albrecht Kleine
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

Re: How do you get to process list ?(ps auwwx in Java)

2000-11-21 Thread Juergen Kreileder
>>>>> "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

Re: How do you get to process list ?(ps auwwx in Java)

2000-11-21 Thread Weiqi Gao
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

Re: How do you get to process list ?(ps auwwx in Java)

2000-11-21 Thread Peter Pilgrim
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

Re: How do you get to process list ?(ps auwwx in Java)

2000-11-21 Thread Nathan Meyers
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. &

Re: How do you get to process list ?(ps auwwx in Java)

2000-11-21 Thread Nathan Meyers
/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

Re: How do you get to process list ?(ps auwwx in Java)

2000-11-21 Thread Peter Pilgrim
- 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

Re: How do you get to process list ?(ps auwwx in Java)

2000-11-21 Thread Lopez Jose Ariel
--- > > > 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: >

Re: How do you get to process list ?(ps auwwx in Java)

2000-11-21 Thread nmeyers
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

Re: How do you get to process list ?(ps auwwx in Java)

2000-11-21 Thread Peter Pilgrim
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:

Re: How do you get to process list ?(ps auwwx in Java)

2000-11-21 Thread Lopez Jose Ariel
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? > > -- &

Re: looking for a kernel mailing list

2000-10-27 Thread David Brownell
> 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

Re: looking for a kernel mailing list

2000-10-27 Thread Nathan Meyers
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? >

looking for a kernel mailing list

2000-10-27 Thread Brett Smith
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

Swing mailing list?

2000-10-17 Thread David King
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]

Tell me some excellent mail list about Jbuilder or pure java.

2000-06-21 Thread Boris
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]

searchable list archives?

2000-05-27 Thread Bret Hughes
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]

list of drivers registered with odbc

2000-05-02 Thread Nash'at Ahmad
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

Re: linked list object

2000-04-05 Thread Nathan Meyers
"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

Re: linked list object

2000-04-05 Thread Billy V. Kantartzis
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

Server/List Downtime..

2000-01-19 Thread Karl Asha
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 -

Ken Arnold's posting to the jini-users mailing list

1999-12-09 Thread Chris Kakris
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.

Re: FYI: we're an adminless list?

1999-10-30 Thread karl
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

FYI: we're an adminless list?

1999-10-29 Thread Chris Abbey
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

Re: reminder - this list is for Java & Linux

1999-10-18 Thread Antonio Moretti
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 >

Re: reminder - this list is for Java & Linux

1999-10-15 Thread Matt Welsh
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.

Re: reminder - this list is for Java & Linux

1999-10-15 Thread John Rousseau
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

RE: reminder - this list is for Java & Linux

1999-10-15 Thread Burkhart,Kelly
> -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

Re: reminder - this list is for Java & Linux

1999-10-15 Thread Jacob Nikom
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

Re: reminder - this list is for Java & Linux

1999-10-15 Thread Nicholas Wright
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

reminder - this list is for Java & Linux

1999-10-14 Thread Nelson Minar
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

solaris list

1999-09-22 Thread Yohans Mendoza
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

Re: OT: Mailing list control

1999-09-03 Thread karl
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

RE: OT: Mailing list control

1999-09-02 Thread jerry
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

RE: OT: Mailing list control

1999-09-02 Thread Dimitris Terzis
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

Re: OT: Mailing list control

1999-09-02 Thread Armen Yampolsky
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

Re: OT: Mailing list control

1999-09-02 Thread Thomas M. Sasala
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

Re: OT: Mailing list control

1999-09-01 Thread Nathan Meyers
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

OT: Mailing list control

1999-09-01 Thread Charles Forsythe
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

Re: out of list question

1999-08-26 Thread Tom Jenkins
> 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

out of list question

1999-08-25 Thread R MUTHUSWAMY
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"

Testing the list, please ignore.

1999-08-12 Thread Karl Asha
Test. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

ouf mail list

1999-07-14 Thread Yoav . Lehiman
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

Updated Java books list

1999-07-02 Thread mjmp
http://rocking.to/Java -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: environment variable list, take 3

1999-06-09 Thread Ulli Kortenkamp
> "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

Re: environment variable list, take 3

1999-06-08 Thread Albrecht Kleine
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

environment variable list, take 3

1999-06-07 Thread Nelson Minar
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(),

Re: New list of Blackdown JDK environment variables

1999-06-01 Thread Nathan Meyers
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

New list of Blackdown JDK environment variables

1999-06-01 Thread Nelson Minar
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

Does anybody know a mailing list just for JAVA and databases, withoutLinux?

1999-03-30 Thread Ferenczi Gyorgy Laszlo
Hy. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: OT. java list

1999-03-22 Thread Jeff Galyan
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

Re: OT. java list

1999-03-22 Thread Christopher Hinds
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

OT. java list

1999-03-21 Thread Anil kumar
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

Re: Java-Linux mailing list weirdnesses

1999-03-15 Thread Thorsten Gebuhr
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

Re: Java-Linux mailing list weirdnesses

1999-03-15 Thread Nathan Meyers
... > 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

Re: Java-Linux mailing list weirdnesses

1999-03-15 Thread Martin Little
; > 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

Re: Java-Linux mailing list weirdnesses

1999-03-15 Thread Nathan Meyers
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

Re: Java-Linux mailing list weirdnesses

1999-03-15 Thread John Summerfield
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

Java-Linux mailing list weirdnesses

1999-03-14 Thread Nathan Meyers
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

GET ME OFF THIS LIST ATTN:LIST ADMIN

1999-03-05 Thread BelaCecile
\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

Re: Mailing list trouble

1999-02-20 Thread John Summerfield
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

Re: TFS Delivery Failure: Re: Mailing list trouble (fwd)

1999-02-19 Thread Dimitris Vyzovitis
"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

Re: TFS Delivery Failure: Re: Mailing list trouble (fwd)

1999-02-18 Thread John Goerzen
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

Re: TFS Delivery Failure: Re: Mailing list trouble (fwd)

1999-02-18 Thread David Harvill
Get it every single time -dave

Re: Mailing list trouble

1999-02-18 Thread Nelson Minar
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

TFS Delivery Failure: Re: Mailing list trouble (fwd)

1999-02-18 Thread Brett W. McCoy
: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]

Re: Mailing list trouble

1999-02-18 Thread John Goerzen
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

Re: Mailing list trouble

1999-02-18 Thread Brett W. McCoy
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

Mailing list trouble

1999-02-18 Thread John Goerzen
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

Re: FAQs and mailing list

1999-02-16 Thread Richard Jones
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

FAQs and mailing list

1999-02-16 Thread John Goerzen
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

Re: Mailing List

1999-02-16 Thread Wheeler House
unsubscribe At 04:16 PM 2/14/99 EST, [EMAIL PROTECTED] wrote: >I would like to be taken off your mailing list. > >

Re: Mailing List

1999-02-14 Thread JONATHAN HEMINGWAY
> I would like to be taken off your mailing list.

Mailing List

1999-02-14 Thread Jazzmother
I would like to be removed from your mailing list.

Mailing List

1999-02-14 Thread Jazzmother
I would like to be taken off your mailing list.

Re: [ATTENTION]: Mailing List Changes

1999-01-14 Thread chang hun Park
$)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

Re: [ATTENTION]: Mailing List Changes

1999-01-13 Thread Richard Jones
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

RE: [ATTENTION]: Mailing List Changes

1999-01-13 Thread John Summerfield
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

Re: [ATTENTION]: Mailing List Changes

1999-01-12 Thread SHUDO Kazuyuki
> > 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

RE: [ATTENTION]: Mailing List Changes

1999-01-12 Thread Robert McConnell
-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'

RE: [ATTENTION]: Mailing List Changes

1999-01-12 Thread Alex Chaffee
> > 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

Re: Yeah! Web based threaded messaging is best (WAS: Re:[ATTENTION]:Mailing List Changes)

1999-01-12 Thread Martin Little
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

Re: Yeah! Web based threaded messaging is best (WAS: Re:[ATTENTION]: Mailing List Changes)

1999-01-12 Thread Armen Yampolsky
> 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

Re: Yeah! Web based threaded messaging is best (WAS: Re: [ATTENTION]: Mailing List Changes

1999-01-12 Thread Richard Jones
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

Re: [ATTENTION]: Mailing List Changes

1999-01-12 Thread Matt Zagni
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'

Re: [ATTENTION]: Mailing List Changes

1999-01-12 Thread John Summerfield
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

Re: Yeah! Web based threaded messaging is best (WAS: Re:[ATTENTION]: Mailing List Changes

1999-01-12 Thread Dimitris Vyzovitis
to be proactive in order to read the list messages. I 'd rather seeing them coming in my mailbox! Dimitris

  1   2   >