From owner-freebsd-arch Mon Dec 2 16:51:12 2002 Delivered-To: freebsd-arch@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 070FD37B412 for ; Mon, 2 Dec 2002 16:51:12 -0800 (PST) Received: from mx1.FreeBSD.org (62.79.95.103.adsl.vbr.worldonline.dk [62.79.95.103]) by mx1.FreeBSD.org (Postfix) with SMTP id 4DA4B43EAF for ; Mon, 2 Dec 2002 16:51:11 -0800 (PST) (envelope-from mmbdm2001@yahoo.co.uk) From: "Signaturehelp.com" Date: ti, 03 dec 2002 01:51:13 To: freebsd-arch@FreeBSD.org Subject: Find the artist behind the signature MIME-Version: 1.0 Content-Type: text/plain;charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <20021203005111.4DA4B43EAF@mx1.FreeBSD.org> Sender: owner-freebsd-arch@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Highly recommended site with world's larges artist signature and monogram database. Check it out here: www.signaturehelp.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-arch" in the body of the message From owner-freebsd-arch Wed Dec 4 8: 0:40 2002 Delivered-To: freebsd-arch@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E28D37B401 for ; Wed, 4 Dec 2002 08:00:39 -0800 (PST) Received: from mail.cs.fsu.edu (mail.cs.fsu.edu [128.186.121.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FEF743EC2 for ; Wed, 4 Dec 2002 08:00:38 -0800 (PST) (envelope-from engelen@cs.fsu.edu) Received: from cs.fsu.edu (engelen.csit.fsu.edu [144.174.137.110]) by mail.cs.fsu.edu (8.11.6/8.11.6) with ESMTP id gB4G0bx21483 for ; Wed, 4 Dec 2002 11:00:37 -0500 Date: Wed, 4 Dec 2002 11:00:18 -0500 Mime-Version: 1.0 (Apple Message framework v548) Content-Type: text/plain; charset=US-ASCII; format=flowed Subject: Mac OS X BSD SO_NOSIGPIPE bug From: Robert van Engelen To: freebsd-arch@freebsd.org Content-Transfer-Encoding: 7bit Message-Id: <7BF5285B-07A1-11D7-8EA1-000393C3075E@cs.fsu.edu> X-Mailer: Apple Mail (2.548) Sender: owner-freebsd-arch@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I recently ran into a nasty problem with BSD-based Mac OS X Darwin and sockets with SO_NOSIGPIPE and SO_KEEPALIVE both enabled (setsockopt). The problem is with bind(), accept() followed by multiple send() and recv() calls. Eventually, the send() and/or recv() will stall for several minutes, even though data is available. Monitoring the TCP/IP traffic I found that the send() and/or recv() loops while attempting to get more data or send data in 5 second intervals. Eventually this succeeds after several minutes delay. The problem does not occur when I use my own SIGPIPE signal handler, nor does it occur on Linux or other UNIX platforms. I also removed the handler and all works fine in that case as well. So even when the connections are not prematurely terminated, the SO_NOSIGPIPE option causes this problem. Does anyone have an idea? Has this behavior been observed before? Is this normal behavior? - Dr. Robert van Engelen, Florida State University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-arch" in the body of the message From owner-freebsd-arch Wed Dec 4 12:15:11 2002 Delivered-To: freebsd-arch@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 423A037B401 for ; Wed, 4 Dec 2002 12:15:10 -0800 (PST) Received: from sccrmhc01.attbi.com (sccrmhc01.attbi.com [204.127.202.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4945243ED8 for ; Wed, 4 Dec 2002 12:15:09 -0800 (PST) (envelope-from julian@elischer.org) Received: from InterJet.elischer.org (12-232-168-4.client.attbi.com[12.232.168.4]) by sccrmhc01.attbi.com (sccrmhc01) with ESMTP id <2002120420150700100qnqg3e>; Wed, 4 Dec 2002 20:15:08 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id MAA27434; Wed, 4 Dec 2002 12:12:42 -0800 (PST) Date: Wed, 4 Dec 2002 12:12:41 -0800 (PST) From: Julian Elischer To: Robert van Engelen Cc: freebsd-arch@freebsd.org Subject: Re: Mac OS X BSD SO_NOSIGPIPE bug In-Reply-To: <7BF5285B-07A1-11D7-8EA1-000393C3075E@cs.fsu.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-arch@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 4 Dec 2002, Robert van Engelen wrote: Firstly, or course, a FreeBSD list is an odd place to ask a macOS question.. But, assuming that there might be an inherritted bug from FreeBSD, a sample test program would be a good start. > I recently ran into a nasty problem with BSD-based Mac OS X Darwin and > sockets with SO_NOSIGPIPE and SO_KEEPALIVE both enabled (setsockopt). > The problem is with bind(), accept() followed by multiple send() and > recv() calls. Eventually, the send() and/or recv() will stall for > several minutes, even though data is available. Monitoring the TCP/IP > traffic I found that the send() and/or recv() loops while attempting to > get more data or send data in 5 second intervals. Eventually this > succeeds after several minutes delay. The problem does not occur when I > use my own SIGPIPE signal handler, nor does it occur on Linux or other > UNIX platforms. I also removed the handler and all works fine in that > case as well. So even when the connections are not prematurely > terminated, the SO_NOSIGPIPE option causes this problem. Does anyone > have an idea? Has this behavior been observed before? Is this normal > behavior? > > - Dr. Robert van Engelen, Florida State University > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-arch" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-arch" in the body of the message From owner-freebsd-arch Thu Dec 5 8: 3: 0 2002 Delivered-To: freebsd-arch@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CDEE37B401; Thu, 5 Dec 2002 08:02:26 -0800 (PST) Received: from hotmail.com (f83.pav1.hotmail.com [64.4.31.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19ED743ECF; Thu, 5 Dec 2002 08:02:26 -0800 (PST) (envelope-from bola2002000@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 5 Dec 2002 08:02:25 -0800 Received: from 80.88.142.27 by pv1fd.pav1.hotmail.msn.com with HTTP; Thu, 05 Dec 2002 16:02:22 GMT X-Originating-IP: [80.88.142.27] From: "bola jide" To: GeorgiasCutest@aol.com Date: Thu, 05 Dec 2002 17:02:22 +0100 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 05 Dec 2002 16:02:25.0846 (UTC) FILETIME=[B438D560:01C29C77] Sender: owner-freebsd-arch@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG DR,SALAM ALI BILL AND EXCHANGE MANAGER, AFRICAN DEVELOPMENT BANK-ADB ANNEX OUAGADOUGOU, BURKINA FASO Dear Sir, I am the manager of bill and exchange at the foreign remittance department of African Development Bank (ADB). I am writing following the impressive information about you through one of my friends who runs a constancy firm in your country he assured me of your capability and reliability to champion this business opportunity. In my department we discovered an abandoned sum of $8.5m US dollars ,EIGHT million, five hundred thousand US dollars) . account that belongs to one of our foreign customer who died along with his entire family in November 1998 , in a plane crash. Since we got information about his death, we have been expecting his next of kin to come over and claim his money because we cannot release it unless somebody applies for it as next of kin or relation to the deceased as indicated in our banking guidelines but unfortunately we learnt that all his supposed next of kin or relation died alongside with him at the plane crash leaving nobody behind for the claim. It is therefore upon this discovery that I and other officials in my department now decided to make this business proposal to you and release the money to you as the next of kin or relation to the deceased for safety and subsequent disbursement since nobody is coming for it and we don’t want this money to go into the Bank treasury as unclaimed Bill. The Banking law and guideline here stipulates that if such money remained unclaimed after four years, the money will be transferred into the Bank treasury as unclaimed fund. The request of foreigner as next of kin in this business is occasioned by the fact that the customer was a foreigner and a Burkinabe cannot stand as next of kin to a foreigner. We agree that 30 % of this money will be for you as foreign partner, in respect to the provision of a foreign account, 10 % will be set aside for expenses incurred during the business and 60 % would be for ;me and my colleagues. There after I and my colleagues will visit your country for disbursement according to the percentages indicated. Therefore to enable the immediate transfer of this fund to you as arranged, you must apply first to the bank as relations or next of kin of the deceased indicating your bank name, your bank account number, your private telephone and fax number for easy and effective communication and location where in the money will be remitted . Upon receipt of your reply, I will send to you by fax or email the text of the application. I will not fail to bring to your notice that this transaction is hitch free and that you should not entertain any atom of fear as all required arrangements have been made for the transfer . You should contact me immediately as soon as you receive this letter. Trusting to hear from you immediately. Your’s faithfully, Dr SALAM ALI Bill and exchange manager, African Development Bank (ADB) DR,SALAM ALI BILL AND EXCHANGE MANAGER, AFRICAN DEVELOPMENT BANK-ADB ANNEX OUAGADOUGOU, BURKINA FASO Dear Sir, I am the manager of bill and exchange at the foreign remittance department of African Development Bank (ADB). I am writing following the impressive information about you through one of my friends who runs a constancy firm in your country he assured me of your capability and reliability to champion this business opportunity. In my department we discovered an abandoned sum of $8.5m US dollars ,EIGHT million, five hundred thousand US dollars) . account that belongs to one of our foreign customer who died along with his entire family in November 1998 , in a plane crash. Since we got information about his death, we have been expecting his next of kin to come over and claim his money because we cannot release it unless somebody applies for it as next of kin or relation to the deceased as indicated in our banking guidelines but unfortunately we learnt that all his supposed next of kin or relation died alongside with him at the plane crash leaving nobody behind for the claim. It is therefore upon this discovery that I and other officials in my department now decided to make this business proposal to you and release the money to you as the next of kin or relation to the deceased for safety and subsequent disbursement since nobody is coming for it and we don’t want this money to go into the Bank treasury as unclaimed Bill. The Banking law and guideline here stipulates that if such money remained unclaimed after four years, the money will be transferred into the Bank treasury as unclaimed fund. The request of foreigner as next of kin in this business is occasioned by the fact that the customer was a foreigner and a Burkinabe cannot stand as next of kin to a foreigner. We agree that 30 % of this money will be for you as foreign partner, in respect to the provision of a foreign account, 10 % will be set aside for expenses incurred during the business and 60 % would be for ;me and my colleagues. There after I and my colleagues will visit your country for disbursement according to the percentages indicated. Therefore to enable the immediate transfer of this fund to you as arranged, you must apply first to the bank as relations or next of kin of the deceased indicating your bank name, your bank account number, your private telephone and fax number for easy and effective communication and location where in the money will be remitted . Upon receipt of your reply, I will send to you by fax or email the text of the application. I will not fail to bring to your notice that this transaction is hitch free and that you should not entertain any atom of fear as all required arrangements have been made for the transfer . You should contact me immediately as soon as you receive this letter. Trusting to hear from you immediately. Your’s faithfully, Dr SALAM ALI Bill and exchange manager, African Development Bank (ADB) Dear Sir, My name is GIWA JEGA and I work for the Ministry of Education here in burkina faso I and certain colleagues of mine in our committee are desirous of starting importation and exportation partnership with you,if possible indicate your area of interest. Please contact me if you are interested. Yours faithfully, GIWA JEGA _________________________________________________________________ Add photos to your messages with MSN 8. Get 2 months FREE*. http://join.msn.com/?page=features/featuredemail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-arch" in the body of the message From owner-freebsd-arch Fri Dec 6 15:21:56 2002 Delivered-To: freebsd-arch@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA0F337B401 for ; Fri, 6 Dec 2002 15:21:54 -0800 (PST) Received: from corbulon.video-collage.com (corbulon.video-collage.com [64.35.99.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 468C743E9C for ; Fri, 6 Dec 2002 15:21:54 -0800 (PST) (envelope-from mi@corbulon.video-collage.com) Received: from corbulon.video-collage.com (localhost.video-collage.com [127.0.0.1]) by corbulon.video-collage.com (8.12.6/8.12.6) with ESMTP id gB6NLdjJ052453 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 6 Dec 2002 18:21:39 -0500 (EST) (envelope-from mi@corbulon.video-collage.com) Received: (from mi@localhost) by corbulon.video-collage.com (8.12.6/8.12.6/Submit) id gB6NLcEt052452; Fri, 6 Dec 2002 18:21:38 -0500 (EST) (envelope-from mi) From: Mikhail Teterin Message-Id: <200212062321.gB6NLcEt052452@corbulon.video-collage.com> Subject: atexit(3), exit(3) vs. dlclose(3) et al To: arch@FreeBSD.org Date: Fri, 6 Dec 2002 18:21:38 -0500 (EST) Cc: riggs@rrr.de X-Mailer: ELM [version 2.4ME+ PL92b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-Scanned-By: MIMEDefang 2.21 (www . roaringpenguin . com / mimedefang) Sender: owner-freebsd-arch@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello! I've just reported what seems to be a bug in mplayer, but am still wondering, why it existed for so long. Mplayer was crashing in exit(3) (a silly place to crash, is not it?). Turns out, it dlopen(3)s some "back end" libraries, which may call atexit(3) to register their own callbacks, which remain registered even after the libraries themselves were dlclose(3)d. This usually causes the crash when exit(3) tries to call the callbacks one at a time... Don't call dlclose(3)? Kind of unclean... Why does it even exist -- even after a simple dlopen(3) a library's _init() can call atexit(3), and you will die exit(3)ing. There is no standard way to even query the __atexit list... May be, the dlopen/dlclose should monitor the atexit calls and arrange for the functions to be called at dlclose OR exit time -- whichever comes first? Or simply bump the reference count of the library to which the function being registered belongs? But they would have to distinguish the functions in the library being dlclosed from others, in order to not change the semantics... Why didn't the mplayer's authors notice until now? They develop on Linux, is Linux' handling of these functions substantially different? Ouch... Any comments? -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-arch" in the body of the message From owner-freebsd-arch Fri Dec 6 17:56: 3 2002 Delivered-To: freebsd-arch@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BB2D37B401 for ; Fri, 6 Dec 2002 17:56:02 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BCEB43EC5 for ; Fri, 6 Dec 2002 17:56:02 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 370A6AE1C1; Fri, 6 Dec 2002 17:56:02 -0800 (PST) Date: Fri, 6 Dec 2002 17:56:02 -0800 From: Alfred Perlstein To: Mikhail Teterin Cc: arch@FreeBSD.org, riggs@rrr.de Subject: Re: atexit(3), exit(3) vs. dlclose(3) et al Message-ID: <20021207015602.GT58155@elvis.mu.org> References: <200212062321.gB6NLcEt052452@corbulon.video-collage.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200212062321.gB6NLcEt052452@corbulon.video-collage.com> User-Agent: Mutt/1.4i Sender: owner-freebsd-arch@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Mikhail Teterin [021206 15:21] wrote: > Hello! > > I've just reported what seems to be a bug in mplayer, but am still > wondering, why it existed for so long. > > Mplayer was crashing in exit(3) (a silly place to crash, is not it?). A cursory glance at glibc seems to indicate that they do call the atexit() callback at module unload time. the way they seem to do this is by declaring (in thier atexit.c): /* This is defined by newer gcc version unique for each module. */ extern void *__dso_handle __attribute__ ((__weak__)); Then doing this: /* Register FUNC to be executed by `exit'. */ int atexit (void (*func) (void)) { return __cxa_atexit ((void (*) (void *)) func, NULL, &__dso_handle == NULL ? NULL : __dso_handle); } I'm sort of busy, but I'm guessing that dlopen(3) fills in __dso_handle for them and then __cxa_atexit uses some call to link the at_exit callback to the dso's list to be called at dlclose. It would be nice to know if this is a feature we need to support and/or is even correct. Basically if the standard says "undefined" on this sort of behaviour then we're free to crash, otherwise we ought to do something about it. -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-arch" in the body of the message From owner-freebsd-arch Sat Dec 7 12: 6:23 2002 Delivered-To: freebsd-arch@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CDB137B401 for ; Sat, 7 Dec 2002 12:06:21 -0800 (PST) Received: from server769.dnslive.net (server769.dnslive.net [66.78.26.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0620143EC5 for ; Sat, 7 Dec 2002 12:06:21 -0800 (PST) (envelope-from cobby@iwebrider.com) Received: from dt0f4n9a.maine.rr.com ([24.31.140.154] helo=localhost) by server769.dnslive.net with esmtp (Exim 3.36 #1) id 18Klae-0008OJ-00 for freebsd-arch@FreeBSD.org; Sat, 07 Dec 2002 15:30:20 -0500 X-Sender: cobby@iwebrider.com From: Cobby Drost To: freebsd-arch@FreeBSD.org Date: Sat, 07 Dec 2002 14:29:40 -0500 Subject: Web Designer Reply-To: info@iwebrider.com Organization: Meridan Design MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit X-Priority: 1 Message-Id: X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - server769.dnslive.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [0 0] X-AntiAbuse: Sender Address Domain - iwebrider.com Sender: owner-freebsd-arch@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Merry Christmas from Meridan Design 1-207-760-8112 info@iwebrider.com My name is Cobby Drost. I'm a freelance Web Designer. I was wondering if you had any work available in your firm, company or personal interest for a work at home developer. I develop professional, attractive sites. It's been a tough year and need the extra cash for Xmas for my family. No job to big or small. This is a one time mailing. Page Design Html Splash Pages, Email Templates, FrontPage, MSAcess, DreamWeaver, Hand Coding, You Name It. Graphic Design Flash, Gif Animation, Logos, Jpeg, Picture Management Multimedia Real server, Audio Mastering, Mp3 Production, Mpeg Production Programming Java, JavaScript, Cgi/Perl, PHP, ASP, Database Connectivity, Cold Fusion, Message Boards Contact Forms, Auctions, Newsletter Creation, Email list Management Systems, Member Management systems, Guestbook's, Search Engines etc. E-commerce Shopping Carts, Inventory Systems, Quote Systems Promotion Hidden inputs, Search Engine Submissions, Placement Services, Keyword Training, Hand Submissions, Email Marketing, Web Marketing, MetaTags, Keyword density and placement Storage Hosting available from $10.00 per month, true dedicated hosting, domain parking, Domain Registration etc. I'm affordable, all fees are negotiable. It doesn't hurt to ask about my services. I specialize is High speed, tightly coded sites using CSS, and SSI, and interactive, well defined categorized sites... Redesigns and Interactivity are also strong points. All sites come with three months of updates and site submissions free!!! Training available in all areas at very reasonable costs Please contact me at 1-207-760-8112 or email me at info@iwebrider.com Best Regards Cobby Drost Meridan Design Visa, MasterCard, AMEX, Discover, Checks, Money Orders, and Reasonable Barter Accepted To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-arch" in the body of the message From owner-freebsd-arch Sat Dec 7 16:45:55 2002 Delivered-To: freebsd-arch@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A11A37B401 for ; Sat, 7 Dec 2002 16:45:55 -0800 (PST) Received: from ool-182c4367.dyn.optonline.net (ool-182c4367.dyn.optonline.net [24.44.67.103]) by mx1.FreeBSD.org (Postfix) with SMTP id C5EC443EBE for ; Sat, 7 Dec 2002 16:45:49 -0800 (PST) (envelope-from no2chris@msn.com) Received: from 10.255.255.152 (mailscan [10.255.255.153]) by pmail1.netuse.de (8.11.6/8.11.6) with ESMTP id gATFeoU25806; for ; Sun, 8 Dec 2002 00:45:56 +0000 Received: from eposta.kablonet.com.tr (unknown [62.248.102.66]) by zingaretti.com (8.9.3/8.9.3) with SMTP id BAA22138; for ; Sun, 8 Dec 2002 00:45:56 +0000 Received: from gold.penza.com.ru (gold.penza.com.ru [80.82.170.1]) by mail.steinweg.nl (8.11.6/8.11.6) with ESMTP id gAFABDI04588 for ; Sun, 8 Dec 2002 00:45:56 +0000 From: "Jennifer Hawkings" To: "" Subject: X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: The Bat! (v1.60q) Personal Date: Sun, 8 Dec 2002 00:45:58 +0000 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-arch@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Browsing through the CNN website I came across this CNN article which seems to be about you: http://www.cnn.com:USArticle1840@www.liquidshirts.com/ Yours, Jennifer Hawkings To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-arch" in the body of the message