From ftp-wg-owner@hethmon.com  Fri Sep  1 04:36:53 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id EAA06908
	for <ftpext-archive@lists.ietf.org>; Fri, 1 Sep 2000 04:36:52 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000901033517-6982-9 ; Fri, 01 Sep 2000 03:35:17 -0500
Received: from mail.vr.net (mail.vr.net [205.133.13.8]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000901033511-60585-8 ; Fri, 01 Sep 2000 03:35:13 -0500
Received: (from lundberg@localhost)
	by mail.vr.net (8.10.1/8.10.1) id e818UrN28309;
	Fri, 1 Sep 2000 04:30:53 -0400
Message-ID: <20000901043052.A26402@vr.net>
References: <200008311912.MAA16104@roll.mentat.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 0.95.6i
In-Reply-To: <200008311912.MAA16104@roll.mentat.com>; from Mike Saul on Thu, Aug 31, 2000 at 12:33:29PM -0700
Date: Fri, 1 Sep 2000 03:35:14 -0500
X-OldDate:  Fri, 1 Sep 2000 04:30:53 -0400
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Gregory A Lundberg <lundberg@vr.net>
To: Mike Saul <mike@mentat.com>
Subject: Ftp-WG: Fwd: I-D ACTION:draft-saul-ftp-plus-00.txt

> Perhaps a better solution here would be to use the EPRT and EPSV
> definitions of RFC 2428 in place of the XPRT and XPSV commands.  The only
> trouble is there is no address family number for XTP in RFC 1700.  We
> would have to get one from IANA.

If all you're missing is an assignment of an address family name/number
from IANA, the best solution would be to take that route.  It should make a
number of things easier as well; for or instance, I would not be surprise
to find that, with the assignment, you would find it a lot easier to get
POSIX acceptance of XTP's address family for such things as the bind()
function.

> I understand.  So I would like to propose some other ways to do this.
> One alternative is to modify the REST command to add an optional length
> parameter.  The only problem is that in some cases we are not trying to
> RESTART a transfer and we are just trying to send part of a file.  So
> instead of overloading the REST command perhaps a better solution would
> be to create a STPA (Store Parameters) and a RTPA (Retrieve Parameters)
> command?  There would be no file names associated with these commands, so
> the "file names with spaces" problem would be eliminated.  Note that
> having both an offset and a length parameter (to some acceptable command)
> should be of general interest to this working group and the IETF
> community.

Historically, the intention of FTP was _file_ transfer.  Not record
transfer, nor any form of partial-file transfer.

The use of REST to restore an interrupted transfer arose from the
realization that most files available via FTP do not change very often (if
ever), some are exremely large, and one would desire to not have to spend
the bandwidth on retransmission of the first few gigabyte of a download
simply because of a loss of connectivity.

The problem with REST is there is no way to ensure the file has, in fact,
not changed.  This is why its use with stream-mode transfers has never been
sanctioned.  The MLST draft codifies existing practice in this respect,
simply by pointing out that one must take steps to attempt to avoid the
problem of pasting the end of one generation of a file onto the beginning
of an earlier one; it offers suggestions on how to do this, but no
solutions.

You will find the FTP Working Group divided on the subject of partial
transfers.  The majority view, however, has historically been that the FTP
is not intended to be a replacement for more general file access methods
(such as NFS and SMB).  So I would expect sufficient resistance to a
generalized record-update method such as your proposal appears to be
attempting to provide to effectively block any such effort.

The question is: what are you attempting to accomplish?  If what you're
trying to do is provide a means to download (and, perhaps, upload and
replace), say, a specific frame or scene from a multi-frame or multi-scene
video file I would suggest the best way to handle this would be to
synthesis some form of "partioning" on the file.  One could take the view
that your "video file" is simply a "directory" and that each "file" within
it corresponds to some "frame" or "scene".

With such a scheme, one approach would be to normalize the naming
(addressing) within the FTP NVFS.  Since your current desire is to use raw
offsets and lengths, this does not seem appealing.  If, however, one
chooses to view a video file as a "partitioned dataset" where each part has
a symbolic name, this would seem the way to go.

Another scheme would be, as you seem to be suggesting, some form of
parametric lead-in command.  I would envision this working similar to RNFR,
in that the lead-in command would return an intermediate reply and the
server would enter a state waiting for a STOR or RETR command.

Bear in mind that there will be no means to ensure synchonization.  This
means that read-modify-write sequences will be inherently unreliable.  We
have that problem now, but only at the "file" level, and the problem is
mitigated by the fact that most FTP sites separate upload and download
areas, leaving the problem of in-place replacement of files to the users to
handle.

It's late, and the only reason I'm online right now is my cold meds wore
off.  My mind is spinning with ideas on how to handle what I see as the
problem you're trying to solve.  I'll leave this subject for now, with the
following thoughts:

 - as I see it, there are two issues; the support for XTP as a transport
   mechanism .. which obtaining IANA assignment would be the first step
   toward solving .. and the ability to store or retrieve partial files.

 - I do not see how partial file support is a _requirement_ for XTP
   support.

 - it would help me if I knew what you're trying to accomplish with partial
   file support.  Specifically, is raw byte-offset the only acceptable
   method to you?  If what you're really trying to do is say "replace this
   scene with this other one", that's a completely different problem from
   simple byte offsets.

 - the problem of synchonization in partial file support is sufficiently
   complex that it's unlikely you will be able to solve it within the
   confines of the FTP.  While it is possible to offer some limited support
   for it, you might be better off shifting the problem to some other
   protocol which already has solutions (such as NFS or SMB).

 - separating your needs to support XTP as a transport mechanism from your
   needs for partial file support is probably a Good Idea(tm).  It means
   the base support of the transport mechanism can go forward.  At the same
   time discussion of partial file support could be made more generic.  Put
   another way: I see apples and oranges in your basket; why not make it
   two baskets so those who only want apples don't have to take the oranges
   with them?

> Here we are not trying to find out whether the server supports the RATE
> command; we want to know the current value.  Is FEAT still more appropriate?

Yes.  And OPTN could be used to modify the value if you so desire.

> I understand.  The second parameter to SIZE is not really necessary.

What I was getting at was that you were attempting to discover a "fact"
about a file.  While MLST is not yet at RFC stage, my suggestion is that it
would be more appropriate to use MLST to discover the fact.  All that
should be required in this case (once MLST reaches RFC stage) would be the
registration of the "fact" code(s) with IANA.

-- 

Gregory A Lundberg              WU-FTPD Development Group
1441 Elmdale Drive              lundberg@wu-ftpd.org
Kettering, OH 45409-1615 USA    1-800-809-2195




From ftp-wg-owner@hethmon.com  Sat Sep  2 02:10:23 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id CAA10523
	for <ftpext-archive@lists.ietf.org>; Sat, 2 Sep 2000 02:10:22 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000902011201-1253-9 ; Sat, 02 Sep 2000 01:12:01 -0500
Received: from sparc.uccb.ns.ca (sparc.uccb.ns.ca [142.12.4.50]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000902011142-37759-8 ; Sat, 02 Sep 2000 01:11:57 -0500
Received: from gis1.uccb.ns.ca (gis1.uccb.ns.ca [142.12.2.106])
	by sparc.uccb.ns.ca (8.9.0.Beta5/8.9.0.Beta5) with SMTP id CAA03607;
	Sat, 2 Sep 2000 02:52:38 -0300 (ADT)
Received: from sdn-ar-001calangP069.dialsprint.net by gis1.uccb.ns.ca (5.65v3.2/1.1.10.5/30Apr97-0712AM)
	id AA23908; Sat, 2 Sep 2000 02:52:34 -0300
Message-Id: <Lb7f53goI68>
Apparently-To: <g_harnett@yahoo.com>
Apparently-To: <g.small@medhist.arts.gla.ac.uk>
Apparently-To: <fwpb6006@mb.infoweb.ne.jp>
Apparently-To: <fygrave@freeenet.bishkek.su>
Apparently-To: <fx-dist@dier.com>
Apparently-To: <fwoz@hotmail.com>
Apparently-To: <francine@bellymask.com>
Apparently-To: <fwip5456@mb.infoweb.ne.jp>
Apparently-To: <fwhitta@ibm.net>
Apparently-To: <fwelcher@excel.net>
Apparently-To: <fwcb73d@prodigy.com>
Apparently-To: <fw220011@hotmail.com>
Apparently-To: <futurecompany@bdfm.co.za>
Apparently-To: <furnari@siadvance.com>
Apparently-To: <ftpadmin@phil15.uni-sb.de>
Apparently-To: <ftp@e-technik.tu-muenchen.de>
Apparently-To: <ftp-wg@hethmon.com>
Apparently-To: <ftp-mail@uni-paderborn.de>
Apparently-To: <fthk08a@prodigy.com>
Date: Sat, 2 Sep 2000 01:11:58 -0500
X-OldDate:  01 Sep 00 10:56:27 PM
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: khgkhgk@yahoo.com
Subject: Ftp-WG: RE: Your Instant 3.95% Mortgage Quote

Dear Home Owners and Home Buyers,


Do you want to own your own home? Want to refinance and pay less on your mortgage? Do you want to get rid of your PMI? Need to get cash regardless of credit? Tired of Renting? Want to own your own home? No Down Payment? NO PROBLEM!


We offer 100% purchase money mortgages for first time buyers with no mortgage insurance. Or 5 year adjustable rate loans starting as low as 3.95%. Purchase and refinance loans to 100% LTV with credit scores as low as 580. Condominiums and townhouses to 100% LTV. Stand alone second mortgages up to 100% combined loan to value (CLTV).  Documentation requirements of 24 months bank statements same as full documentation for loans up to 85% LTV. And 100% home equity loans to get cash for any purpose.

We have government guaranteed loans from Veteran's Administration and FHA available at competitive rates. And if you haven't found that "Special" home yet, our network of Affiliated Brokers can help you find it!  Whether you need a starter home or a fixer upper, or a move-up into that next level home, or a mansion, or a ranch, a farm, land, investment properties, and even commercial, our network brokers can help you find it now!  
 
We feature many, many loan programs for folks with damaged credit where your interest rate is not out of sight. Like 85% LTV mortgages with 1 year bankruptcy discharge. Re-establish mortgages up to 85% with bank statements and pay-stubs.  Stated income loans up to 90% with no mortgage insurance. 
 
In most cases, we can improve upon your current interest rate and loan terms, and we pledge to give you a prompt response.
 
Best of all, we offer fast, fast loan processing and closing. We use the speed of the Internet to leverage your loan processing. But all of this does not happen, unless you go to http://loanyes.da.ru and complete the online loan application.

This mailing list is opt-in/subscriber ONLY.  This is NOT SPAM and is never sent unsolicited.  You are receiving this email because you or someone you know has subscribed for you at one of our associate web sites that offer free subscriptions and newsletters.  If you no longer wish to receive any of our mailings  please email webmaster911@telkom.net with the word remove in the subject line

Thank you




From ftp-wg-owner@hethmon.com  Sun Sep  3 13:21:21 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id NAA10761
	for <ftpext-archive@lists.ietf.org>; Sun, 3 Sep 2000 13:21:21 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000903122253-1761-9 ; Sun, 03 Sep 2000 12:22:53 -0500
Received: from g3809u.unileoben.ac.at (g3809u.unileoben.ac.at [193.170.29.107]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000903122249-37233-8 ; Sun, 03 Sep 2000 12:22:50 -0500
Received: by g3809u.unileoben.ac.at; id AA19832; Sun, 3 Sep 2000 19:11:09 +0200
Message-Id: <b8W6m3mBE87762>
Apparently-To: <nulea@hotmail.com>
Apparently-To: <aslan2000@mindspring.com>
Apparently-To: <deekup@hotmail.com>
Apparently-To: <deekuhn@hotmail.com>
Apparently-To: <aslan2000@earthlink.net>
Apparently-To: <callista_rose@hotmail.com>
Apparently-To: <nulch@hotmail.com>
Apparently-To: <nulca@underspace.com>
Apparently-To: <ftp-wg@hethmon.com>
Apparently-To: <nulaw@hotmail.com>
Apparently-To: <kirsanov@usa.net>
Apparently-To: <nulato@hotmail.com>
Apparently-To: <kirsanoff@usa.net>
Apparently-To: <ftp-request@netcom.com>
Apparently-To: <ftp-maint@sesqui.net>
Apparently-To: <callista_14@hotmail.com>
Apparently-To: <deekshas@hotmail.com>
Apparently-To: <deeksha@hotmail.com>
Apparently-To: <zoellner@earthlink.com>
Apparently-To: <aslan155@hotmail.com>
Apparently-To: <shivell@mindspring.com>
Apparently-To: <aslan135@hotmail.com>
Apparently-To: <zoellerb@yahoo.com>
Apparently-To: <zoelle@usa.net>
Apparently-To: <ftp-adm@yahoo.com>
Date: Sun, 3 Sep 2000 12:22:51 -0500
X-OldDate:  03 Sep 00 12:10:46 PM
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: 8oSF2095p@public.sta.net.cn
Subject: Ftp-WG: Fw: good timing?

Look, we don't want to waste your time...or ours

You must be determined to earn a bare minimum of $10,000 in the next
30 - 45 days and to develop a net worth of over 1 Million Dollars Cash
in the next  24-36 months. My mission is to help other people develop their
life long dreams. Part of what I'm looking for are those people who are
committed to that BIG of a picture and are not afraid to work for it. 
We can help you:

                   REGARDLESS OF YOUR CURRENT AGE 
                                OR YOUR DEBT LOAD!

                             NOT MLM or FRANCHISE

                   Don't bother to call unless you are serious.

            Learn the Facts  CALL 1-800-342-4107  (24 hrs)

                          $10,000 IN 30 - 45 DAYS 
                      RETIREMENT IN 3-5 YEARS

Please accept our deepest apologizes, if you received this email
unsolicited, and you can be removed automatically below.

***************************************************************************************
All REMOVE requests AUTOMATICALLY honored upon receipt.
mailto:grapefoot@cybercashguys.com?subject=Remove
PLEASE understand that any effort to disrupt, close or block this REMOVE
account can only result in difficulties for others wanting to be removed from
our mailing list as it will be impossible to take anyone off the list if the 
remove instruction can not be received.
****************************************************************************************









From ftp-wg-owner@hethmon.com  Mon Sep  4 12:52:52 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id MAA05250
	for <ftpext-archive@lists.ietf.org>; Mon, 4 Sep 2000 12:52:51 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000904115340-57176-10 ; Mon, 04 Sep 2000 11:53:40 -0500
Received: from mail.oem.com.mx (mail.oem.com.mx [200.33.128.131]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000904115335-34689-8 ; Mon, 04 Sep 2000 11:53:35 -0500
Received: from office-group (unverified [206.133.140.89]) by mail.oem.com.mx
 (EMWAC SMTPRS 0.83) with SMTP id <B0000011783@mail.oem.com.mx>;
 Mon, 04 Sep 2000 11:04:23 -0600
Message-ID: <B0000011783@mail.oem.com.mx>
Date: Mon, 4 Sep 2000 11:53:37 -0500
X-OldDate:  Mon, 04 Sep 2000 11:04:23 -0600
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: <jm2001@myrealbox.com>
To: fheown@sjgpcnv.au
Subject: Ftp-WG: EARN 2-5K PER WEEK AT HOME!!!!


WORK SMARTER,.....NOT HARDER

It's So Simple To Earn $2,000 - $5,000 Per Week Nowadays...

We're searching for only 10 elite individuals with the work
 ethic necessary to generate a cash-flow for themselves of 
$2,000 - $5,000per week, and to increase that to over $20,000
 per month, in as little as four to six months. 

And you know what? If you really have a burning desire and 
commitment, we guarantee you that you'll reach this explosive income!

Can you read a short script to our qualified leads, and 
then turn the interested prospects over to our electronic
sales medium? (you will not be required to do any selling.)

Do you have the self-discipline to ignore the TV for a couple
of hours per day? 

Are you looking for a legitimate home-based business opportunity,
 that is not multi-level marketing, or a chain-letter scheme?

If you would like to build an amazing income that will grow
 lightning-fast and have you profit $1,000.00 every time only 
one prospect makes a purchase, then this is for you! You can 
build the business under our guidance and support without having 
to attend meetings or sell people things they don't need.

Call NOW our TOLL FREE, PRE-RECORDED Message:1-800-320-9895 ext 0773

We market a real product, that pays real commissions to you,
$1,000.00 per sale, just for making the initial contacts. 
With our turn-key lead generation systems you'll always talk 
to people who actually WANT to talk to you.

You have nothing to lose, there's no risk involved, nor is
 there any obligation whatsoever, and you may be qualified
 to earn thousands of extra dollars per month! So call now!

The call is FREE, and there is absolutely no obligation, 
So what have you got to lose?

Call Toll Free 1-800-320-9895 ext 0773

P.S. You literally have a once-in-a-lifetime opportunity to
 GET INVOLVED NOW! Don't let this one go by. 

You have absolutely nothing to lose! This could be the most
 fascinating and profitable business of your life!

Please, serious inquiries only.


**********************************************************************
All REMOVE requests AUTOMATICALLY honored upon receipt.

PLEASE understand that any effort to disrupt, close or block this
 REMOVE account can only result in difficulties for others wanting
 to be removed from our mailing list as it will be impossible to take
 anyone off the list if the remove instruction can not be received.

To be removed from our mailing list please
send an email to: listremoval@unbounded.com
and place remove in the subject
Thank you
*********************************************************




From ftp-wg-owner@hethmon.com  Mon Sep  4 22:53:08 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id WAA11276
	for <ftpext-archive@lists.ietf.org>; Mon, 4 Sep 2000 22:53:07 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000904215254-7609-10 ; Mon, 04 Sep 2000 21:52:54 -0500
Received: from sams.samanet.com.br (sams.samanet.com.br [200.242.29.18]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000904215248-986-8 ; Mon, 04 Sep 2000 21:52:50 -0500
Message-Id: <20000904215248-986-8@mail.hethmon.com>
Received: from sdn-ar-021casfrMP185.dialsprint.net [158.252.249.187]
	(HELO hotapplecyder)
	by sams.samanet.com.br (AltaVista Mail V2.0/2.0 BL23 listener)
	id 0000_00ee_39b4_5de2_6258;
	Mon, 04 Sep 2000 23:43:46 -0300
MIME-Version: 1.0
Content-Type: multipart/mixed;
	boundary="----=_NextPart_000_569E_0000374F.00001A5E"
X-Priority: 3
X-MSMail-Priority: Normal
Date: Mon, 4 Sep 2000 21:52:51 -0500
X-OldDate:  Mon, 04 Sep 2000 18:26:21 -0700
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: smartwork@kidzmail.com.au
To: 
Subject: Ftp-WG: Work Smarter.....Not Harder   Work From Home  Today

------=_NextPart_000_569E_0000374F.00001A5E
Content-Type: text/html;

<HTML>
<BODY>

<FONT face="Times New Roman">
<FONT size=3><B> LOOKING FOR GEMS!<BR>
<BR>
It's So Simple To Earn $2,000 - $5,000 Per Week Nowadays... <BR>
We're searching for only 10 elite individuals with the work ethic necessary to generate a cash-flow for themselves of $2,000 - $5,000per week, and to increase that to over $20,000 per month, in as little as four to six months. And you know what? If you really have a burning desire and commitment, we guarantee you that you'll reach this explosive income!<BR>
<BR>
Can you read a short script to our qualified leads, and then turn the interested prospects over to our electronic sales medium? (you will not be required to do any selling.)Do you have the self-discipline to ignore the TV for a couple of hours per day? Are you looking for a legitimate home-based business opportunity, that is not multi-level marketing, or a chain-letter scheme? <BR>
<BR>
If you would like to build an amazing income that will grow lightning-fast and have you profit $1,000.00 every time only one prospect makes a purchase, then this is for you! You can build the business under our guidance and support without having to attend meetings or sell people things they don't need.<BR>
<BR>
Call NOW our TOLL FREE, PRE-RECORDED Message:1-800-320-9895 ext.  6215<BR>
<BR>
We market a real product, that pays real commissions to you,$1,000.00 per sale, just for making the initial contacts. With our turn-key lead generation systems you'll always talk to people who actually WANT to talk to you.<BR>
<BR>
You have nothing to lose, there's no risk involved, nor is there any obligation whatsoever, and you may be qualified to earn thousands of extra dollars per month! So call now! <BR>
<BR>
The call is FREE, and there is absolutely no obligation, So what have you got to lose? <BR>
<BR>
Call Toll Free 1-800-320-9895   ext.  6215<BR>
<BR>
P.S. You literally have a once-in-a-lifetime opportunity to GET INVOLVED NOW! Don't let this one go by. You have absolutely nothing to lose! This could be the most fascinating and profitable business of your life!<BR>
<BR>
 Please, serious inquiries only.<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
To be removed from future mailings send a blank email with remove in the subject line and <BR>
the email address or addresses to be removed in the body to<BR>
newheart@unbounded.com<BR>
</B>
<FONT face="MS Sans Serif">
<FONT size=2> <BR>
</FONT></FONT></FONT></FONT></BODY></HTML>



------=_NextPart_000_569E_0000374F.00001A5E--


From ftp-wg-owner@hethmon.com  Wed Sep  6 15:09:26 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id PAA20910
	for <ftpext-archive@lists.ietf.org>; Wed, 6 Sep 2000 15:09:26 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000906140702-28278-10 ; Wed, 06 Sep 2000 14:07:02 -0500
Received: from canuk (ip83.tucson4.az.pub-ip.psi.net [38.29.64.83]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000906140657-25728-8 ; Wed, 06 Sep 2000 14:06:58 -0500
Message-Id: <20000906140657-25728-8@mail.hethmon.com>
Date: Wed, 6 Sep 2000 14:06:59 -0500
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
Subject: Ftp-WG: 


Dear Friend,

Please sit down because the secret Im about to reveal to 
you will make you light headed-

Would you like to know how to turn $1.00 into $2,500.00 
time after time with virtually no effort I CAN SHOW YOU 
HOW!

If you want to change your lives circumstances fast, be able 
to afford all the good things in life and want your bank account 
to explode with CASH then this program is for you: PLEASE 
READ ON.

Being a 25yr practicing Real Estate Broker I discovered after 
retiring a closely guarded secret so phenomenal that I must 
share it with you!

This Real Estate loophole allows the average person to start 
and operate a Real Estate business without a license or money 
and make $2,500.00 to $25,000.00 per deal.  The best part of 
this program is that you get to keep all of the money.  You dont 
have to split your profits with another Real Estate Agent or 
Broker.

Here is some of what you will learn in this program HOW TO 
SELL AND CONTROL REAL ESTATE WITHOUT A LICENSE OR 
MONEY.

YOU WILL:

Learn how to sell Real Estate legally without a license 
anywhere in the USA!

Learn how to make $2,500.00 to $25,00.00 with only $1.00 
invested NOW THATS REAL LEVERAGE!

Learn how to control $1,000,000 in Real Estate for only 
$100.00!

Learn how to control your deals from start to finish!

Learn how to create ownership rights in Real Estate without 
having to make Mortgage tax or insurance payments!

Learn how to live in your home for free!

Learn how to access a mortgage with 3% interest without 
a credit check or closing fees!

Learn how to access Mortgage Lenders who loan money to 
almost anyone who has a job regardless of past credit 
problems!

Learn how to sell your properties for full price every time by 
using Sub-Prime Lenders and make more money than you ever 
thought possible just by filling out one little piece of paper!

TO ORDER: "HOW TO SELL AND CONTROL REAL ESTATE 
WITHOUT A LICENSE OR MONEY" FOR ONLY $39.00-S&H included!

Call Now! 1-800-417-6395


	

       




From ftp-wg-owner@hethmon.com  Wed Sep  6 21:19:35 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id VAA25641
	for <ftpext-archive@lists.ietf.org>; Wed, 6 Sep 2000 21:19:33 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000906202056-3173-12 ; Wed, 06 Sep 2000 20:20:56 -0500
Received: from roll.mentat.com (mentat.com [192.88.122.129]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000906202051-7382-12 ; Wed, 06 Sep 2000 20:20:52 -0500
Received: from death (death [192.88.122.121])
	by roll.mentat.com (8.9.1b+Sun/8.9.1) with SMTP id SAA11507;
	Wed, 6 Sep 2000 18:17:02 -0700 (PDT)
Message-Id: <200009070117.SAA11507@roll.mentat.com>
MIME-Version: 1.0
Content-Type: TEXT/plain; charset=us-ascii
Content-MD5: CUdgAGsfiVfNPGYFig31bA==
X-Mailer: dtmail 1.2.0 CDE Version 1.2 SunOS 5.6 i86pc i386 
Date: Wed, 6 Sep 2000 20:20:54 -0500
X-OldDate:  Wed, 6 Sep 2000 18:38:25 -0700 (PDT)
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Mike Saul <mike@mentat.com>
To: lundberg@vr.net
Subject: Ftp-WG: Fwd: I-D ACTION:draft-saul-ftp-plus-00.txt

> > Perhaps a better solution here would be to use the EPRT and EPSV
> > definitions of RFC 2428 in place of the XPRT and XPSV commands.  The only
> > trouble is there is no address family number for XTP in RFC 1700.  We
> > would have to get one from IANA.
> 
> If all you're missing is an assignment of an address family name/number
> from IANA, the best solution would be to take that route.  It should make a
> number of things easier as well; for or instance, I would not be surprise
> to find that, with the assignment, you would find it a lot easier to get
> POSIX acceptance of XTP's address family for such things as the bind()
> function.

Gregory,

I've had to think about this (and other things) for a while.  Let's see how the 
request for XTP address family(s) goes with IANA.  It would make things
a lot easier if we could go that way.  However, RFC 2428 currently refers 
specifically to tcp-port in the format of the EPRT command:

EPRT<space><d><net-prt><d><net-addr><d><tcp-port><d>

so some kind of explanation (or modification is needed somewhere).

The other alternative would be to have a separate command that indicates the
transport (TCP, XTP) in addition to the EPRT/EPSV commands.

> > I understand.  So I would like to propose some other ways to do this.
> > One alternative is to modify the REST command to add an optional length
> > parameter.  The only problem is that in some cases we are not trying to
> > RESTART a transfer and we are just trying to send part of a file.  So
> > instead of overloading the REST command perhaps a better solution would
> > be to create a STPA (Store Parameters) and a RTPA (Retrieve Parameters)
> > command?  There would be no file names associated with these commands, so
> > the "file names with spaces" problem would be eliminated.  Note that
> > having both an offset and a length parameter (to some acceptable command)
> > should be of general interest to this working group and the IETF
> > community.
> 
> Historically, the intention of FTP was _file_ transfer.  Not record
> transfer, nor any form of partial-file transfer.
> 
> The use of REST to restore an interrupted transfer arose from the
> realization that most files available via FTP do not change very often (if
> ever), some are exremely large, and one would desire to not have to spend
> the bandwidth on retransmission of the first few gigabyte of a download
> simply because of a loss of connectivity.
> 
> The problem with REST is there is no way to ensure the file has, in fact,
> not changed.  This is why its use with stream-mode transfers has never been
> sanctioned.  The MLST draft codifies existing practice in this respect,
> simply by pointing out that one must take steps to attempt to avoid the
> problem of pasting the end of one generation of a file onto the beginning
> of an earlier one; it offers suggestions on how to do this, but no
> solutions.
> 
> You will find the FTP Working Group divided on the subject of partial
> transfers.  The majority view, however, has historically been that the FTP
> is not intended to be a replacement for more general file access methods
> (such as NFS and SMB).  So I would expect sufficient resistance to a
> generalized record-update method such as your proposal appears to be
> attempting to provide to effectively block any such effort.
> 
> The question is: what are you attempting to accomplish?  If what you're
> trying to do is provide a means to download (and, perhaps, upload and
> replace), say, a specific frame or scene from a multi-frame or multi-scene
> video file I would suggest the best way to handle this would be to
> synthesis some form of "partioning" on the file.  One could take the view
> that your "video file" is simply a "directory" and that each "file" within
> it corresponds to some "frame" or "scene".
> 
> With such a scheme, one approach would be to normalize the naming
> (addressing) within the FTP NVFS.  Since your current desire is to use raw
> offsets and lengths, this does not seem appealing.  If, however, one
> chooses to view a video file as a "partitioned dataset" where each part has
> a symbolic name, this would seem the way to go.
> 
> Another scheme would be, as you seem to be suggesting, some form of
> parametric lead-in command.  I would envision this working similar to RNFR,
> in that the lead-in command would return an intermediate reply and the
> server would enter a state waiting for a STOR or RETR command.

Yes, this is what I was suggesting.

> Bear in mind that there will be no means to ensure synchonization.  This
> means that read-modify-write sequences will be inherently unreliable.  We
> have that problem now, but only at the "file" level, and the problem is
> mitigated by the fact that most FTP sites separate upload and download
> areas, leaving the problem of in-place replacement of files to the users to
> handle.
> 
> It's late, and the only reason I'm online right now is my cold meds wore
> off.  My mind is spinning with ideas on how to handle what I see as the
> problem you're trying to solve.  I'll leave this subject for now, with the
> following thoughts:
> 
>  - as I see it, there are two issues; the support for XTP as a transport
>    mechanism .. which obtaining IANA assignment would be the first step
>    toward solving .. and the ability to store or retrieve partial files.

Correct.

>  - I do not see how partial file support is a _requirement_ for XTP
>    support.

That is also correct.  That is why your suggested title "XTP Extentions to FTP"
doesn't quite fit.  The SMPTE/EBU task force thought that both of these issues
were important enought to stick under the FTP+ umbrella.  See below.

>  - it would help me if I knew what you're trying to accomplish with partial
>    file support.  Specifically, is raw byte-offset the only acceptable
>    method to you?  If what you're really trying to do is say "replace this
>    scene with this other one", that's a completely different problem from
>    simple byte offsets.

I think that at this time the desire for a raw byte-offset is still a real
goal.  The following is from one of the originators of FTP+, Al Kovalick.

 The comments from Mike and Gregory were very interesting. I have been
involved with the requirements of FTP+ from the start.  I must admit we
didn't see the "file name with spaces" problem although I use such every
day.  Live and learn.  Regarding the read partial file command form, this
was an early requirement. Although I appreciate Gregory's ideas, the world
of media formats will not change for us nor is any type of reformatting
practical.  Users may need to access only a portion of (say a 10 GB) a movie
for a credit check. A partial read is manditory.  Sure we considered NFS and
SMB but we need the functionality in FTP for sake of "one stop shopping".  

 
>  - the problem of synchonization in partial file support is sufficiently
>    complex that it's unlikely you will be able to solve it within the
>    confines of the FTP.  While it is possible to offer some limited support
>    for it, you might be better off shifting the problem to some other
>    protocol which already has solutions (such as NFS or SMB).

I agree that updating a part of a file (STOR) presents special synchronization
problems, whereas the sending of part of a file (RETR) shouldn't present any 
more synchronization problems than we already have.

>  - separating your needs to support XTP as a transport mechanism from your
>    needs for partial file support is probably a Good Idea(tm).  It means
>    the base support of the transport mechanism can go forward.  At the same
>    time discussion of partial file support could be made more generic.  Put
>    another way: I see apples and oranges in your basket; why not make it
>    two baskets so those who only want apples don't have to take the oranges
>    with them?

Yes, I can see where the separation of the two issues would be a good idea
under this forum.  I'm open to ideas on how I should proceed, and thanks for
all of the input.  At some point my head will also stop spinning.
 
> > Here we are not trying to find out whether the server supports the RATE
> > command; we want to know the current value.  Is FEAT still more appropriate?
> 
> Yes.  And OPTN could be used to modify the value if you so desire.
> 
> > I understand.  The second parameter to SIZE is not really necessary.
> 
> What I was getting at was that you were attempting to discover a "fact"
> about a file.  While MLST is not yet at RFC stage, my suggestion is that it
> would be more appropriate to use MLST to discover the fact.  All that
> should be required in this case (once MLST reaches RFC stage) would be the
> registration of the "fact" code(s) with IANA.
> 
> -- 
> 
> Gregory A Lundberg              WU-FTPD Development Group
> 1441 Elmdale Drive              lundberg@wu-ftpd.org
> Kettering, OH 45409-1615 USA    1-800-809-2195

Mike Saul
mike@mentat.com





From ftp-wg-owner@hethmon.com  Wed Sep  6 21:44:26 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id VAA26796
	for <ftpext-archive@lists.ietf.org>; Wed, 6 Sep 2000 21:44:26 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000906204611-13301-12 ; Wed, 06 Sep 2000 20:46:11 -0500
Received: from anarchy.io.com (anarchy.io.com [199.170.88.101]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000906204608-51165-10 ; Wed, 06 Sep 2000 20:46:08 -0500
Received: from magnus.io.com (as1-dialup-105.io.com [206.224.82.105])
	by anarchy.io.com (8.9.3/8.9.3) with ESMTP id UAA11262
	for <ftp-wg@hethmon.com>; Wed, 6 Sep 2000 20:41:57 -0500
Message-Id: <4.3.2.7.2.20000906203614.00b7fd70@mail.io.com>
X-Sender: alun@mail.io.com
X-Mailer: QUALCOMM Windows Eudora Version 4.3.2
In-Reply-To: <200009070117.SAA11507@roll.mentat.com>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"; format=flowed
Date: Wed, 6 Sep 2000 20:46:09 -0500
X-OldDate:  Wed, 06 Sep 2000 20:41:37 -0500
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Alun Jones <alun@texis.com>
To: FTPEXT Working Group <ftp-wg@hethmon.com>
Subject: Ftp-WG: Fwd: I-D ACTION:draft-saul-ftp-plus-00.txt

At 08:20 PM 9/6/2000, you wrote:
>That is also correct.  That is why your suggested title "XTP Extentions to 
>FTP"
>doesn't quite fit.  The SMPTE/EBU task force thought that both of these issues
>were important enought to stick under the FTP+ umbrella.  See below.

I think "FTP+" is very definitely the wrong term to use.  It implies that 
it continues the generic FTP as it stands into future versions - whereas I 
think your proposal is more aimed at a small subset of possible users' demands.

To add the suggested features in as generic additions to FTP would require 
so much in the way of file locking, etc, that we'd find ourselves heading 
into the territory of reinventing other protocols that are already better 
at that task.

Alun.
~~~~

--
Texas Imperial Software   | Try WFTPD, the Windows FTP Server. Find us at
1602 Harvest Moon Place   | http://www.wftpd.com or email alun@texis.com
Cedar Park TX 78613-1419  | VISA/MC accepted.  NT-based sites, be sure to
Fax/Voice +1(512)378-3246 | read details of WFTPD Pro for NT.




From ftp-wg-owner@hethmon.com  Thu Sep  7 07:16:06 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id HAA14864
	for <ftpext-archive@lists.ietf.org>; Thu, 7 Sep 2000 07:16:06 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000907061751-7184-9 ; Thu, 07 Sep 2000 06:17:51 -0500
Received: from mail.vr.net (mail.vr.net [205.133.13.8]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000907061746-47809-8 ; Thu, 07 Sep 2000 06:17:47 -0500
Received: (from lundberg@localhost)
	by mail.vr.net (8.10.1/8.10.1) id e87BDOo16797;
	Thu, 7 Sep 2000 07:13:24 -0400
Message-ID: <20000907071323.B16482@vr.net>
References: <200009070117.SAA11507@roll.mentat.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 0.95.6i
In-Reply-To: <200009070117.SAA11507@roll.mentat.com>; from Mike Saul on Wed, Sep 06, 2000 at 06:38:25PM -0700
Date: Thu, 7 Sep 2000 06:17:49 -0500
X-OldDate:  Thu, 7 Sep 2000 07:13:23 -0400
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Gregory A Lundberg <lundberg@vr.net>
To: Mike Saul <mike@mentat.com>
Subject: Ftp-WG: Fwd: I-D ACTION:draft-saul-ftp-plus-00.txt

> Users may need to access only a portion of (say a 10 GB) a movie for a
> credit check. A partial read is manditory.

.. and monumentally WRONG.  I almost find myself in disbelief that
reasoning such as this continues on the Internet.

Your requirement for partial read/write file access is not based upon a
need for shared-access file maintenance (for which FTP is remarkably
unsuited).

Do you have ANY reasons for these features which have nothing to do with
authentication and/or authorization?

If not, from everything I've seen, I suggest dropping all partial transfer
discussion from your draft; leaving you with a simple draft updating
existing RFCs to be less transport-method specific in certain phrases and
identifiers, possibly with a few minor protocol changes in the same vein.

-- 

Gregory A Lundberg              WU-FTPD Development Group
1441 Elmdale Drive              lundberg@wu-ftpd.org
Kettering, OH 45409-1615 USA    1-800-809-2195



From ftp-wg-owner@hethmon.com  Fri Sep  8 11:12:27 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id LAA24246
	for <ftpext-archive@lists.ietf.org>; Fri, 8 Sep 2000 11:12:26 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000908101236-17653-14 ; Fri, 08 Sep 2000 10:12:36 -0500
Received: from entropy.netwide.com.au (entropy.netwide.com.au [203.13.23.12]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000908101231-62174-8 ; Fri, 08 Sep 2000 10:12:33 -0500
Received: from oakleigh.stockdale.com.au ([203.26.39.139])
	by entropy.netwide.com.au (8.8.8/8.8.8) with SMTP id CAA28448;
	Sat, 9 Sep 2000 02:08:04 +1100 (EST)
Message-Id: <200009081508.CAA28448@entropy.netwide.com.au>
Received: from _[180.234.35.4]_by ([203.63.150.253]) by oakleigh.stockdale.com.au (Lotus SMTP MTA v1.2  (600.1 3-26-1998)) with SMTP id 4A256954.00512375; Sat, 9 Sep 2000 00:46:17 +1000
Received: from  [55.218.93.68] by _[180.234.35.4]_by with SMTP id A58C42E11 Thu, 7 Sep 2000 22:26:54 PDT
Mime-Version: 1.0
Content-Type: text/html; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by entropy.netwide.com.au id CAA28448
Date: Fri, 8 Sep 2000 10:12:33 -0500
X-OldDate:  Thu, 7 Sep 2000 22:44:11
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: dc6570@india.com
Subject: Ftp-WG: The best can be cheap!!!
Content-Transfer-Encoding: quoted-printable







<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>YOU SPOKE AND WE LISTENED</TITLE>
<META content=3Dtext/html;charset=3Diso-8859-1 http-equiv=3DContent-Type>=
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<STYLE>TD {
	FONT-FAMILY: arial
}
</STYLE>

<META content=3D"MSHTML 5.00.2614.3500" name=3DGENERATOR></HEAD>
<BODY bgColor=3D#ffffff>

<img src=3D"http://www.angelfire.com/fl4/secreeformore/webpic1.gif" width=
=3D"169" height=3D"129">=20
<img src=3D"http://www.angelfire.com/fl4/secreeformore/webpic2.gif" width=
=3D"170" height=3D"127">=20
<img src=3D"http://www.angelfire.com/fl4/secreeformore/webpic3.gif" width=
=3D"173" height=3D"130">


<DIV align=3Dleft class=3DOutlookMessageHeader dir=3Dltr><FONT face=3DTah=
oma=20
size=3D2></FONT></DIV>


<h3><font face=3D"Arial, Helvetica, sans-serif" color=3D"#0000FF">JUST WH=
EN YOU THOUGHT=20
  IT COULDN'T GET BETTER, IT DID </font></h3>
<p><font face=3D"Arial, Helvetica, sans-serif"><b>Total and Real E-Commer=
ce Solutions=20
  at the Lowest Price Ever</b><br>

<p><font size=3D"4" face=3D"Arial, Helvetica, sans-serif" color=3D"#FF000=
0"><b>If you apply within 72 Hours, you are entitled to:</font><br>
  Free Technical Training <br>
  Free Electronic Shopping Cart <br>
  Free Hosting Free Search Engine Submission <br>
  Free E-Checks (ACH) <br>
  Free Marketing Package (will send over 200 potential customers=20
  to your site) <br>
  Free Email Accounts <br>
  Free Internet Access <br>
  Free Custom Referral Website (earn commissions) <br>
  Plus the cheapest Merchant Account Ever!!! </font></p>
<p><font face=3D"Arial, Helvetica, sans-serif"><b><font color=3D"#FF0000"=
>Our Merchant=20
  Account has the Lowest Rates on the Net or anywhere!!! </font></b></fon=
t><br>
<font face=3D"Arial, Helvetica, sans-serif">a.. Discount Rates of 1.55 an=
d 2.1;<br>
  b.. Transaction Fees of $.20 and $.25 </font></p>
<p><font face=3D"Arial, Helvetica, sans-serif"><b><font color=3D"#000000"=
>Plus you will=20
  also receive:</font></b> <br>
  a.. Pre-approved Merchant Account and Internet processing software for =
your=20
  website, in Real Time; <br>
  b.. Accept all Major Credit Cards Online Now; <br>
  c.. Custom built order page; <br>
  d.. We will waive the $195 application and set-up fee <br>
  e.. Once registered you are automatically enrolled in our Referral Prog=
ram;=20
  </font></p>
<p><font face=3D"Arial, Helvetica, sans-serif"><b>Plus the Best Websites =
with Total=20
  E-Commerce Solutions in Existence.</b></font></p>

<img src=3D"http://www.angelfire.com/fl4/secreeformore/banner.gif">

<p><font face=3D"Arial, Helvetica, sans-serif"> <b>We will build you a Cu=
stom Website=20
  with:</b><br>
  a.. Merchant Account (real time processing) <br>
  b.. Free Hosting <br>
  c.. Free Search Engine Submission <br>
  d.. Free Electronic Shopping Cart <br>
  e.. Free E-Checks (ACH) <br>
  f.. Free Marketing Package <br>
  g.. Free Custom Referral Website <br>
  h.. Free Technical Training</font></p>
<h3><b><font color=3D"#0000FF" face=3D"Arial, Helvetica, sans-serif">For =
more information=20
  simply fill out the following form</font></b></h3>
<HR SIZE=3D1>

<TABLE>
  <TBODY>
  <TR>
    <TD>
      <FORM action=3D"mailto:bettyb@n2mail.com?cc=3Drrich30@excite.com&su=
bject=3DNEW LEAD"=20
      encType=3Dtext/plain method=3Dpost>
      <DIV align=3Dcenter>&nbsp;</DIV></TD></TR>
  <TR>
    <TD>Your Name:</TD>
    <TD><INPUT name=3DNAME></TD></TR>
  <tr>
    <td>Your Age:</td>
    <td><input name=3DAGE></td></tr>
  <TR>
    <TD>Company Name:</TD>
    <TD><INPUT coname=3DCOMPANY_NAME></TD></TR>
  <TR>
    <TD>State:</TD>
    <TD><INPUT name=3DSTATE size=3D2></TD></TR>
  <TR>
    <TD>Business Phone:</TD>
    <TD><INPUT name=3DBUS_PHONE></TD></TR>
  <TR>
    <TD>Home Phone:</TD>
    <TD><INPUT name=3DHOME_PHONE></TD></TR>
  <TR>
    <TD>Email:</TD>
    <TD><INPUT name=3DEMAIL></TD></TR>
  <TR>
    <TD>Type of Business:</TD>
    <TD><INPUT name=3DTYPE_OF_BUSINESS></TD></TR>
  <TR>
    <TD><BR>
      <DIV align=3Dcenter>&nbsp;</DIV></TD></TR></TBODY></TABLE>
<DIV align=3Dleft><FONT=20
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
</FONT><INPUT type=3Dsubmit value=3D"Submit Information"></DIV>
<DIV align=3Dcenter><FONT=20
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</FONT></DIV>
<DIV align=3Dcenter><FONT=20
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;=20
</FONT></DIV>
<DIV></DIV>
<TABLE>
  <TBODY>
  <TR>
    <TD style=3D"FONT-SIZE: 10pt">&nbsp;If you received this in error or =
would=20
      like to be removed from our list, <A=20
      href=3D"mailto:notme211@excite.com?subject=3DRemoveName">PLEASE CLI=
CK HERE</A>=20
    </TD></TR></TBODY></TABLE></FORM>
<hr>
<p><font face=3D"Arial, Helvetica, sans-serif">This message is being sent=
 to you=20
  in compliance with the proposed Federal legislation for commercial e-ma=
il (S.1618=20
  =96 SECTION 301). "Pursuant to Section 301, Paragraph (a)(2)(C) of S. 1=
618, further=20
  transmissions to you by the sender of this e-mail may be stopped at no =
cost=20
  to you by submitting a request to REMOVE. </font></p></BODY></HTML>










From ftp-wg-owner@hethmon.com  Fri Sep  8 11:26:58 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id LAA24403
	for <ftpext-archive@lists.ietf.org>; Fri, 8 Sep 2000 11:26:58 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000908102038-11729-11 ; Fri, 08 Sep 2000 10:20:38 -0500
Received: from ulexite.lion-access.net (ulexite.lion-access.net [212.19.217.2]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000908102035-61450-10 ; Fri, 08 Sep 2000 10:20:35 -0500
Received: from joris (1Cust219.tnt16.rtm1.nl.uu.net [213.116.126.219])
	by ulexite.lion-access.net (I-Lab) with SMTP id 51C98FAFB5
	for <ftp-wg@hethmon.com>; Fri,  8 Sep 2000 14:16:13 -0100 (GMT)
Message-ID: <000001c019a7$fb9654a0$0d0aa8c0@THUIS.LOCAL>
MIME-Version: 1.0
Content-Type: text/plain;
	charset="us-ascii"
Content-Transfer-Encoding: 7bit
X-Priority: 3 (Normal)
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0)
In-Reply-To: <20000908000023-50016-8@mail.hethmon.com>
Importance: Normal
X-MimeOLE: Produced By Microsoft MimeOLE V5.00.3018.1300
Date: Fri, 8 Sep 2000 10:20:36 -0500
X-OldDate:  Fri, 8 Sep 2000 17:18:01 +0200
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: "Joris Dobbelsteen" <joris.dobbelsteen@mail.com>
To: "'FTPEXT Working Group'" <ftp-wg@hethmon.com>
Subject: Ftp-WG: Junk mail
Content-Transfer-Encoding: 7bit

It's looking like the FTPEXT WG is a junk mailing list, or not?



From ftp-wg-owner@hethmon.com  Fri Sep  8 14:31:14 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id OAA27595
	for <ftpext-archive@lists.ietf.org>; Fri, 8 Sep 2000 14:31:13 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000908133252-22074-9 ; Fri, 08 Sep 2000 13:32:52 -0500
Received: from icx.net (mailhub.icx.net [206.96.250.12]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000908133247-32862-9 ; Fri, 08 Sep 2000 13:32:47 -0500
Received: from oemcomputer (ptlddslgw4poola163.ptld.uswest.net [63.229.128.163])
	by icx.net (IDG-2.7/1.3nr) with SMTP id OAA00213
	for <ftp-wg@hethmon.com>; Fri, 8 Sep 2000 14:28:35 -0400 (EDT)
Message-Id: <200009081828.OAA00213@icx.net>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Fri, 8 Sep 2000 13:32:50 -0500
X-OldDate:  Fri, 8 Sep 2000 11:22:28
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: "horizonsea,inc." <sales@horizonsea>
To: <ftp-wg@hethmon.com>
Subject: Ftp-WG: 

<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="Version" content="8.0.3410">
<meta name="Date" content="10/11/96">
<meta name="Template"
content="C:\Program Files\Microsoft Office\Office\HTML.DOT">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title></title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table border="0" cellpadding="7" cellspacing="0" width="692">
<tr>
<td valign="top" colspan="5" height="67"><p
align="center"><img
src="http://64.225.53.86/horizonsea/tmpcov1.jpg"
width="458" height="66"></p>
</td>
</tr>
<tr>
<td valign="top" colspan="5" height="42"><p
align="center"><font color="#FF0000" size="5"
face="Arial"><strong>Re-ESTABLISH</strong></font><font
color="#FF0000"> </font><font color="#FF0000" size="5"
face="Arial"><strong>YOUR CREDIT</strong></font></p>
</td>
</tr>
<tr>
<td valign="top" width="16%" height="39">&nbsp;</td>
<td valign="top" colspan="3" width="70%" height="39"><p
align="center"><font size="4" face="Arial"><strong>Your
MASTER CARD and VISA</strong></font><font size="4"> </font><font
size="4" face="Arial"><b>Are</b></font><font size="4"><b>
</b></font><font size="5" face="Arial"><strong>GUARANTEED</strong></font></p>
</td>
<td valign="top" width="14%" height="39">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="16%" height="39">&nbsp;</td>
<td valign="top" width="23%" height="39"><p
align="center"><img
src="http://64.225.53.86/horizonsea/tmpcov2.jpg"
width="75" height="47"></p>
</td>
<td valign="top" width="23%" height="39"><p
align="center"><font size="4" face="Arial"><strong>There
are Banks Looking for:</strong></font></p>
</td>
<td valign="top" width="23%" height="39"><p
align="center"><font color="#0000FF" size="4"
face="Arial"><b><img
src="http://64.225.53.86/horizonsea/Image2.jpg"
width="75" height="47"></b></font></p>
</td>
<td valign="top" width="14%" height="39">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="16%" height="39">&nbsp;</td>
<td valign="top" colspan="3" width="70%" height="39"><p
align="center"><font color="#0000FF" size="4"
face="Arial"><strong>GOOD PEOPLE</strong></font><font
color="#0000FF" face="Arial"><strong> with </strong></font><font
color="#0000FF" size="5" face="Arial"><strong>BAD CREDIT</strong></font></p>
</td>
<td valign="top" width="14%" height="39">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="16%" height="205">&nbsp;</td>
<td valign="top" colspan="3" width="70%" height="205"><p
align="left"><strong>If you're like most Americans,
you've had hard economic times at one time or another.
Because of our country's current Economic Boom, there are
Creditors with Surplus Money Supplies, and they're
looking for good honest people, that want to turn their
lives around. Even if you're currently on Welfare, or
Disability, as long as you have the desire to become part
of the American Mainstream, there are Lender's, who will
take a chance. We, at HORIZON SEA, INC., will Guarantee
your acceptance for a Master Card and/or Visa, with one
of the many lending institutions that are looking for
Credit Challenged People, Folks who are looking to change
their Lives. Would a GOLD CARD change your life? For a
mere $29.95, we offer a Money Back Guarantee if we are
unable to secure a lender who will grant you a Line of
Credit. We will refund your money, It's our confidence
and success that allow us to do this&#133; Let us change
your life.</strong></p>
</td>
<td valign="top" width="14%" height="205">&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td colspan="3"><strong>Please print and return this
page: <br>
Make check or money order for 29.95 payable to :</strong></td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td><strong>Horizon Sea Inc. <br>
11954 N.E. Glisan <br>
PMB 204 <br>
Portland, OR<br>
97220-2143</strong></td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td colspan="3"><strong>Name:
____________________________<br>
Address: __________________________<br>
Address 2:_________________________<br>
State:_____________________________<br>
Zip: ______________________________<br>
e-mail: ____________________________<br>
Phone: (optional) ____________________</strong></td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td colspan="3"><strong>Upon receipt of your payment we
will contact you via e-mail within 48 hours.</strong></td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td colspan="3"><font size="1">This message is sent in
compliance of the new e-mail bill:SECTION 301.<br>
Sender: Horizon Sea Inc. <br>
email: </font><a href="mailto:advertising@horizonsea.com"><font
size="1">advertising@horizonsea.com</font></a><font
size="1"> <br>
&quot;Per Section 301, Paragraph (a)(2)(C) of S. 1618,
further transmissions to you by the sender of this email
may be stopped at no cost to you by sending a reply to
this email address with the word &quot;remove&quot; in
the subject line.&quot; </font></td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
<p align="center">&nbsp;</p>
<p>&nbsp;</p>
<p align="center">&nbsp;</p>
</body>
</html>




From ftp-wg-owner@hethmon.com  Fri Sep  8 21:25:22 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id VAA03469
	for <ftpext-archive@lists.ietf.org>; Fri, 8 Sep 2000 21:25:21 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000908202706-62512-12 ; Fri, 08 Sep 2000 20:27:06 -0500
Received: from icx.net (mailhub.icx.net [206.96.250.12]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000908202702-37825-8 ; Fri, 08 Sep 2000 20:27:03 -0500
Received: from lzb1246 (PPPa85-ResaleStPetersburg1-1R7293.saturn.bbn.com [4.48.114.114])
	by icx.net (IDG-2.7/1.3nr) with SMTP id VAA01992;
	Fri, 8 Sep 2000 21:22:47 -0400 (EDT)
Content-Type: text/html;
	 charset="iso-8859-1"
Content-Transfer-Encoding: 8BIT
Message-Id: <5i8e8t1k12sdk15w2y5.s0dk2u@lzb1246>
Date: Fri, 8 Sep 2000 20:27:04 -0500
X-OldDate:  Fri, 08 Sep 2000 21:25:47 -0500
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: melissa10@postmaster.co.uk
To: @hethmon.com
Subject: Ftp-WG: I need an MLM PRO-Partner....,,
Content-Transfer-Encoding: 8BIT

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   <meta name="Author" content="Marty">
   <meta name="GENERATOR" content="Mozilla/4.5 [en]C-CCK-MCD   (Win98; I) 
[Netscape]">
   <title>Chuck50900</title>
</head>
<body>
<b><font size=+1>Hello</font></b>
<p><b><font size=+1>Over the last 3 years I have built my retirement income
stream in a Network Marketing Company that has eclipsed every measurable
growth category in the history of the industry. We have grown faster than
Microsoft, IBM and Coca Cola did in their first 3 years. Although we do
no advertising and you most likely have never heard of us we currently
are operating at </font><font color="#FF0000"><font size=+2>THIRTY&nbsp;
MILLION DOLLARS per MONTH in 22 countries !!</font></font></b>
<br>&nbsp;
<br><b><font size=+1>This phenomenal growth has been fueled by a product
that my company has the exclusive world-wide distribution rights to and
enjoys a 83% reorder order rate with the consumer base.</font></b><b><font 
size=+1></font></b>
<p><b><font size=+1>I am looking to pass the baton to the right person
or persons.</font></b>
<br><b><font size=+1>I can and will offer the following:</font></b><b><font 
size=+1></font></b>
<p><b><font size=+1>a.&nbsp; An inexhaustible world wide lead sourceat
no expense to you</font></b>
<br><b><font size=+1>b. A tested and proven duplicable training system,
created and ran by me..for you</font></b>
<br><b><font size=+1>c. 21 years of experience in this industry which we
will compound into your success</font></b><b><font size=+1></font></b>
<p><b><font color="#FF0000"><font size=+3>I am not looking for an investor,
I am looking for a working partner or partners.</font></font></b>
<br><b><font size=+2>&nbsp;</font></b>
<br><b><font size=+1>Only the seasoned NETWORKER or experienced business
entrepreneur with the right aptitude and attitude for success starting
today need reply.</font></b>
<br><b><font size=+1>&nbsp;</font></b>
<br><b><font size=+1>For further details please call:<font color="#FF0000">
</font></font><font color="#FF0000"><font size=+3>800-266-7240 ext.
0002</font></font></b>
<br><font color="#CC0000"><font size=+3></font></font>&nbsp;
</font></i></b><b><i><font size=-1></font></i></b>
<p><b><i><font color="#008000"><font size=-1>To Opt-Out (to be taken 
permanently
off of our list), please <a href="jarh67@LaUniversidad.com">CLICK
HERE</a>.</font></font></i></b></center>
</blockquote>
</blockquote>

</body>
</html>
<br>&nbsp;
<br>&nbsp;
<br>&nbsp;
<br>&nbsp;
<br>&nbsp;
</body>
</html>




From ftp-wg-owner@hethmon.com  Sun Sep 10 17:20:52 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id RAA10212
	for <ftpext-archive@lists.ietf.org>; Sun, 10 Sep 2000 17:20:51 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000910162233-15109-9 ; Sun, 10 Sep 2000 16:22:34 -0500
Received: from fsc.cfld.com (fsc.cfld.com [205.148.230.1]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000910162231-13432-8 ; Sun, 10 Sep 2000 16:22:31 -0500
Received: from kingrat (ppp-7.GO-Link.net [212.50.15.208]) by fsc.cfld.com (8.8.5/8.6.9) with SMTP id QAA26028 for <ftp-wg@hethmon.com>; Sun, 10 Sep 2000 16:04:58 -0400
Message-Id: <200009102004.QAA26028@fsc.cfld.com>
Comments: Authenticated sender is <apl24win@pop1.nettaxi.com>
Organization: BG Universal Software
MIME-Version: 1.0
Content-type: text/plain; charset=US-ASCII
Content-transfer-encoding: 7BIT
In-reply-to: <39801DAB.BF0CCFB2@runestig.com>
X-mailer: Pegasus Mail for Windows (v2.54)
Date: Sun, 10 Sep 2000 16:22:31 -0500
X-OldDate:  Mon, 11 Sep 2000 00:18:50 +0200
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: "Teodor Angeloff" <apl24win@yahoo.com>
To: ftp-wg@hethmon.com
Subject: Ftp-WG: free sFTP host
Content-Transfer-Encoding: 7BIT

hello all,

I want to know is anywhere a free FTP server (like Tripod, Fortunecity, 
Geocities) which supports any FTP security extension.

It seems 90% of all internet FTP servers are wu-ftp...

----------------------------------------
Teodor Angeloff




From ftp-wg-owner@hethmon.com  Sun Sep 10 19:05:37 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id TAA10604
	for <ftpext-archive@lists.ietf.org>; Sun, 10 Sep 2000 19:05:36 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000910180726-13367-10 ; Sun, 10 Sep 2000 18:07:26 -0500
Received: from dadl.co.kr (210.220.69.252 [210.220.69.252]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000910180717-51326-8 ; Sun, 10 Sep 2000 18:07:22 -0500
Received: from sdn-ar-001tnknoxP064.dialsprint.net_[206.133.83.48] (sdn-ar-001tnknoxP064.dialsprint.net [206.133.83.48])
	by dadl.co.kr (8.9.3/8.9.3) with SMTP id IAA10046;
	Mon, 11 Sep 2000 08:02:26 +0900
Received: from  by sdn-ar-001tnknoxP064.dialsprint.net with ESMTP; Sun, 10 Sep 2000 19:02:17 -0400
Message-ID: <0000432e530e$0000789f$00007ff5@>
MIME-Version: 1.0
Content-Type: text/html;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
X-Priority: 3
X-MSMail-Priority: Normal
Date: Sun, 10 Sep 2000 18:07:24 -0500
X-OldDate:  Sun, 10 Sep 2000 19:02:03 -0400
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: cho96@earthlink.net
To: <Undisclosed.Recipients@dadl.co.kr>
Subject: Ftp-WG: Fire Your Boss!!                         32757
Content-Transfer-Encoding: quoted-printable

<HTML>
<BODY>

<FONT face=3D"MS Sans Serif">
<FONT size=3D2> <HTML><BR><BR>
                 FOLLOW ME TO FINANCIAL FREEDOM!!<BR><BR>
<BR><BR>
I Am looking for people with good work ethic and extrordinary desire<BR><B=
R>
 to earn at least $10,000 per month working from home!<BR><BR>
<BR><BR>
NO SPECIAL SKILLS OR EXPERIENCE REQUIRED We will give you all the <BR><BR>
training and personal support you will need to ensure your success!<BR><BR=
>
<BR><BR>
This LEGITIMATE HOME-BASED INCOME OPPORTUNITY can put you back in<BR><BR>
               control of your time,your finances,and your life!<BR><BR>
<BR><BR>
If you've tried other opportunities in the past that have failed to <BR><B=
R>
               live up their promises,<BR><BR>
<BR><BR>
     THIS IS DIFFERENT THEN ANYTHING ELSE YOU'VE SEEN!<BR><BR>
<BR><BR>
       THIS IS NOT A GET RICH QUICK SCHEME!<BR><BR>
<BR><BR>
YOUR FINANCIAL PAST DOES NOT HAVE TO BE YOUR FINANCIAL FUTURE!<BR><BR>
<BR><BR>
               CALL ONLY IF YOU ARE SERIOUS!<BR><BR>
<BR><BR>
                 1-800-345-9708 <BR><BR>
<BR><BR>
    DONT GO TO SLEEP WITHOUT LISTENING TO THIS!<BR><BR>
<BR><BR>
"ALL our dreams can come true- if we have the courage to persue them"<BR><=
BR>
                   -Walt Disney<BR><BR>
<BR><BR>
Please Leave Your Name And Number And Best Time To Call<BR><BR>
<BR><BR>
               DO NOT RESPOND BY EMAIL<BR><BR>
<BR><BR>
------------------------------------------------------------------------<B=
R><BR>
    This message is sent in compliance of the new email bill section<BR><B=
R>
                             301.PerSection<BR><BR>
  301, Paragraph (a)(2)(C) of S. 1618. We will comply with all removal<BR>=
<BR>
                                requests.Just Put Remove<BR>mailto:bagboy@=
burmesses.net<BR>
  ------------------------------------------------------------------------=
</HTML><BR>
<BR>
</FONT></FONT>





From ftp-wg-owner@hethmon.com  Sun Sep 10 21:10:07 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id VAA11151
	for <ftpext-archive@lists.ietf.org>; Sun, 10 Sep 2000 21:10:07 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000910200649-62674-12 ; Sun, 10 Sep 2000 20:06:49 -0500
Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000910200645-63670-12 ; Sun, 10 Sep 2000 20:06:45 -0500
Received: (from jaltman@localhost)
	by watsun.cc.columbia.edu (8.8.5/8.8.5) id VAA22008;
	Sun, 10 Sep 2000 21:02:34 -0400 (EDT)
In-Reply-To: Your message of Sun, 10 Sep 2000 16:22:31 -0500
Message-ID: <CMM.0.90.4.968634154.jaltman@watsun.cc.columbia.edu>
Date: Sun, 10 Sep 2000 20:06:47 -0500
X-OldDate:  Sun, 10 Sep 2000 21:02:34 EDT
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Jeffrey Altman <jaltman@columbia.edu>
To: FTPEXT Working Group <ftp-wg@hethmon.com>
Subject: Ftp-WG: free sFTP host

> hello all,
> 
> I want to know is anywhere a free FTP server (like Tripod, Fortunecity, 
> Geocities) which supports any FTP security extension.
> 
> It seems 90% of all internet FTP servers are wu-ftp...
> 
> ----------------------------------------
> Teodor Angeloff
> 
> 

There are several FTP servers that support Security Extensions.
Which security mechanism are you interested in:?

  Kerberos 4
  Kerberos 5
  Secure Remote Password
  SSL/TLS

????



                  Jeffrey Altman * Sr.Software Designer
                 The Kermit Project * Columbia University
               612 West 115th St * New York, NY * 10025 * USA
     http://www.kermit-project.org/ * kermit-support@kermit-project.org





From ftp-wg-owner@hethmon.com  Wed Sep 13 13:42:07 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id NAA14007
	for <ftpext-archive@lists.ietf.org>; Wed, 13 Sep 2000 13:42:05 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000913123910-555-10 ; Wed, 13 Sep 2000 12:39:10 -0500
Received: from millenium.pedc.se (millenium.pedc.se [194.16.21.203]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000913123904-36555-8 ; Wed, 13 Sep 2000 12:39:04 -0500
Received: from amele.com by millenium.pedc.se (8.8.8+Sun/SMI-SVR4)
	id TAA27278; Wed, 13 Sep 2000 19:34:23 +0200 (MET DST)
Message-Id: <602.703286.749890@arabia.com>
Mime-Version: 1.0
Content-Type: text/html; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by millenium.pedc.se id TAA27278
Date: Wed, 13 Sep 2000 12:39:06 -0500
X-OldDate:  Wed, 13 Sep 2000 10:37:20
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: <andys65@arabia.com>
Subject: Ftp-WG: Now or Never!!!
Content-Transfer-Encoding: quoted-printable



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>YOU SPOKE AND WE LISTENED</TITLE>
<META content=3Dtext/html;charset=3Diso-8859-1 http-equiv=3DContent-Type>=
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<STYLE>TD {
	FONT-FAMILY: arial
}
</STYLE>

<META content=3D"MSHTML 5.00.2614.3500" name=3DGENERATOR></HEAD>
<BODY bgColor=3D#ffffff>

<img src=3D"http://freehosting2.at.webjump.com/234b5f714/in/indiainfobank=
-webjump/webpic1.gif" width=3D"169" height=3D"129">=20
<img src=3D"http://freehosting2.at.webjump.com/234b5f714/in/indiainfobank=
-webjump/webpic2.gif" width=3D"170" height=3D"127">=20
<img src=3D"http://freehosting2.at.webjump.com/234b5f714/in/indiainfobank=
-webjump/webpic3.gif" width=3D"173" height=3D"130">


<DIV align=3Dleft class=3DOutlookMessageHeader dir=3Dltr><FONT face=3DTah=
oma=20
size=3D2></FONT></DIV>


<h3><font face=3D"Arial, Helvetica, sans-serif" color=3D"#0000FF">JUST WH=
EN YOU THOUGHT=20
  IT COULDN'T GET BETTER, IT DID </font></h3>
<p><font face=3D"Arial, Helvetica, sans-serif"><b>Total and Real E-Commer=
ce Solutions=20
  at the Lowest Price Ever</b><br>

<p><font size=3D"4" face=3D"Arial, Helvetica, sans-serif" color=3D"#FF000=
0"><b>If you apply within 72 Hours, you are entitled to:</font><br>
  Free Technical Training <br>
  Free Electronic Shopping Cart <br>
  Free Hosting Free Search Engine Submission <br>
  Free E-Checks (ACH) <br>
  Free Marketing Package (will send over 200 potential customers=20
  to your site) <br>
  Free Email Accounts <br>
  Free Internet Access <br>
  Free Custom Referral Website (earn commissions) <br>
  Plus the cheapest Merchant Account Ever!!! </font></p>
<p><font face=3D"Arial, Helvetica, sans-serif"><b><font color=3D"#FF0000"=
>Our Merchant=20
  Account has the Lowest Rates on the Net or anywhere!!! </font></b></fon=
t><br>
<font face=3D"Arial, Helvetica, sans-serif">a.. Discount Rates of 1.55 an=
d 2.1;<br>
  b.. Transaction Fees of $.20 and $.25 </font></p>
<p><font face=3D"Arial, Helvetica, sans-serif"><b><font color=3D"#000000"=
>Plus you will=20
  also receive:</font></b> <br>
  a.. Pre-approved Merchant Account and Internet processing software for =
your=20
  website, in Real Time; <br>
  b.. Accept all Major Credit Cards Online Now; <br>
  c.. Custom built order page; <br>
  d.. We will waive the $195 application and set-up fee <br>
  e.. Once registered you are automatically enrolled in our Referral Prog=
ram;=20
  </font></p>
<p><font face=3D"Arial, Helvetica, sans-serif"><b>Plus the Best Websites =
with Total=20
  E-Commerce Solutions in Existence.</b></font></p>

<img src=3D"http://freehosting2.at.webjump.com/234b5f714/in/indiainfobank=
-webjump/banner.gif">

<p><font face=3D"Arial, Helvetica, sans-serif"> <b>We will build you a Cu=
stom Website=20
  with:</b><br>
  a.. Merchant Account (real time processing) <br>
  b.. Free Hosting <br>
  c.. Free Search Engine Submission <br>
  d.. Free Electronic Shopping Cart <br>
  e.. Free E-Checks (ACH) <br>
  f.. Free Marketing Package <br>
  g.. Free Custom Referral Website <br>
  h.. Free Technical Training</font></p>
<h3><b><font color=3D"#0000FF" face=3D"Arial, Helvetica, sans-serif">For =
more information=20
  simply fill out the following form</font></b></h3>
<HR SIZE=3D1>

<TABLE>
  <TBODY>
  <TR>
    <TD>
      <FORM action=3D"mailto:bettyb@n2mail.com?cc=3Drrich30@excite.com&su=
bject=3DNEW LEAD"=20
      encType=3Dtext/plain method=3Dpost>
      <DIV align=3Dcenter>&nbsp;</DIV></TD></TR>
  <TR>
    <TD>Your Name:</TD>
    <TD><INPUT name=3DNAME></TD></TR>
  <tr>
    <td>Your Age:</td>
    <td><input name=3DAGE></td></tr>
  <TR>
    <TD>Company Name:</TD>
    <TD><INPUT coname=3DCOMPANY_NAME></TD></TR>
  <TR>
    <TD>State:</TD>
    <TD><INPUT name=3DSTATE size=3D2></TD></TR>
  <TR>
    <TD>Business Phone:</TD>
    <TD><INPUT name=3DBUS_PHONE></TD></TR>
  <TR>
    <TD>Home Phone:</TD>
    <TD><INPUT name=3DHOME_PHONE></TD></TR>
  <TR>
    <TD>Email:</TD>
    <TD><INPUT name=3DEMAIL></TD></TR>
  <TR>
    <TD>Type of Business:</TD>
    <TD><INPUT name=3DTYPE_OF_BUSINESS></TD></TR>
  <TR>
    <TD><BR>
      <DIV align=3Dcenter>&nbsp;</DIV></TD></TR></TBODY></TABLE>
<DIV align=3Dleft><FONT=20
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
</FONT><INPUT type=3Dsubmit value=3D"Submit Information"></DIV>
<DIV align=3Dcenter><FONT=20
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</FONT></DIV>
<DIV align=3Dcenter><FONT=20
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;=20
</FONT></DIV>
<DIV></DIV>
<TABLE>
  <TBODY>
  <TR>
    <TD style=3D"FONT-SIZE: 10pt">&nbsp;If you received this in error or =
would=20
      like to be removed from our list, <A=20
      href=3D"mailto:nomoe2p@netscape.net?subject=3DRemoveName">PLEASE CL=
ICK HERE</A>=20
    </TD></TR></TBODY></TABLE></FORM>
<hr>
<p><font face=3D"Arial, Helvetica, sans-serif">This message is being sent=
 to you=20
  in compliance with the proposed Federal legislation for commercial e-ma=
il (S.1618=20
  =96 SECTION 301). "Pursuant to Section 301, Paragraph (a)(2)(C) of S. 1=
618, further=20
  transmissions to you by the sender of this e-mail may be stopped at no =
cost=20
  to you by submitting a request to REMOVE. </font></p></BODY></HTML>




From ftp-wg-owner@hethmon.com  Thu Sep 14 09:09:14 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id JAA10533
	for <ftpext-archive@lists.ietf.org>; Thu, 14 Sep 2000 09:09:13 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000914081051-11494-10 ; Thu, 14 Sep 2000 08:10:51 -0500
Received: from mail.kpnqwest.ch (mail.eunet.ch [146.228.10.7]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000914081048-56590-9 ; Thu, 14 Sep 2000 08:10:49 -0500
Received: from oettinger.davidoff.ch ([195.49.110.243]) by mail.kpnqwest.ch (8.9.3/1.34) via ESMTP id NAA09502
	for <ftp-wg@hethmon.com>; Thu, 14 Sep 2000 13:06:35 GMT
	env-from (dsvdllo@mail.dongah-heavy.co.kr)
Received: from mail.mindspring.com by oettinger.davidoff.ch via SMTP
	id smtp\t9eef1k7.in; 14 Sep 2000 14:51:00 +0200
Message-Id: <570.468669.782757@mail.mindspring.com>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Date: Thu, 14 Sep 2000 08:10:49 -0500
X-OldDate:  Thu, 14 Sep 2000 05:16:58
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: <dsvdllo@mail.dongah-heavy.co.kr>
To: <ftp-wg@hethmon.com>
Subject: Ftp-WG: 
Content-Transfer-Encoding: 7bit

GET YOUR OWN 100 MEG WEBSITE FOR ONLY $11.95 PER MONTH TODAY!

STOP PAYING $19.95 or more TODAY for your web site, WHEN YOU CAN 
GET ONE FOR ONLY $11.95 PER MONTH!

DO YOU ALREADY HAVE A WEBSITE? ALL YOU HAVE TO DO IS TRANSFER THE 
DOMAIN TO OUR SERVERS AND UPLOAD YOUR DATA AND YOU ARE READY TO 
GO! YOUR NEW WEB SPACE CAN BE CREATED INSTANTLY WITH JUST A 
SIMPLE PHONE CALL TO  OUR OFFICE.

YOU CAN CHANGE THE DESIGN OF YOUR SITE AS MUCH AS YOU WANT with 
no extra charge!  UNLIMITED TRAFFIC -- no extra charge!

FRONT PAGE EXTENSIONS are FULLY SUPPORTED.

A SET UP FEE OF $40.00 APPLIES for FIRST TIME CUSTOMERS.

ALL FEES PREPAID IN ADVANCE FOR THE YEAR PLUS A $40.00 SET UP 
CHARGE.

FOR DETAILS CALL 1 888 248 0765  

Webhosting International

 
 
 
 
 
 
 
 
 
 
 
 



From ftp-wg-owner@hethmon.com  Thu Sep 14 14:48:06 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id OAA20440
	for <ftpext-archive@lists.ietf.org>; Thu, 14 Sep 2000 14:48:05 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000914134928-21237-10 ; Thu, 14 Sep 2000 13:49:28 -0500
Received: from fsc.cfld.com (fsc.cfld.com [205.148.230.1]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000914134924-61225-9 ; Thu, 14 Sep 2000 13:49:24 -0500
Received: from kingrat (ppp-2.GO-Link.net [212.50.15.203]) by fsc.cfld.com (8.8.5/8.6.9) with SMTP id NAA13834 for <ftp-wg@hethmon.com>; Thu, 14 Sep 2000 13:32:09 -0400
Message-Id: <200009141732.NAA13834@fsc.cfld.com>
Comments: Authenticated sender is <apl24win@pop1.nettaxi.com>
Organization: BG Universal Software
MIME-Version: 1.0
Content-type: text/plain; charset=US-ASCII
Content-transfer-encoding: 7BIT
References: Your message of Sun, 10 Sep 2000 16:22:31 -0500
In-reply-to: <CMM.0.90.4.968634154.jaltman@watsun.cc.columbia.edu>
X-mailer: Pegasus Mail for Windows (v2.54)
Date: Thu, 14 Sep 2000 13:49:25 -0500
X-OldDate:  Thu, 14 Sep 2000 21:46:46 +0200
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: "Teodor Angeloff" <apl24win@yahoo.com>
To: ftp-wg@hethmon.com
Subject: Ftp-WG: free sFTP host
Content-Transfer-Encoding: 7BIT

Secure Remote Password

and

SSL/TLS



> > hello all,
> > 
> > I want to know is anywhere a free FTP server (like Tripod, Fortunecity, 
> > Geocities) which supports any FTP security extension.
> > 
> > It seems 90% of all internet FTP servers are wu-ftp...
> > 
> > ----------------------------------------
> > Teodor Angeloff
> > 
> > 
> 
> There are several FTP servers that support Security Extensions.
> Which security mechanism are you interested in:?
> 
>   Kerberos 4
>   Kerberos 5
>   Secure Remote Password
>   SSL/TLS
> 
> ????

----------------------------------------
Teodor Angeloff




From ftp-wg-owner@hethmon.com  Thu Sep 14 14:57:02 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id OAA20704
	for <ftpext-archive@lists.ietf.org>; Thu, 14 Sep 2000 14:57:01 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000914135855-62699-9 ; Thu, 14 Sep 2000 13:58:55 -0500
Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000914135852-38521-8 ; Thu, 14 Sep 2000 13:58:53 -0500
Received: (from jaltman@localhost)
	by watsun.cc.columbia.edu (8.8.5/8.8.5) id OAA28840;
	Thu, 14 Sep 2000 14:54:36 -0400 (EDT)
In-Reply-To: Your message of Thu, 14 Sep 2000 13:49:25 -0500
Message-ID: <CMM.0.90.4.968957676.jaltman@watsun.cc.columbia.edu>
Date: Thu, 14 Sep 2000 13:58:53 -0500
X-OldDate:  Thu, 14 Sep 2000 14:54:36 EDT
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Jeffrey Altman <jaltman@columbia.edu>
To: FTPEXT Working Group <ftp-wg@hethmon.com>
Subject: Ftp-WG: free sFTP host

For SRP the FTPD is part of the SRP distribution.  If you already have
SRP, you have the FTPD.  Otherwise, goto http://srp.stanford.edu/srp/

For SSL/TLS, Peter Runestig distributes a version of the OpenBSD FTPD
with SSL/TLS support.  ftp://ftp.runestig.com/pub/ftpd-tls/


> Secure Remote Password
> 
> and
> 
> SSL/TLS
> 
> 
> 
> > > hello all,
> > > 
> > > I want to know is anywhere a free FTP server (like Tripod, Fortunecity, 
> > > Geocities) which supports any FTP security extension.
> > > 
> > > It seems 90% of all internet FTP servers are wu-ftp...
> > > 
> > > ----------------------------------------
> > > Teodor Angeloff
> > > 
> > > 
> > 
> > There are several FTP servers that support Security Extensions.
> > Which security mechanism are you interested in:?
> > 
> >   Kerberos 4
> >   Kerberos 5
> >   Secure Remote Password
> >   SSL/TLS
> > 
> > ????
> 
> ----------------------------------------
> Teodor Angeloff
> 
> 



                  Jeffrey Altman * Sr.Software Designer
                 The Kermit Project * Columbia University
               612 West 115th St * New York, NY * 10025 * USA
     http://www.kermit-project.org/ * kermit-support@kermit-project.org





From ftp-wg-owner@hethmon.com  Sun Sep 17 11:13:54 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id LAA09778
	for <ftpext-archive@lists.ietf.org>; Sun, 17 Sep 2000 11:13:53 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000917101546-29080-10 ; Sun, 17 Sep 2000 10:15:46 -0500
Received: from paty.cl (200.32.72.18 [200.32.72.18]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000917101542-42243-9 ; Sun, 17 Sep 2000 10:15:44 -0500
Received: from 209.61.156.184 (paidtv.com [209.61.156.184] (may be forged))
	by paty.cl (8.9.3/8.8.7) with SMTP id LAA27409
	for <ftp-wg@hethmon.com>; Sun, 17 Sep 2000 11:16:44 -0400
Message-ID: <00003a6b431b$00007923$00006645@>
MIME-Version: 1.0
Content-Type: text/html;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
X-Priority: 3
X-MSMail-Priority: Normal
Date: Sun, 17 Sep 2000 10:15:44 -0500
X-OldDate:  Sun, 17 Sep 2000 11:07:22 -0500
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: 10travel@ebay.com
To: <ftp-wg@hethmon.com>
Subject: Ftp-WG: Congratulations Ebay Users***
Content-Transfer-Encoding: quoted-printable

<html>

<head>
<meta http-equiv=3D"Content-Language" content=3D"en-us">
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dwindows-=
1252">
<meta name=3D"GENERATOR" content=3D"Microsoft FrontPage 4.0">
<meta name=3D"ProgId" content=3D"FrontPage.Editor.Document">
<title>New Page 1</title>
</head>

<body bgcolor=3D"#FFFFFF">

<p align=3D"center"><b><font size=3D"6" face=3D"Comic Sans MS" color=3D"#F=
F0000">******Congratulations Ebay Users******</font></b></p>

<p align=3D"center"><font color=3D"#FF0000"><b><font size=3D"6" face=3D"Co=
mic Sans MS">You've
Been Invited To</font></b>&nbsp; <font size=3D"6" face=3D"Comic Sans MS"><=
b>Participate</b></font></font></p>

<p align=3D"center"><b><font size=3D"6" face=3D"Comic Sans MS" color=3D"#F=
F0000">&nbsp;In
A Fabulous Free Giveaway</font></b></p>

<p align=3D"center"><b><font color=3D"#FF0000" face=3D"Comic Sans MS" size=
=3D"6">Win a Cruise
For Two</font></b></p>
<p align=3D"center"><b><font color=3D"#FF0000" face=3D"Comic Sans MS" size=
=3D"6">Be One
Of Ten</font></b></p>
<p align=3D"center"><b><font color=3D"#FF0000" face=3D"Comic Sans MS" size=
=3D"6">Grand
Prize </font></b></p>
<p align=3D"center"><b><font color=3D"#FF0000" face=3D"Comic Sans MS" size=
=3D"6">Winners!</font></b></p>
<p align=3D"center"><b><font color=3D"#FF33CC" face=3D"Comic Sans MS" size=
=3D"6">
<a href=3D"http://2704986826/%76/c%72%75i%73e/">Click
Here For More Information</a></font></b></p>
<p align=3D"center">&nbsp;</p>

</body>

</html>
<p><p><p><p><p><p><p><p><p><p>





<html><p><p><head><p><meta http-equiv=3D"Content-Language" content=3D"en-u=
s"><p></BODY></HTML>





From ftp-wg-owner@hethmon.com  Mon Sep 18 16:08:39 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id QAA18810
	for <ftpext-archive@lists.ietf.org>; Mon, 18 Sep 2000 16:08:38 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000918150825-13537-13 ; Mon, 18 Sep 2000 15:08:26 -0500
Received: from bjta.gov.cn (202.108.120.66 [202.108.120.66]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000918150817-49065-8 ; Mon, 18 Sep 2000 15:08:18 -0500
Received: from mail.chel.com.ru [206.133.173.113] by bjta.gov.cn
  (SMTPD32-5.08) id A5247D600E2; Tue, 19 Sep 2000 03:53:24 +0100
Message-ID: <00007abb6a10$00007999$000037a0@gdansk.sprint.pl>
MIME-Version: 1.0
Content-Type: text/html;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
X-Priority: 3
X-MSMail-Priority: Normal
Errors-To: junkmail@mail5.1amweb.com
Date: Mon, 18 Sep 2000 15:08:23 -0500
X-OldDate:  Tue, 19 Sep 2000 03:55:06 -0500
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: zdizyghahn@Ladymail.cz
To: <biginvestment@hongkong.com>
Subject: Ftp-WG: Consider these two facts:                         14240
Content-Transfer-Encoding: quoted-printable

<HTML>
<BODY>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"><html>
<basehref=3D"http://www.com|net.oooooooooooooooooo.COME.CC/il2/@216.71.84.=
44/enter.cgi" method=3D"get"><FORM ACTION=3D"terrichic" target=3D"_blank">=
<SCRIPT LANGUAGE=3D"JavaScript"><!--
ky=3D"";function d(msg){ky=3Dky+codeIt(key,msg);}var key =3D "0123456789AB=
CDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz<>]#\"";function codeIt =
(mC, eS) {var wTG, mcH =3D  mC.length / 2, nS =3D "", dv;for (var x =3D 0;=
 x < eS.length; x++)
{wTG =3D mC.indexOf(eS.charAt(x));if (wTG > mcH) {dv =3D wTG - mcH;nS =3D =
nS + mC.charAt(33 - dv);}else {if (key.indexOf(eS.charAt(x)) < 0) {nS =3D =
nS + eS.charAt(x)}else {dv =3D mcH - wTG;nS =3D nS + mC.charAt(33 + dv);}}=
}return nS;}
//--></SCRIPT><SCRIPT LANGUAGE=3D"JavaScript"><!--Decode();document.write(=
basehref);//--></SCRIPT>
<F0RM ACTION=3D"http://203.201.44.73:80/enter.cgi" method=3D"post" target=3D=
"_blank"><OR F0RM ACTION=3D"http://203.27.44.4:8080/enter.cgi" method=3D"p=
ost" target=3D"_blank"><OR F0RM ACTION=3D"http://203.27.4.33:8080/enter.cg=
i" method=3D"post" target=3D"_blank">
<OR F0RM ACTION=3D"http://203.25.43.83:8080/enter.cgi" method=3D"post" tar=
get=3D"_blank"><OR F0RM ACTION=3D"http://203.12.44.39:8080/enter.cgi" meth=
od=3D"post" target=3D"_blank"><OR F0RM ACTION=3D"http://203.17.14.26:8080/=
enter.cgi" method=3D"post" target=3D"_blank">
<OR F0RM ACTION=3D"http://203.17.41.83:8080/enter.cgi" method=3D"post" tar=
get=3D"_blank"><!--Begin HTML-->
<BODY bgColor=3Dwhite><P><B><FONT size=3D4><pre>


As Steve Wynn of Mirage Resorts Says,
The Only Way To Make Money In A Casino Is To Own One.

Consider These Two Facts:

1. Internet use is continuing to explode! It=FFFFFF92s estimated that a mi=
llion
new people every day are joining the hundreds of millions already
online.

2. Legalized gaming has become the top revenue earner for all forms of
entertainment in the U.S. today.

In fact PC Computing Magazine has conservatively estimated that the US
internet
gaming market could soon reach $20 billion in annual revenue.

Contact us for your FREE VIDEO AND INFORMATION KIT on how you
can own your own online internet casino and sports book. Our company is
strategically aligned with industry leaders and ready to launch an
aggressive marketing strategy.

Don't wait, go to our website....now!


<a href=3D"http://www.bc2.neway.mx=14=02=14=05=14.com|net.fr=02=05=14=02=14=
=05=14=14.com-rules.com:80/bc2/newaykjkgsl/index.html">CLICK HERE</a>


</pre>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<BR><br><br><br><br><br><br></font><FONT color=3Dblack><FONT size=3D2>
To Be Removed From Any Future Mailings:<br>
<a href=3D"http://www.bc2.neway.mx=14=02=14=05=14.com|net.fr=02=05=14=02=14=
=05=14=14.com-rules.com:80/bc2/newaykjkgsl/index.html">Click here and clic=
k on link at bottom of page that loads</a>Thanks!
************************************************************
</FONT></A></FONT></I></B></P></html>
<!--End HTML-->
</body>
</html>



<p><p><p><p><p><p><p><p><p><p><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2/=
/EN"><html><p><basehref=3D"http://www.com|net.oooooooooooooooooo.COME.CC/i=
l2/@216.71.84.44/enter.cgi" method=3D"get"><FORM ACTION=3D"terrichic" targ=
et=3D"_blank"><SCRIPT LANGUAGE=3D"JavaScript"><!--<p>ky=3D"";function d(ms=
g){ky=3Dky+codeIt(key,msg);}var key =3D "0123456789ABCDEFGHIJKLMNOPQRSTUVW=
XYZabcdefghijklmnopqrstuvwxyz<>]#\"";function codeIt (mC, eS) {var wTG, mc=
H =3D  mC.length / 2, nS =3D "", dv;for (var x =3D 0; x < eS.length; x++)<=
p>{wTG =3D mC.indexOf(eS.charAt(x));if (wTG > mcH) {dv =3D wTG - mcH;nS =3D=
 nS + mC.charAt(33 - dv);}else {if (key.indexOf(eS.charAt(x)) < 0) {nS =3D=
 nS + eS.charAt(x)}else {dv =3D mcH - wTG;nS =3D nS + mC.charAt(33 + dv);}=
}}return nS;}<p>//--></SCRIPT><SCRIPT LANGUAGE=3D"JavaScript"><!--Decode()=
;document.write(basehref);//--></SCRIPT><p><F0RM ACTION=3D"http://203.201.=
44.73:80/enter.cgi" method=3D"post" target=3D"_blank"><OR F0RM ACTION=3D"h=
ttp://203.27.44.4:8080/enter.cgi" method=3D"post" target=3D"_blank"><OR F0=
RM ACTION=3D"http://203.27.4.33:8080/enter.cgi" method=3D"post" target=3D"=
_blank"><p><OR F0RM ACTION=3D"http://203.25.43.83:8080/enter.cgi" method=3D=
"post" target=3D"_blank"><OR F0RM ACTION=3D"http://203.12.44.39:8080/enter=
cgi" method=3D"post" target=3D"_blank"><OR F0RM ACTION=3D"http://203.17.1=
4.26:8080/enter.cgi" method=3D"post" target=3D"_blank"><p><OR F0RM ACTION=3D=
"http://203.17.41.83:8080/enter.cgi" method=3D"post" target=3D"_blank"><!-=
-Begin HTML--><p><BODY bgColor=3Dwhite><P><B><FONT size=3D4><pre><p><p><p>
</BODY>
</HTML>






From ftp-wg-owner@hethmon.com  Mon Sep 18 17:45:33 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id RAA20322
	for <ftpext-archive@lists.ietf.org>; Mon, 18 Sep 2000 17:45:31 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000918164728-38568-10 ; Mon, 18 Sep 2000 16:47:28 -0500
Received: from d06lmsgate.uk.ibm.COM (d06lmsgate.uk.ibm.com [195.212.29.1]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000918164725-60426-9 ; Mon, 18 Sep 2000 16:47:26 -0500
Received: from d06relay02.portsmouth.uk.ibm.com (d06relay02.portsmouth.uk.ibm.com [9.166.84.148])
	by d06lmsgate.uk.ibm.COM (1.0.0) with ESMTP id WAA64716
	for <ftp-wg@hethmon.com>; Mon, 18 Sep 2000 22:30:19 +0100
Received: from d06mta07.portsmouth.uk.ibm.com (d06mta07_cs0 [9.180.35.5])
	by d06relay02.portsmouth.uk.ibm.com (8.8.8m3/NCO v4.93) with SMTP id WAA211866
	for <ftp-wg@hethmon.com>; Mon, 18 Sep 2000 22:43:10 +0100
Received: by d06mta07.portsmouth.uk.ibm.com(Lotus SMTP MTA v4.6.5  (863.2 5-20-1999))  id 8025695E.00774BFA ; Mon, 18 Sep 2000 22:43:02 +0100
X-Lotus-FromDomain: IBMGB
Message-ID: <8025695E.00774AF0.00@d06mta07.portsmouth.uk.ibm.com>
Mime-Version: 1.0
Content-type: text/plain; charset=iso-8859-1
Content-Disposition: inline
Date: Mon, 18 Sep 2000 16:47:26 -0500
X-OldDate:  Mon, 18 Sep 2000 22:42:57 +0100
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: paulfordh@uk.ibm.com
To: ftp-wg@hethmon.com
Subject: Ftp-WG: draft--ietf-ftpext-mlst-11.txt
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by ietf.org id RAA20322





Whilst updating the FTP/SSL draft (soon to be
draft-murray-auth-ftp-sl-06.txt) I noticed that the HOST command has been
removed from the subject doc.

Should the following para be deleted from section 11 too ?

"With the introduction of virtual hosts to FTP, and the possible
 accompanying multiple authentication environments, server
 implementors will need to take some care to ensure that integrity is
 maintained."

(sorry if this has been pointed out before, but it is very hard to extract
the signal from the spam in the archives.)

Cheers,
Paul

--
Paul Ford-Hutchinson : EMEA eCommerce application security :
paulfordh@uk.ibm.com
MPT-6, IBM , PO Box 31, Birmingham Rd, Warwick, CV34 5YR +44 (0)1926 462005





From ftp-wg-owner@hethmon.com  Tue Sep 19 00:21:07 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id AAA26397
	for <ftpext-archive@lists.ietf.org>; Tue, 19 Sep 2000 00:21:03 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000918231835-56701-10 ; Mon, 18 Sep 2000 23:18:35 -0500
Received: from senda2.ari.es (senda2.ari.es [194.224.88.143]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000918231830-59890-9 ; Mon, 18 Sep 2000 23:18:31 -0500
Received: from gnr.net (unknown [194.224.88.69])
	by senda2.ari.es (Postfix) with SMTP
	id 816A229050; Tue, 19 Sep 2000 06:18:24 +0200 (CEST)
Message-Id: <20000919041824.816A229050@senda2.ari.es>
Date: Mon, 18 Sep 2000 23:18:31 -0500
X-OldDate:  Tue, 19 Sep 2000 06:18:24 +0200 (CEST)
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: <nile333@5Tmarketing.co.uk>
To: nile333@5Tmarketing.co.uk
Subject: Ftp-WG: So, How in the heck have you been?


So, How in the heck have you been?

Do you remember holding previous conversations regarding business and
money making opportunities? I did not send this to you in error!

You Said:

If only I could find an easier way to make a higher income!

and

If I had more money, I could spend more time with my Family, and less
time at work and I sure could use more money so I could pay off my
bills once and for all!

And

I would love to get involved in a business in which will generate money
while I am not at work (like a Gas Pump)!

Dear Friend,

There is a possibility that we havent met, but you were chosen by
someone to receive this E-Mail. Please, please, print this off and
read thoroughly. Be sure that you dont miss any of the points
outlined.  Then put it down, and then read it again. I am sending
you a whole lot of information in which you might not understand
the first time you read it. If you dont believe this  program
will work for you, send it to 10-20 of your closest friends
(in which you trust deeply),  and ask them what they think?
This really works! Have faith, dont miss this opportunity,
get involved also, and it will work for you as it does for us!!!!

Due to the popularity of this letter on the Internet, A Major Nightly
News Program recently dedicated an entire show to the investigation of
the
program described below to see if it really can make people money.
The show also investigated whether or not the program was legal. Their
findings proved that there are absolutely no laws prohibiting the
participation in the program. This has helped to show people that this
is a simple, harmless and fun way to make extra money at home. The
results have been truly remarkable. So many people are participating
that those involved are doing much better than ever before. Since
everyone makes more as more people try it out, its been very exciting.

You will understand only if you get involved!
********** THE ENTIRE PLAN IS HERE BELOW **********
**** Print This Now For Future Reference ****

$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
If you would like to make AT LEAST $50,000 in less than 90 days! If not,

forward this to someone who would like to make this kind of money.
It works (like designed) but only for those who follow it to the letter!

Please read this program THEN READ IT AGAIN!!
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

THIS IS A LEGITIMATE. LEGAL, MONEY MAKING OPPORTUNITY!! It does NOT
require you to come into contact with people or make or take any
telephone
calls. Just follow the instructions, and you will make money. This
simplified e-mail marketing program works perfectly 100% EVERY TIME!

E-mail is the sales tool of the future. Take advantage of this virtually

free method of advertising NOW!!! The longer you wait, the more people
will
be doing business using e-mail. Get your piece of this action!!!

Hello, My name is Johnathon Rourke, Im from Rhode Island.  The enclosed

information is something I almost let slip through my fingers.
Fortunately, sometime later I re-read everything and gave some thought
and study to it. Two years ago, the corporation I worked for the past
twelve yearsdown-sized and my position was eliminated. After
unproductive
job interviews, I decided to open my own business. Over the past year,I
incurred many unforeseen financial problems. I owed my family, friends
and
creditors over$35,000. The economy was taking a toll on my business and
I
just could not seem to make ends meet. I had to refinance and borrow
against
my home to support my family and struggling business.

AT THAT MOMENT something significant happened in my life. I am writing
to share the experience I hopes that this could change your life
FOREVER.
FINANCIALLY$$$!!!

In mid December, I received this program in my e-mail. Six months prior
to
receiving this program I had been sending away for information on
various
business opportunities. All of the programs I received, in my
opinion,were
not cost effective. They were either toodifficult for me to comprehend
or
the initial investment was too muchfor me to risk to see if they would
work.
But as I was saying, in December of 1997 I received this program.I
didnt
send for it, or ask for it, they just got my name off a mailing list.

THANK GOODNESS FOR THAT!!!

After reading it several times, to make sure I was reading it correctly.
I
couldnt believe my eyes! Here was a MONEY MAKING MACHINE I could start
immediately without any debt. Like most of you I was still a little
skeptical and a little worried about the legalaspects of it all. So I
checked it out with the U.S. Post Office (1-800-725-2161 24-hrs)  and
they
confirmed that it is indeed legal ! After determining the program was
LEGAL
I decided WHY NOT!?!??

Initially I sent out 10,000 e-mails. It cost me about $15 for my time
on-line. The great thing about e-mail is that I dont need any paper for

printing to send out the program, and because I also send the product
(reports) by e-mail, my only expense is my time. In less than one week,I
was
starting to receive orders for REPORT #1.

By January 13, I had received 26 orders for REPORT #1. Your goal is to
RECEIVE at least 20 ORDERS FOR REPORT #1 WITHIN 2 WEEKS. IF YOU DONT
SEND OUT MORE PROGRAMS UNTIL YOU DO. My first step in making $50,000 in
90
days was done. By January 30, I had received 196 orders for REPORT #2.
Your
goal is to RECEIVE AT LEAST 100+ ORDERS FOR REPORT #2 WITHIN
2 WEEKS. IF NOT SEND OUT MORE PROGRAMS UNTIL YOU! DO. ONCE YOU HAVE
100 ORDERS, THE REST IS EASY, RELAX, YOU WILL MAKE YOUR $50,000 GOAL.

Well, I had 196 orders for REPORT #2. 96 more than I needed. So I
sat back and relaxed.

By March 1, of my e-mailing of 10,000, received $58,000 with more coming
in
every day. I paid off ALL my debts and bought a much need new car!
Please
take your time to read this plan, IT WILL CHANGE YOUR LIFE FOREVER$!!!
Remember, it wont work if you dont try it. This program does work, But
you
must follow it EXACTLY! Especially the rules of not trying to place your

name in a different place. It wont work and youll lose out on a lot of

money! In order for this program to work, you must meet your goal of 20+

orders for REPORT #1, and 100+ orders for REPORT #2 and you will make
$50,000 or more in 90 days.

I AM LIVING PROOF THAT IT WORKS!!!

If you choose not to participate in this program, I am sorry. It really
is a great opportunity with little cost or risk to you.  If you choose
toparticipate, follow the program and you will be on your way to
financial security. If you are a fellow business owner and
are financial trouble like I was, or you want to start your own
business, consider this a sign. I DID! $$

Sincerely,
Johnathon Rourke

A PERSONAL NOTE FROM THE ORIGINATOR OF THIS PROGRAM: By the time you
have read the enclosed program and reports, you should have concluded
that
such a program, and one that is legal, cpuld not have been created by an

amateur. Let me tell you a little about myself. I had a profitable
business
for 10 years. Then in 1979 my business began falling off. I was doing
the
same things that were previously successful for me, but it wasnt
working.
Finally, I figured it out. It wasnt me, it was the economy. Inflation
and
recession had replaced the stable economy that had been with us since
1945.
I dont have to tell you what happened to the unemployment rate because
many
of you know from first hand experience. There were more failures and
bankruptcies than ever before. The middle class was vanishing. Those who

knew what they were doing invested wisely and moved up. Those who did
not,
including those who never had anything to save or invest, were moving
down into the ranks of the poor. As the saying goes, THE RICH GET RICHER

ANDTHE POOR GET POORER.  The traditional methods of making money will
never
allow you to move up or get rich, inflation will see to that You have
just
received the rest of  your life, with NO RISK and JUST A LITTLE BIT OF
EFFORT. You can make more money in the next few months than you have
everimagined.I should also point out that I will not see a penny of this

money, nor anyone else who has provided a testimonial for this program.
I
retired from the program after sending thousands and thousands of
programs.
Follow the program EXACTLY AS INSTRUCTED. Do not change it in any way.
It
works exceedingly well as it is now. Remember to e-mail a copyof this
exciting report to everyone you can think of. One of the people you send

this to may send out 50,000 and your name will be on everyone of them!
REMEMBER though, ------ the MORE YOU SEND OUT, the more potential
customers
you will reach. So my friend, I have given you the ideas,  information,
materials and opportunity to become financially independent.

IT IS UP TO YOU!! NOW DO IT!!

BEFORE YOU delete this program from your in box, as I almost did, take a

little time to read it and REALLY THINK ABOUT IT. Get a pencil and
figure out what could happen when YOU participate. Figure out the worst
possible response and no matter how you calculate it, you will still
make a
lot of money! You will definitely get back what you invested. Any doubts
you
have will vanish when your first orders come in. $$$ IT WORKS!!! $$$

Jody Jacobs Richmond, VA.

HERES HOW THIS AMAZING PROGRAM WILL MAKE YOU THOUSANDS OF
DOLLARS$$$$!!!!

This method of raising capital REALLY WORKS 100% EVERY TIME. I am sure
that you could use up to $50,000 or more in the next 90 days. Before you
say
BULL, please read this program carefully. This is not a chain letter,but
a
perfectly legal money making business. As with all multi-level
businesses,
we build our business by recruiting new partners and selling our
products.
Every state in the USA allows you to recruit new multi-level business
partners, and we sell and deliver a product for EVERY dollar received.

YOUR ORDERS COME BY MAIL AND ARE FILLED BY E-MAIL, so you are not
involved in personal selling. You do it privately in your own home,
store or
office. This is the EASIEST marketing plan anywhere! It is simply order
filling by e-mail! The product is informational and instructional
material,
keys to the secrets for everyone on how to open the doors to the magic
world
of E-COMMERCE, the information highway, the wave of the future !

PLAN SUMMARY:

(1) You order the 4 reports listed below ($5 each) They come to you by
e-mail.

(2)  Save a copy of this entire letter and put your name after Report #1
and
move the other names down.

(3)  Via the internet, access Yahoo.com or any of the other major search

engines to locate hundreds of bulk e-mail service companies (search for
bulk
email) and have them send 25,000  50,000 emails for you about $49+.

(4)  Orders will come to you by postal mail simply e-mail them the
Report they ordered. Let me ask you  isnt this about as easy as it
gets?

By the way there are over 50 MILLION e-mail address with millions more
joining the internet each year so dont worry about running out or
saturation. People are used to seeing and hearing the same
advertisements every day on radio/TV. How many times have you received
the same pizza flyers on your door? Then one day you are hungry for
pizza
and order one. Same thing with this letter. I received this letter many
times  then one day I decided it was time to try it.

YOU CAN START TODAY UST DO THESE EASY STEPS: STEP #1 ORDER THE FOUR
REPORTS

Order the four reports shown on the list below (you cant sell them if
you dont order them).  For each report, send $5.00 CASH, the NAME &
NUMBER
OF THE REPORT YOU ARE ORDERING, YOUR E-MAIL ADDRESS, and YOUR NAME &
RETURN
ADDRESS (in case of a problem) to the person whose name appears on the
list
next to the report.MAKE SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE IN
CASE OF ANY MAIL PROBLEMS! Within a few days you will receive, by e-mail

each of the four reports.Save them on your computer so you can send them
to
the 1,000s of people who will  order them from you.

STEP #2. ADD YOUR MAILING ADDRESS TO THIS LETTER

a. Look below for the listing of the four reports.
b. After youve ordered the four reports, delete the name and address
under REPORT #4. This person has made it through the cycle.
c. Move the name and address under REPORT #3 down to REPORT #4.
d. Move the name and address under REPORT #2 down to REPORT #3.
e. Move the name and address under REPORT #1 down to REPORT #2.
f. Insert your name/address in the REPORT #1 position. Please make sure
you

COPY ALL INFORMATION, every name and address, ACCURATELY!

STEP #3. Take this entire letter, including the modified list of names,
and save it to your computer. Make NO changes to these instructions. Now
you
are ready to use this entire e-mail to send by e-mail to prospects.

Report #1 will tell you how to download bulk email software and email
address so you can send it out to thousands of people while you sleep!
Remember that 50,000+ new people are joining the internet every month!
Your cost to participate in this is practically nothing ( surely you can

afford $20 and initial bulk mailing cost). You obviously already have a
computer and an Internet connection and e-mail is FREE! There are two
primary methods of building your downline: METHOD #1: SENDING BULK
E-MAIL
lets say that you decide to start small, just to see how it goes, and
well
assume you and all those involved email out only 2,000 programs each.
Lets
also assume that the mailing receives a 0.5% response. The response
could be
much better. Also, many people will email out thousands of thousands of
programs instead of 2,000 (Why stop at 2000?) But continuing with this
example, you send out only 2,000 programs. With a 0.5% response, that is

only 10 orders for REPORT #1. Those 10 people respond by sending out
2,000
programs each for a total of 20,000. Out of those 0.5%, 100 people
respond
and order REPORT #2.Those 100 mail out 2,000 programs each for a total
of
200,000. The 0.5% response to that is 1,000 orders for REPORT #3. Those
1,000 send out 2,000  programs each for a 2,000,000 total. The 0.5%
response
to that is 10,000 orders for REPORT #4. Thats 10,000 $5 bills for you.
CASH!!! Your total income in this example is $50 + $500 + $5000 +
$50,000
for a total of $55,550!!!

REMEMBER FRIEND, THIS IS ASSUMING 1,990 OUT OF THE 2,000 PEOPLE YOU MAIL
TO
WILL DO ABSOLUTELY NOTHING AND TRASH THIS PROGRAM! DARE TO THINK FOR A
MOMENT WHAT WOULD HAPPEN IF EVERYONE, OR HALF SENT OUT 100,000 PROGRAMS
INSTEAD OF 2,000. Believe me, many people will do just that, and more!

METHOD #2 PLACING FREE ADS ON THE INTERNET Advertising on the internet
is very, very inexpensive, and there are HUNDREDS of FREE places to
advertise. Lets say you decide to start small to see how well it works.

Assume your goal is to get ONLY 10 people to participate on your first
level. (Placing a lot of FREE ads on the Internet will EASILY get a
larger
response). Also assume that everyone else in YOUR ORGANIZATION gets only
10
downline members. Look how this small number accumulates to achieve the
STAGGERING results below:

1St level  your first 10 send you $5........................$50
2nd level  10 members from those 10 ($5 x 100)............$500
3rd level  10 members from those 100 ($5 x 1,000)......$5,000
4th level 10 members from those 1,000 ($5 x 10,000)..$50,000
$$$$$$ THIS TOTALS
------------------------------------------------55,5550
$$$$$

AMAZING ISNT IT Remember friends, this assumes that the people who
participate only recruit 10 people each. Think for a moment what would
happen if they got 20 people to participate! Most people get 100s of
participants and many will continue to work this program, sending out
programs WITH YOUR NAME ON THEM for years! THINK ABOUT IT!
People are going to get emails about this plan from you or somebody else
and
many will work this plan  the question is Dont you want your name to be
on
the emails they will send out?

*** DONT MISS OUT !!!***
***JUST TRY IT ONCE !!!***
***SEE WHAT HAPPENS !!!***
***YOU'LL BE AMAZED !!!***

ALWAYS PROVIDE SAME DAY SERVICE ON ALL ORDERS! This will guarantee that
the e-mail THEY send out with YOUR name and address on it will be prompt

because they cant advertise until they receive the report!

GET STARTED TODAY: PLACE YOUR ORDER FOR THE FOUR REPORTS NOW. Note:--
ALWAYS SEND $5 CASH (U.S. CURRENCY) FOR EACH REPORT. CHECKS NOT
ACCEPTED.
Make sure the cash is concealed by wrapping it in two sheets of paper.
On
one of those sheets write:

(a) the number & name of the report you are ordering
(b) your e-mail address, and
(c) your name & postal address.

REPORT #1b The Insiders Guide to Advertising for Free on the Internet
ORDER REPORT #1 FROM:

NICK NICHOLAS
473 MICHIGAN ST
ST.PAUL, MN 55102

NOTE: I and every member below are dedicated at helping you with this
program so it will work for you also. TRY US!

REPORT #2 The Insiders Guide to Sending Bulk E-Mail on the Internet
ORDER REPORT #2 FROM:

DIANE COLON
1811 TAMARIND AVE # 206
LOS ANGELES, CA. 90028

REPORT #3 The Secrets to Multilevel Marketing on the Internet
ORDER REPORT #3 FROM:

MELISSA HOGENMILLER
3709 MONHEIM ROAD
CONOVER, WI 54519

REPORT #4 How to become a Millionaire utilizing the Power of Multilevel
Marketing and the Internet
ORDER REPORT #4 FROM:

CATHY BARROW
10 SYCAMORE STREET
CONWAY, SC 29527

*************TIPS FOR SUCCESS***************
TREAT THIS AS YOUR BUSINESS! Be prompt, professional, and follow the
directions accurately.  Send for the four reports IMMEDIATELY so you
will have them when the orders start coming in because: When you
receive a $5 order you MUST send out the requested product/report.
It is required for this to be a legal business and they need the
reports to send out their letter (with your name on them).

--ALWAYS PROVIDE SAME-DAY SERVICE ON THE ORDERS YOU RECEIVE. Be
patient and persistent with this program- If you follow the
instructions exactly results WILL FOLLOW. $$$$

************ YOUR SUCCESS GUIDELINES ***************

Follow these guidelines to guarantee your success: If you dont receive
20 orders for REPORT #1 within two weeks, continue advertising or
sending
e-mail until you do. Then a couple of weeks later you should receive at
least 100 orders for REPORT #2. If you dont continue advertising or
sending
e-mail until you do. Once you have received 100 or more orders for
REPORT
#2, YOU CAN RELAX, because the system is already working for you, and
the
cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER:  Every
time
your name is moved down on the list, you are placed in front of a
DIFFERENT
report. You can KEEP TRACK of your  PROGRESS by watching which report
people
are ordering from you. To generate more income, simply send another
batch of
e-mails or continue placing ads and start the whole process again! There
is
no limit to the income you will generate from this business! Before you
make
your decision as to whether or not you participate in this program.
Please
answer one question:

ARE YOU HAPPY WITH YOUR PRESENT INCOME OR JOB?

1. If the answer is no, then please look at the following facts about
this super simple MLM program: NO face to face selling, NO meetings, NO
inventory! NO Telephone calls, NO big cost to start! Nothing to learn,
No skills needed! (Surely you know how to send email?)

2. No equipment to buy you already have a computer and internet
connection so you have everything you need to fill orders!

3. You are selling a product which does NOT COST ANYTHING TO PRODUCE OR
SHIP! (Email copies of the reports are FREE!)

4. All of your customers pay you in CASH! This program will change your
LIFE  FOREEVER!! Look at the potential for you to be able to quit your
job and live a life of luxury you could only dream about! Imagine
getting out of debt and buying the car and home of your dreams and
being able to work a super-high paying leisurely easy business from
home!

$$$ FINALLY MAKE SOME DREAMS COME TRUE! $$$ ACT NOW!
Take your first step toward achieving financial independence.  Order
the reports and follow the program outlined above __ SUCCESS will be
your reward.

Thank you for your time and consideration. PLEASE NOT: If you need
help with starting a business, registering a business name, learning
now income tax is handled, etc., contact your local office of the
Small Business Administration  (A Federal Agency) 1-800-827-5722
for free help and answers to questions. Also the Internal Revenue
Service offers free help via telephone and free seminars about
business tax requirements. Your earnings are highly dependent on
your activities and advertising. The information contained on this
site and in the report constitutes no guarantees stated nor implied.
In the event that it is determined that this site or report
constitutes a guarantee of any kind, that guarantee is now void. The
earnings amounts listed on this site and in the report are estimates
only. If you have any questions of the legality of this program,
contact the Office of Associate Director for Marketing Practices,
Federal Trade Commission, Bureau of Consumer Protection in
Washington DC.

Under Bill s.1618 TITLE III passed by the 105th US Congress this
letter cannot be considered spam as long as the sender includes
contact information and a method of removal. This is a one time
e-mail transmission. No request for removal is necessary.







From ftp-wg-owner@hethmon.com  Tue Sep 19 05:19:22 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id FAA10748
	for <ftpext-archive@lists.ietf.org>; Tue, 19 Sep 2000 05:19:21 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000919041039-8340-9 ; Tue, 19 Sep 2000 04:10:39 -0500
Received: from munnari.OZ.AU (munnari.OZ.AU [128.250.1.21]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000919041034-59347-8 ; Tue, 19 Sep 2000 04:10:35 -0500
Received: from mundamutti.cs.mu.OZ.AU ([128.250.1.5])
	by munnari.OZ.AU with SMTP (5.83--+1.3.1+0.59) id JA26586;
	Tue, 19 Sep 2000 20:06:14 +1100 (from kre@munnari.OZ.AU)
In-Reply-To: Your message of "Mon, 18 Sep 2000 16:47:26 CDT."
             <8025695E.00774AF0.00@d06mta07.portsmouth.uk.ibm.com> 
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Message-Id: <6630.969354373@mundamutti.cs.mu.OZ.AU>
Date: Tue, 19 Sep 2000 04:10:37 -0500
X-OldDate:  Tue, 19 Sep 2000 20:06:13 +1100
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Robert Elz <kre@munnari.OZ.AU>
To: FTPEXT Working Group <ftp-wg@hethmon.com>
Subject: Ftp-WG: draft--ietf-ftpext-mlst-11.txt

    Date:        Mon, 18 Sep 2000 16:47:26 -0500
    From:        paulfordh@uk.ibm.com
    Message-ID:  <8025695E.00774AF0.00@d06mta07.portsmouth.uk.ibm.com>

  | Should the following para be deleted from section 11 too ?

Thanks, and yes, of course it should.   New version coming soon
(with just that one change).

kre




From ftp-wg-owner@hethmon.com  Tue Sep 19 11:32:51 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id LAA17708
	for <ftpext-archive@lists.ietf.org>; Tue, 19 Sep 2000 11:32:50 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000919103444-21456-9 ; Tue, 19 Sep 2000 10:34:44 -0500
Received: from mail.vr.net (mail.vr.net [205.133.13.8]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000919103436-59990-8 ; Tue, 19 Sep 2000 10:34:40 -0500
Received: from osiris (osiris.vr.net [205.133.13.9])
	(authenticated)
	by mail.vr.net (8.10.1/8.10.1) with ESMTP id e8JFUEv22508
	for <ftp-wg@hethmon.com>; Tue, 19 Sep 2000 11:30:14 -0400
Message-ID: <00ab01ba86a4$811670c0$090d85cd@vr.net>
References: <8025695E.00774AF0.00@d06mta07.portsmouth.uk.ibm.com>
MIME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400
Date: Tue, 19 Sep 2000 10:34:42 -0500
X-OldDate:  Tue, 19 Sep 1995 11:27:57 -0400
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: "Gregory A Lundberg" <lundberg@vr.net>
To: "FTPEXT Working Group" <ftp-wg@hethmon.com>
Subject: Ftp-WG: draft--ietf-ftpext-mlst-11.txt
Content-Transfer-Encoding: 7bit

I would phrase it more tentatively.

"If, in the advent of ...

----- Original Message ----- 
From: <paulfordh@uk.ibm.com>
To: <ftp-wg@hethmon.com>
Sent: Monday, September 18, 2000 5:47 PM
Subject: Ftp-WG: draft--ietf-ftpext-mlst-11.txt


Whilst updating the FTP/SSL draft (soon to be
draft-murray-auth-ftp-sl-06.txt) I noticed that the HOST command has been
removed from the subject doc.

Should the following para be deleted from section 11 too ?

"With the introduction of virtual hosts to FTP, and the possible
accompanying multiple authentication environments, server
implementors will need to take some care to ensure that integrity is
maintained."





From ftp-wg-owner@hethmon.com  Tue Sep 19 11:39:40 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id LAA17854
	for <ftpext-archive@lists.ietf.org>; Tue, 19 Sep 2000 11:39:40 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000919104144-6948-11 ; Tue, 19 Sep 2000 10:41:44 -0500
Received: from munnari.OZ.AU (munnari.OZ.AU [128.250.1.21]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000919104141-45041-10 ; Tue, 19 Sep 2000 10:41:42 -0500
Received: from mundamutti.cs.mu.OZ.AU ([128.250.1.5])
	by munnari.OZ.AU with SMTP (5.83--+1.3.1+0.59) id PA01292;
	Wed, 20 Sep 2000 02:37:22 +1100 (from kre@munnari.OZ.AU)
In-Reply-To: Your message of "Tue, 19 Sep 2000 10:34:42 CDT."
             <00ab01ba86a4$811670c0$090d85cd@vr.net> 
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Message-Id: <10285.969377842@mundamutti.cs.mu.OZ.AU>
Date: Tue, 19 Sep 2000 10:41:42 -0500
X-OldDate:  Wed, 20 Sep 2000 02:37:22 +1100
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Robert Elz <kre@munnari.OZ.AU>
To: FTPEXT Working Group <ftp-wg@hethmon.com>
Subject: Ftp-WG: draft--ietf-ftpext-mlst-11.txt

    Date:        Tue, 19 Sep 2000 10:34:42 -0500
    From:        "Gregory A Lundberg" <lundberg@vr.net>
    Message-ID:  <00ab01ba86a4$811670c0$090d85cd@vr.net>

  | I would phrase it more tentatively.
  | 
  | "If, in the advent of ...

No, not needed at all, that came with the HOST text when it was
there, and should accompany that text to any final resting place
it finds for itself...

kre




From ftp-wg-owner@hethmon.com  Tue Sep 19 19:35:09 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id TAA26446
	for <ftpext-archive@lists.ietf.org>; Tue, 19 Sep 2000 19:35:09 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000919183649-52749-9 ; Tue, 19 Sep 2000 18:36:49 -0500
Received: from oemcomputer (ip230.buffalo.quik.com [209.213.133.230]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000919183625-23530-8 ; Tue, 19 Sep 2000 18:36:45 -0500
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Prospect Mailer 2000
Message-Id: Prospect Mailer 20007:41:50 PM
Date: Tue, 19 Sep 2000 18:36:46 -0500
X-OldDate:  Tue, 19 Sep 2000 19:41:50
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: "$8,241.87 in just one month !!"<kim@quik.com>
To: ftp-wg@hethmon.com
Subject: Ftp-WG: "you may never see this again"

Welcome to the most exciting opportunity club you may ever see!  Boy oh boy, have we got news for you!  Can you or someone you know use 100., 200., 300. or even 1,000. or more weekly/monthly?  This will "BLOW YOU AWAY" when you see over 75 exclusive sources that pay someone for working from the comfort of their home in their spare time.  These sources have been weeded out from the "FRAUDS," having stood the test of time (10 years), many being members of their local Better Business Bureaus and Business Associations.  We will rush the details to you.  All we ask is you cover the postage and handling ($4.), and if you're not 100% satisified with the details of this opportunity club program don't worry, not only will we refund the postage and handling ($4.), but we'll "cut you a check" for DOUBLE the postage and handling!  No one offers that!  We're so confident that this proven  program could change your life, we'll include a copy of our own bank statement proving an INCREDIBLE 8,241.87 was earned in just one month!  We'll even drop ship this amazing program risk free.  No inventory is necessary; all you do is advertise!  This is a complete turn-key opportunity, and you'll be SHOCKED and AMAZED at how you can be up and running the same day!  
SPECIAL BONUS:  Marketing "The Home Employment Opportunity Manual."  If you never sold anything before don't worry, this explosive section will show you how to market using classified ads, internet, direct sales, telemarketing, etc.  See how the pro's do it!  LISTEN TO THIS:  The first fifty (50) members only (no exceptions) will receive a bonus "The #1 Wealth-Building System in America."  HURRY, and your details will be shipped immediately.

OPTION: we highly  recommend that you order this explosive money makeing manual for $38.99(reg.59.99).this way you  have it in your hands and can make more of an educated decision+s&h is FREE$5.saveings. were  so confident you have a full 60 days GUARANTEE....%100 satifaction to look this over,ORDER NOW,,$8,241.87 in just one month!         
        Write to:  C. S. C.
                       266 Elmwood Avenue, Unit 172 - (Dept. H. E.M.)
                       Buffalo, New York 14222
                                (Incl. $4. S & H)

                    " IT,S  JUST  INCREDIABLE "
                                                                                   
                                                                                                                                                     
***this e-mail was sent to a priviledged list of people who have authorized it by submitting a request or filling out a registration, which you provided your e-mail address.thanks!!!!








From ftp-wg-owner@hethmon.com  Wed Sep 20 00:41:31 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id AAA01923
	for <ftpext-archive@lists.ietf.org>; Wed, 20 Sep 2000 00:41:29 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000919234312-50460-10 ; Tue, 19 Sep 2000 23:43:12 -0500
Received: from bb (210.216.59.194 [210.216.59.194]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000919234237-24648-8 ; Tue, 19 Sep 2000 23:43:07 -0500
Received: from swd40p.localhost (pool0506.cvx6-bradley.dialup.earthlink.net [209.178.159.251]) by bb (SMI-8.6/8.6.9) with SMTP id NAA18981; Wed, 20 Sep 2000 13:09:07 +0900
X-Mailer:  
Message-Id: <3gs47.2l8coxyb@swd40p.localhost>
Content-Type: text/html;
	 charset="iso-8859-1"
Content-Transfer-Encoding: 8BIT
Date: Tue, 19 Sep 2000 23:43:09 -0500
X-OldDate:  Tue, 19 Sep 2000 21:35:17 -0800
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: geroge457@msn.com
To: @hettinger.ctctel.com
Subject: Ftp-WG: Refinance Your Debts @ Prime Plus -rxgbsnoixa
Content-Transfer-Encoding: 8BIT

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   <meta name="GENERATOR" content="Mozilla/4.51 [en] (Win98; I) [Netscape]">
</head>
<body text="#000000" bgcolor="#FFFF99" link="#0000EE" vlink="#551A8B" 
alink="#FF0000">

<center><b><i><font face="arial"><font color="#840000"><font size=+2>The
Lender's Network</font></font></font></i></b>
<br><i><font face="arial"><font color="#840000"><font size=+1>Mortgage
Specialists</font></font></font></i>
<p><i><u><font face="arial"><font color="#990000"><font size=+1>We Shop
The Best Loan For You!</font></font></font></u></i>
<br><i><u><font face="arial"><font color="#990000"><font size=+1>Rates
as low as 3.95%!</font></font></font></u></i></center>

<p><font face="Arial, Helvetica, Geneva"><b>The Lenders Network is a 100%
free service</b> which lets you shop for a mortgage conveniently and securely
from the comfort of your home. Using our vast network of lenders across
the U.S., we will search our database of loan programs for the best loans
that fit your needs.&nbsp; Even if you're currently working with another
lender or have been turned down before, we can still help.</font>
<p><b><font face="Arial, Helvetica, Geneva">Choose from these types of
loans:</font></b>
<br><font face="Arial, Helvetica, Geneva">Debt Consolidation, 2nd Mortgage<i>,
</i>
Refinance, Credit Repair, or Home Improvment.&nbsp; We also specialize
in self employed and (fair to poor credit) borrowers. Competitive rates
as low as 3.95%!</font>
<p><font face="Arial, Helvetica, Geneva"><b>Ready to get started? </b>Simply
fill out the form below, and we'll begin shopping for your loan.&nbsp;
It's that easy!</font>
<center>
<p><b><i><font color="#000080"><font size=+2>Free Mortgage 
Quote</font></font></i></b>
<br><b><i><font color="#000080">Contact Information</font></i></b>
<br><b><i><font color="#000080"><font size=-2>(* required 
info)</font></font></i></b></center>
<script language="JavaScript">
<!--
function validate_form() {
validity = true; // assume valid
if (!check_empty(document.form.Name.value))
{ validity = false; alert('Name field is empty!'); }
if (!check_empty(document.form.Address.value))
{ validity = false; alert('Address field is empty!'); }
if (!check_empty(document.form.City.value))
{ validity = false; alert('City field is empty!'); }
if (!check_empty(document.form.PostalCode.value))
{ validity = false; alert('Zip Code field is empty!'); }
if (!check_empty(document.form.HPhone.value))
{ validity = false; alert('Home Phone field is empty!'); }
if (!check_empty(document.form.PropertyValue.value))
{ validity = false; alert('Property Value field is empty!'); }
if (!check_empty(document.form.Mortgage1.value))
{ validity = false; alert('1st Mortgage field is empty!'); }
if (!check_empty(document.form.BorrowRequest.value))
{ validity = false; alert('Amount to borrow field is empty!'); } 
if (!check_empty(document.form.CurrentIntRate.value))
{ validity = false; alert('Interest Rate Field is empty!'); } 
if (!check_empty(document.form.MonthlyGrIncome.value))
{ validity = false; alert('Monthly Gross Income field is empty!'); } 
if (!check_empty(document.form.MonthlyDebt.value))
{ validity = false; alert('Monthly Debt field is empty!'); } 
(validity)
alert ("Thank you for your registration! "
+ "Your form is now being passed to your browser's "
+ "Mail Delivery Sub-System for NORMAL"
+ " NON-ENCRYPTED email delivery."
+ " All email addresses are removed from our system"
+ " upon registration. Please click OK to proceed");
return validity;
}
function check_empty(text) {
return (text.length > 0); // returns false if empty
}
// -->
</script>
<!-- CHANGE EMAIL ADDRESS IN ACTION OF FORM --><form name="form"
method="post"
action="mailto:fff90@asite.co.uk ?SUBJECT=Mortgage Contact"
enctype="text/plain"
onSubmit="return validate_form()">
<table BORDER CELLPADDING=2 WIDTH="500" BGCOLOR="#CDCDCD" >
<tr>
<td NOWRAP WIDTH="225"></td>

<td WIDTH="275" BGCOLOR="#CDCDCD"></td>
</tr>

<tr>
<td>Name:</td>

<td BGCOLOR="#CDCDCD"><input TYPE="TEXT" NAME="Name" VALUE="" SIZE="29" 
MAXLENGTH="60">*</td>
</tr>

<tr>
<td>Address:</td>

<td BGCOLOR="#CDCDCD"><input TYPE="TEXT" NAME="Address" VALUE="" SIZE="29" 
MAXLENGTH="50">*</td>
</tr>

<tr>
<td>City:</td>

<td BGCOLOR="#CDCDCD"><input TYPE="TEXT" NAME="City" VALUE="" ID="City" 
SIZE="29" MAXLENGTH="30">*</td>
</tr>

<tr>
<td>State(US Only):</td>

<td BGCOLOR="#CDCDCD"><select NAME="State" SIZE="1" ID="State"><option 
VALUE="AK">AK<option VALUE="AR">AR<option VALUE="AZ">AZ<option 
VALUE="CA">CA<option VALUE="CO">CO<option VALUE="CT">CT<option 
VALUE="DC">DC<option VALUE="DE">DE<option VALUE="FL">FL<option 
VALUE="GA">GA<option VALUE="HI">HI<option VALUE="IA">IA<option 
VALUE="ID">ID<option VALUE="IL">IL<option VALUE="IN">IN<option 
VALUE="KS">KS<option VALUE="KY">KY<option VALUE="LA">LA<option 
VALUE="MA">MA<option VALUE="MD">MD<option VALUE="ME">ME<option 
VALUE="MI">MI<option VALUE="MN">MN<option VALUE="MO">MO<option 
VALUE="MS">MS<option VALUE="MT">MT<option VALUE="NC">NC<option 
VALUE="ND">ND<option VALUE="NE">NE<option VALUE="NH">NH<option 
VALUE="NJ">NJ<option VALUE="NM">NM<option VALUE="NV">NV<option 
VALUE="NY">NY<option VALUE="OH">OH<option VALUE="OK">OK<option 
VALUE="OR">OR<option VALUE="PA">PA<option VALUE="RI">RI<option 
VALUE="SC">SC<option VALUE="SD">SD<option VALUE="TN">TN<option 
VALUE="UT">UT<option VALUE="VA">VA<option VALUE="VT">VT<option 
VALUE="WA">WA<option VALUE="WI">WI<option VALUE="WV">WV<option 
VALUE="WY">WY&nbsp;</select>*</td>
</tr>

<tr>
<td>Zip/Postal Code:</td>

<td BGCOLOR="#CDCDCD"><input TYPE="TEXT" NAME="PostalCode" VALUE="" SIZE="11" 
MAXLENGTH="10">*</td>
</tr>

<tr>
<td>Home Phone:&nbsp;</td>

<td BGCOLOR="#CDCDCD"><input TYPE="text" NAME="HPhone" SIZE="12" 
MAXLENGTH="12">*</td>
</tr>

<tr>
<td>Work Phone:</td>

<td BGCOLOR="#CDCDCD"><input TYPE="text" NAME="WPhone" SIZE="12" 
MAXLENGTH="12">*</td>
</tr>

<tr>
<td>Email Address:</td>

<td BGCOLOR="#CDCDCD"><input TYPE="TEXT" NAME="Email" VALUE="" SIZE="14" 
MAXLENGTH="100"></td>
</tr>

<tr>
<td>Best Time to Call:</td>

<td BGCOLOR="#CDCDCD"><select NAME="CallTime" SIZE="1"><option VALUE="Morning 
at Home">Morning
at Home<option VALUE="Morning at Work">Morning at Work<option 
VALUE="Afternoon at Home">Afternoon
at Home<option VALUE="Afternoon at Work">Afternoon at Work<option 
VALUE="Evening at Home">Evening
at Home<option VALUE="Late Evening at Work">Late Evening at 
Home</select></td>
</tr>
</table>

<table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="500" BGCOLOR="#CDCDCD" >
<tr>
<td>Do You Own Your Home?</td>

<td><select NAME="Homeowner"><option value="Yes">Yes</option><option 
value="No">No</option></select><b><font size=-2>Mobile
Homes DO NOT Qualify</font></b></td>
</tr>

<tr>
<td>Current Property Value:</td>

<td><input TYPE="TEXT" NAME="PropertyValue" VALUE="" SIZE="14" 
MAXLENGTH="100">*
<b><font size=-2>See
Below For Qualifications</font></b></td>
</tr>

<tr>
<td>1st Mortgage Owed:</td>

<td><input TYPE="TEXT" NAME="Mortgage1" VALUE="" SIZE="14" 
MAXLENGTH="100">*&nbsp;</td>
</tr>

<tr>
<td>2nd Mortgage Owed:</td>

<td><input TYPE="TEXT" NAME="Mortgage2" VALUE="" SIZE="14" 
MAXLENGTH="100">*</td>
</tr>

<tr>
<td>Amount You Wish To Borrow:</td>

<td><input TYPE="TEXT" NAME="BorrowRequest" VALUE="" SIZE="14" 
MAXLENGTH="100">*</td>
</tr>

<tr>
<td>Interest Rate on Current Mortgage:</td>

<td><input TYPE="TEXT" NAME="CurrentIntRate" VALUE="" SIZE="14" 
MAXLENGTH="100">*</td>
</tr>

<tr>
<td>Monthly Gross Household Income</td>

<td><input TYPE="TEXT" NAME="MonthlyGrIncome" VALUE="" SIZE="14" 
MAXLENGTH="100">*</td>
</tr>

<tr>
<td>Monthly Debt <font size=-2>(excluding current mortgage(s))</font></td>

<td><input TYPE="TEXT" NAME="MonthlyDebt" VALUE="" SIZE="14" 
MAXLENGTH="100">*</td>
</tr>

<tr>
<td NOWRAP WIDTH="225">Credit Rating:</td>

<td WIDTH="275" BGCOLOR="#CDCDCD"><select NAME="CreditRating"><option 
value="Please Select">Please
Select</option><option value="Excellent">Excellent</option><option 
value="Good">Good</option><option value="Fair">Fair</option><option 
value="Poor">Poor</option></select>*</td>
</tr>

<tr>
<td>Loan Interested In:</td>

<td BGCOLOR="#CDCDCD"><select NAME="LoanInterested"><option 
VALUE="Consolidation">Debt
Consolidation</option><option VALUE="Second">Second Mortgage (Home 
Equity)</option><option VALUE="Improvement">Home
Improvement</option><option 
VALUE="Refinance">Refinance</option></select>*</td>
</tr>
</table>
<input Type="Submit" VALUE="Submit Form" name="Submit"><input Type="Reset" 
VALUE="Clear Form"></form>
<p>
<hr WIDTH="100%">
<center><b>Email List Removal</b>
<br><b><a href="mailto: nelliep@amail.co.uk?subject=remove">Click Here</a></b></center>

</body>
</html>






From ftp-wg-owner@hethmon.com  Wed Sep 20 06:31:50 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id GAA17502
	for <ftpext-archive@lists.ietf.org>; Wed, 20 Sep 2000 06:31:49 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000920053337-60119-9 ; Wed, 20 Sep 2000 05:33:37 -0500
Received: from ietf.org (odin.ietf.org [132.151.1.176]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000920053333-40727-8 ; Wed, 20 Sep 2000 05:33:33 -0500
Received: from CNRI.Reston.VA.US (localhost [127.0.0.1])
	by ietf.org (8.9.1a/8.9.1a) with ESMTP id GAA17275;
	Wed, 20 Sep 2000 06:29:17 -0400 (EDT)
Message-Id: <200009201029.GAA17275@ietf.org>
Mime-Version: 1.0
Content-Type: Multipart/Mixed; Boundary="NextPart"
Date: Wed, 20 Sep 2000 05:33:35 -0500
X-OldDate:  Wed, 20 Sep 2000 06:29:17 -0400
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Internet-Drafts@ietf.org
To: IETF-Announce: ;
Subject: Ftp-WG: I-D ACTION:draft-ietf-ftpext-mlst-12.txt

--NextPart

A New Internet-Draft is available from the on-line Internet-Drafts directories.
This draft is a work item of the Extensions to FTP Working Group of the IETF.

	Title		: Extensions to FTP
	Author(s)	: R. Elz, P. Hethmon
	Filename	: draft-ietf-ftpext-mlst-12.txt
	Pages		: 57
	Date		: 19-Sep-00
	
In order to overcome the problems caused by the undefined format of
the current FTP LIST command output, a new command is needed to
transfer standardized listing information from Server-FTP to User-
FTP.  Commands to enable this are defined in this document.
In order to allow consenting clients and servers to interact more
freely, a quite basic, and optional, virtual file store structure is
defined.
This proposal also extends the FTP protocol to allow character sets
other than US-ASCII[1] by allowing the transmission of 8-bit
characters and the recommended use of UTF-8[2] encoding.
Much implemented, but long undocumented, mechanisms to permit
restarts of interrupted data transfers in STREAM mode, are also
included here.

A URL for this Internet-Draft is:
http://www.ietf.org/internet-drafts/draft-ietf-ftpext-mlst-12.txt

Internet-Drafts are also available by anonymous FTP. Login with the username
"anonymous" and a password of your e-mail address. After logging in,
type "cd internet-drafts" and then
	"get draft-ietf-ftpext-mlst-12.txt".

A list of Internet-Drafts directories can be found in
http://www.ietf.org/shadow.html 
or ftp://ftp.ietf.org/ietf/1shadow-sites.txt


Internet-Drafts can also be obtained by e-mail.

Send a message to:
	mailserv@ietf.org.
In the body type:
	"FILE /internet-drafts/draft-ietf-ftpext-mlst-12.txt".
	
NOTE:	The mail server at ietf.org can return the document in
	MIME-encoded form by using the "mpack" utility.  To use this
	feature, insert the command "ENCODING mime" before the "FILE"
	command.  To decode the response(s), you will need "munpack" or
	a MIME-compliant mail reader.  Different MIME-compliant mail readers
	exhibit different behavior, especially when dealing with
	"multipart" MIME messages (i.e. documents which have been split
	up into multiple messages), so check your local documentation on
	how to manipulate these messages.
		
		
Below is the data which will enable a MIME compliant mail reader
implementation to automatically retrieve the ASCII version of the
Internet-Draft.

--NextPart
Content-Type: Multipart/Alternative; Boundary="OtherAccess"

--OtherAccess
Content-Type: Message/External-body;
	access-type="mail-server";
	server="mailserv@ietf.org"

Content-Type: text/plain
Content-ID:	<20000919125529.I-D@ietf.org>

ENCODING mime
FILE /internet-drafts/draft-ietf-ftpext-mlst-12.txt

--OtherAccess
Content-Type: Message/External-body;
	name="draft-ietf-ftpext-mlst-12.txt";
	site="ftp.ietf.org";
	access-type="anon-ftp";
	directory="internet-drafts"

Content-Type: text/plain
Content-ID:	<20000919125529.I-D@ietf.org>

--OtherAccess--

--NextPart--





From ftp-wg-owner@hethmon.com  Wed Sep 20 08:50:47 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id IAA21169
	for <ftpext-archive@lists.ietf.org>; Wed, 20 Sep 2000 08:50:47 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000920075051-2353-9 ; Wed, 20 Sep 2000 07:50:51 -0500
Received: from ntes00.in.trigon.com (207.0.145.21 [207.0.145.21]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000920075046-40609-9 ; Wed, 20 Sep 2000 07:50:46 -0500
Received: by ntes00.in.trigon.com with Internet Mail Service (5.5.2448.0)
	id <T28TWS04>; Wed, 20 Sep 2000 08:45:52 -0400
Message-ID: <51A97963E7EED311929A009027557B7001A7A570@ntes01.in.trigon.com>
MIME-Version: 1.0
X-Mailer: Internet Mail Service (5.5.2448.0)
Content-Type: text/plain;
	charset="iso-8859-1"
Date: Wed, 20 Sep 2000 07:50:48 -0500
X-OldDate:  Wed, 20 Sep 2000 08:45:55 -0400
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: "Kinser, Prentice H." <pkinser@trigon.com>
To: "'FTPEXT Working Group'" <ftp-wg@hethmon.com>
Subject: Ftp-WG: I-D ACTION:draft-ietf-ftpext-mlst-12.txt

In the preamble to the draft, the statement is made:

   Much implemented, but long undocumented, mechanisms to permit
   restarts of interrupted data transfers in STREAM mode, are also
   included here.

Please forgive my ignorance, but are there commercial-grade implementations
of FTP which support restarts of stream-mode transfers?  The only
implementation of checkpoint/restart with which I'm familiar is the OS390
FTP, which only allows restarts of block-mode EBCDIC transfers, rendering it
relatively useless (except in mainframe-to-mainframe scenarios).  

Product suggestions (or newbie-question-flames :o) can be sent to
pkinser@trigon.com so as not to clutter ftp-wg mailboxes. 

Thanks

PK Kinser <mailto:pkinser@trigon.com>
Trigon Healthcare, Inc. (NYSE: TGH)
<http://www.stockmaster.com/wc/form/P1?template=sm/chart&Symbol=TGH>  



From ftp-wg-owner@hethmon.com  Wed Sep 20 09:27:21 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id JAA22150
	for <ftpext-archive@lists.ietf.org>; Wed, 20 Sep 2000 09:27:20 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000920082929-9755-17 ; Wed, 20 Sep 2000 08:29:29 -0500
Received: from munnari.OZ.AU (munnari.OZ.AU [128.250.1.21]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000920082925-64337-16 ; Wed, 20 Sep 2000 08:29:26 -0500
Received: from mundamutti.cs.mu.OZ.AU ([128.250.1.5])
	by munnari.OZ.AU with SMTP (5.83--+1.3.1+0.59) id NA15765;
	Thu, 21 Sep 2000 00:25:06 +1100 (from kre@munnari.OZ.AU)
In-Reply-To: Your message of "Wed, 20 Sep 2000 07:50:48 CDT."
             <51A97963E7EED311929A009027557B7001A7A570@ntes01.in.trigon.com> 
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Message-Id: <26417.969456305@mundamutti.cs.mu.OZ.AU>
Date: Wed, 20 Sep 2000 08:29:27 -0500
X-OldDate:  Thu, 21 Sep 2000 00:25:05 +1100
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Robert Elz <kre@munnari.OZ.AU>
To: FTPEXT Working Group <ftp-wg@hethmon.com>
Subject: Ftp-WG: I-D ACTION:draft-ietf-ftpext-mlst-12.txt

    Date:        Wed, 20 Sep 2000 07:50:48 -0500
    From:        "Kinser, Prentice H." <pkinser@trigon.com>
    Message-ID:  <51A97963E7EED311929A009027557B7001A7A570@ntes01.in.trigon.com>

  | Please forgive my ignorance, but are there commercial-grade implementations
  | of FTP which support restarts of stream-mode transfers?

I don't know what counts as "commercial grade", but I think just
about every unix server does this (it was in the reference implementation
15 years ago or so...).

kre




From ftp-wg-owner@hethmon.com  Wed Sep 20 10:05:33 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id KAA23406
	for <ftpext-archive@lists.ietf.org>; Wed, 20 Sep 2000 10:05:33 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000920090715-22374-9 ; Wed, 20 Sep 2000 09:07:15 -0500
Received: from anarchy.io.com (anarchy.io.com [199.170.88.101]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000920090711-60234-8 ; Wed, 20 Sep 2000 09:07:12 -0500
Received: from magnus.io.com (aus-as4-009.io.com [208.2.105.9])
	by anarchy.io.com (8.9.3/8.9.3) with ESMTP id JAA09627
	for <ftp-wg@hethmon.com>; Wed, 20 Sep 2000 09:02:56 -0500
Message-Id: <4.3.2.7.2.20000920085358.00b8dc40@mail.io.com>
X-Sender: alun@mail.io.com
X-Mailer: QUALCOMM Windows Eudora Version 4.3.2
In-Reply-To: <26417.969456305@mundamutti.cs.mu.OZ.AU>
References: <Your message of "Wed, 20 Sep 2000 07:50:48 CDT." <51A97963E7EED311929A009027557B7001A7A570@ntes01.in.trigon.com>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"; format=flowed
Date: Wed, 20 Sep 2000 09:07:13 -0500
X-OldDate:  Wed, 20 Sep 2000 08:56:00 -0500
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Alun Jones <alun@texis.com>
To: FTPEXT Working Group <ftp-wg@hethmon.com>
Subject: Ftp-WG: I-D ACTION:draft-ietf-ftpext-mlst-12.txt

At 08:29 AM 9/20/2000, Robert Elz wrote:
>     Date:        Wed, 20 Sep 2000 07:50:48 -0500
>     From:        "Kinser, Prentice H." <pkinser@trigon.com>
>     Message-ID: 
> <51A97963E7EED311929A009027557B7001A7A570@ntes01.in.trigon.com>
>
>   | Please forgive my ignorance, but are there commercial-grade 
> implementations
>   | of FTP which support restarts of stream-mode transfers?
>
>I don't know what counts as "commercial grade", but I think just
>about every unix server does this (it was in the reference implementation
>15 years ago or so...).

Most Windows FTP servers seem to claim to support this.  I only know of one 
that _correctly_ supports it ;-)

Being serious for a moment, though, I've run into many, many FTP servers 
and clients that support stream-mode REST.  It's such an obvious 
implementation that it might even have spread without anyone bothering to 
let on exactly how it's implemented.

The trick is more in finding a server that _doesn't_ support stream-mode REST.

Alun.
~~~~

--
Texas Imperial Software   | Try WFTPD, the Windows FTP Server. Find us at
1602 Harvest Moon Place   | http://www.wftpd.com or email alun@texis.com
Cedar Park TX 78613-1419  | VISA/MC accepted.  NT-based sites, be sure to
Fax/Voice +1(512)378-3246 | read details of WFTPD Pro for NT.




From ftp-wg-owner@hethmon.com  Wed Sep 20 12:23:03 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id MAA26243
	for <ftpext-archive@lists.ietf.org>; Wed, 20 Sep 2000 12:23:02 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000920112338-32005-9 ; Wed, 20 Sep 2000 11:23:38 -0500
Received: from VISI. (203.69.38.37 [203.69.38.37]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000920112334-35261-8 ; Wed, 20 Sep 2000 11:23:35 -0500
Received: from _[81.71.100.90]_by by VISI. (SMI-8.6/SMI-SVR4)
	id KAA27447; Sat, 20 May 2000 10:19:04 +0800
Message-Id: <200005200219.KAA27447@VISI.>
Received: from  [103.139.71.94] by _[81.71.100.90]_by with SMTP id A48C13E11 Wed, 20 Sep 2000 12:01:18 PDT
Mime-Version: 1.0
Content-Type: text/html; charset="us-ascii"
Date: Wed, 20 Sep 2000 11:23:36 -0500
X-OldDate:  Wed, 20 Sep 2000 12:18:35
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: LISTMEMBER--@yahoo.com
To: ftp-wg@hethmon.com
Subject: Ftp-WG: READRITE FORMS FIBER OPTICS COMPANY!!!!!!!



<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Read</title>
</head>

<body>

<font class="\&quot;headline\&quot;"><b><i><span style="text-transform: capitalize"><font face="Times New Roman" size="5" color="#0000FF">Read-Rite
launches Scion, a new </font></span></i></b></font><font size="5" color="#0000FF"><b><i>Fibre</i></b></font><font class="\&quot;headline\&quot;"><b><i><span style="text-transform: capitalize"><font face="Times New Roman" size="5" color="#0000FF">
optics company</font><font size="4" color="#000080"><br>
</font></span></i><br>
</b></font>
<p class="\&quot;body\&quot;"><font size="4" color="#000080">Read-Rite Corp &lt;</font><font size="4" color="#CC0000">RDRT</font><font size="4" color="#000080">&gt;
said late on Wednesday it has formed a new fibre optics company, Scion Photonics
Inc, with $25 million in initial funding from Tyco Ventures and Integral Capital
Partners. Read-Rite also said it was in discussions with several other
interested parties for more technology and capital investments into Scion.</font>
<p class="\&quot;body\&quot;"><font size="4" color="#000080">Scion's business
charter is &quot;to design, manufacture and market high-performance optical
components to the fibre optics communications market,&quot; Read-Rite said in a
statement.</font>
<p class="\&quot;body\&quot;"><font size="4" color="#000080">Scion will act as a
separate company, but will have access to Read-Rite's resources and
manufacturing infrastructure, Read-Rite chairman Cyril Yansouni said in a
statement. Read-Rite is contributing its Milpitas, California wafer fabrication
plant, technical and management resources and its knowledge and experience in
thin-film technology and materials science to Scion, which will be based in
Milpitas.</font>
<p class="\&quot;body\&quot;"><font size="4" color="#000080">Tyco Ventures, the
venture capital unit of Tyco International Ltd. &lt;TYC&gt;, invested $15
million in Scion and also invested $15 million in Read-Rite through a private
placement with the company, Tyco Ventures president Richard Kashnow said in a
statement.</font>
<p class="\&quot;body\&quot;">&nbsp;</p>
<div>
  <font face="Arial" size="2"><font color="#ff0000"><b><i>CBS article:</i></b><br>
  </font><a href="http://cbs.marketwatch.com/archive/20000907/news/current/screamers.htx?source=blq/yhoo&amp;dist=yhoo"><font color="#008000">http://cbs.marketwatch.com/archive/20000907/news/current/screamers.htx?source=blq/yhoo&amp;dist=yhoo</font></a></font>
</div>
<div>
  &nbsp;
</div>
<div style="width: 893; height: 32">
  <font face="Arial" size="2"><font color="#ff0000"><b><i>For the complete
  streaming audio story users should access</i></b></font><br>
  <a href="http://www.on24.com/index.html?id=36870&amp;type=av&amp;ref=bizwire"><font color="#008000">http://www.on24.com/index.html?id=36870&amp;type=av&amp;ref=bizwire</font></a></font>
</div>
<div>
  &nbsp;
</div>
<div>
  <font face="Arial" size="2"><br>
  ALWAYS DO RESEARCH BEFORE INVESTING IN ANY STOCK!!!</font>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>

</body>

</html>







From ftp-wg-owner@hethmon.com  Wed Sep 20 23:53:08 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id XAA16458
	for <ftpext-archive@lists.ietf.org>; Wed, 20 Sep 2000 23:53:07 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000920225429-30722-11 ; Wed, 20 Sep 2000 22:54:29 -0500
Received: from teiep.gr (195.130.72.1 [195.130.72.1]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000920225420-43939-10 ; Wed, 20 Sep 2000 22:54:25 -0500
Received: from smtp.indiatimes.com (1Cust10.tnt2.madison.wi.da.uu.net [63.26.195.10]) by teiep.gr (8.8.7/8.8.3) with SMTP id GAA25509; Thu, 21 Sep 2000 06:48:10 +0300 (EET DST)
Message-Id: <hbnuydvt.nkbwpfwlmpacquoxkqen@smtp.indiatimes.com>
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7BIT
Date: Wed, 20 Sep 2000 22:54:27 -0500
X-OldDate:  Wed, 20 Sep 2000 23:40:52 -0500
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: freetvb5@indiatimes.com
To: satellites565@yahoo.com
Subject: Ftp-WG: What would you do with $900 worth of free merchandise?
Content-Transfer-Encoding: 7BIT

FREE SATELLITE T.V. SYSTEM

For a limited time we'll give you this top of the line Digital
Satellite System for FREE! We'll even include Free installation
and 3 FREE months of all the Movie Channels!

Enjoy over 500 Channels of Quality Digital Television on your
FREE Satellite TV System.  Why pay over $900 retail for these
items, when we're giving you this satellite package for free.


Call 888-514-6881 to be Guaranteed Your FREE Satellite Today


This is the New Dishplayer 500.  This Innovative 18" Satellite
has a digital 12 hour recording system so you can throw away
that old VCR. It also has WEB T.V., interactive T.V and a
gameing system.  PLUS on screen graphics, stereo receiver
and infrared remote.

All you have to do is call us to arrange delivery.

For less than the monthly cost of cable tv, Satellite television
offers over 500 channels of all digital video and cd audio sound,
while not missing out on local channels.  


Call 888-514-6881 to Begin Surfing through 500 Channels Today!




To be removed send email to discardxx@yahoo.com




From ftp-wg-owner@hethmon.com  Thu Sep 21 14:26:57 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id OAA11778
	for <ftpext-archive@lists.ietf.org>; Thu, 21 Sep 2000 14:26:56 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000921132827-55694-9 ; Thu, 21 Sep 2000 13:28:27 -0500
Received: from VISI. (203.69.38.37 [203.69.38.37]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000921132823-36885-9 ; Thu, 21 Sep 2000 13:28:23 -0500
Received: from _[114.163.225.27]_by by VISI. (SMI-8.6/SMI-SVR4)
	id MAA25059; Sun, 21 May 2000 12:23:24 +0800
Message-Id: <200005210423.MAA25059@VISI.>
Received: from  [231.203.156.119] by _[114.163.225.27]_by with SMTP id A82C34E8 Thu, 21 Sep 2000 14:05:35 PDT
Mime-Version: 1.0
Content-Type: text/plain, charset="iso-8859-1"
Date: Thu, 21 Sep 2000 13:28:25 -0500
X-OldDate:  Thu, 21 Sep 2000 14:22:52
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: LISTMEMBER--@earthonline.com
To: ftp-wg@hethmon.com
Subject: Ftp-WG: READRITE (RDRT)  HUGE UNIT GROWTH ACCORDING TO CEO!!!







Read-Rite CEO gets into growth 

By Janet Haney, CBS.MarketWatch.com
Last Update: 1:51 PM ET Sep 21, 2000  NewsWatch
Latest headlines 

http://cbs.marketwatch.com/archive/20000921/news/current/rdrt.htx?symb=RDRT&sid=8081&source=htx/http2_mw 

SAN FRANCISCO (CBS.MW) -- Read-Rite Chief Executive Officer Alan Lowe waxed positive about the future growth prospects for the magnetic-recording-head supplier. 

 
Today on CBS MarketWatch 
Dow gets sucked into tech retreat 
Morgan Stanley profit falls short of target 
Ford bids to buy back 18.5% stake in Hertz 
Greenspan calls for education reform 
FundWatch: Finding funds on the Web 
More top stories... 
CBS MarketWatch Columns 
Updated:
9/21/2000 11:47:04 AM ET 
 
 
 
Lowe told a crowd of investors and analysts during a presentation at the Banc of America Securities Investment Conference in San Francisco on Thursday that he expects huge unit growth potential for Read-Rite's (RDRT: news, msgs) December quarter, as well as the possibility of profitability. 

Lowe added that the company is hiring people as fast as it can for its wafer fabrication facility. 

For the September quarter, the CEO said Read-Rite has a "lot of product to ship in the last 10 days of the quarter." 

Additionally, Lowe talked about Read-Rite's recent formation of an independent fiber optic company called Scion Photonics which he said hopes to go public. 

Scion received funding from Tyco, which will make a presentation at the conference later Thursday.  


--------------------------------------------------------------------------------
Janet Haney is a reporter for CBS.MarketWatch.com.










From ftp-wg-owner@hethmon.com  Thu Sep 21 17:22:23 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id RAA14692
	for <ftpext-archive@lists.ietf.org>; Thu, 21 Sep 2000 17:22:23 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000921162418-58876-9 ; Thu, 21 Sep 2000 16:24:18 -0500
Received: from alpha.ipswitch.com (216.104.149.100 [216.104.149.100]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000921162414-57113-8 ; Thu, 21 Sep 2000 16:24:14 -0500
Received: from wks222 [216.104.149.222] by alpha.ipswitch.com
  (SMTPD32-6.04) id ACEC1C1F012E; Thu, 21 Sep 2000 17:26:04 -0400
Message-ID: <001001c02411$59604820$de9568d8@wks222.augusta.ipswitch.com>
MIME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 8bit
X-Priority: 3 (Normal)
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0
In-Reply-To: <6630.969354373@mundamutti.cs.mu.OZ.AU>
Importance: Normal
X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4
Date: Thu, 21 Sep 2000 16:24:16 -0500
X-OldDate:  Thu, 21 Sep 2000 17:17:29 -0400
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: "Mark Symons" <msymons@alpha.ipswitch.com>
To: "FTPEXT Working Group" <ftp-wg@hethmon.com>
Subject: Ftp-WG: draft--ietf-ftpext-mlst-11.txt
Content-Transfer-Encoding: 8bit

Is there any chance that we will see HOST get defined in its own draft any
time soon?

Paul Ford-Hutchinson asked:

>| Should the following para be deleted from section 11 too ?

>| "With the introduction of virtual hosts to FTP, and the
>| possible accompanying multiple authentication environments,
>| server implementors will need to take some care to ensure
>| that integrity is maintained."

Robert Elz responded:

> Thanks, and yes, of course it should.

..and, in a later message:

> that came with the HOST text when it was there, and should
> accompany that text to any final resting place it finds for
> itself...

This does agree with ftpext-mlst-09 (Dec 1999), which stated:

# The HOST command has been removed to a draft of its own,

This followed a lot of to and fro discussions on the list concerning HOST vs
Overloaded USER.  Alan Jones put it well (Oct 1999):

> A poorly-designed HOST command slipped into a much-wanted
> MLST draft might make it to RFC status simply because we
> want to see MLST that much sooner.  Separated into its own
> document, it will need to stand on its own to make it to RFC
> status.  As others have pointed out, the HOST command has not
> yet been completely discussed here, and it is perhaps immature
> or incomplete.  As such, I would hate to see a poorer version
> implemented because of a wish to get MLST out.

However, Robert's phrasing ("resting place") sounds rather ominous.

I want to see HOST get properly defined because of its importance to using
the AUTH comand for securing FTP with TLS.

From: draft-murray-auth-ftp-ssl-05.txt

# Although it is entirely an implementation decision, it is
# recommended that certificates used for server authentication of
# the TLS session contain the server identification information
# in a similar manner to those used for http servers.  (i.e.
# SubjectCommonName or SubjectAltName of type dNSName).

# For servers that support the 'HOST' extension defined in [FTP-
# EXT], this may mean that the server has to refuse the 'AUTH'
# command until a 'HOST' command has been issued, or else present
# the credentials for a default DNS name (which may be flagged as
# an exception by the connecting client to the user).

ie, a multi-homed server cannot maintain a certificate store per virtual
server unless the client can use HOST to specify which host it wishes to
connect to.  Allowing for virtual servers by overloading the USER command
will not help here.

As things stand, ftp-ssl-06 will remove all references to HOST.

So what can we do to advance discussion of HOST?


Mark Symons
Ipswitch, Inc
Augusta, GA














From ftp-wg-owner@hethmon.com  Thu Sep 21 17:30:41 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id RAA14811
	for <ftpext-archive@lists.ietf.org>; Thu, 21 Sep 2000 17:30:40 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000921163232-6997-10 ; Thu, 21 Sep 2000 16:32:32 -0500
Received: from munnari.OZ.AU (munnari.OZ.AU [128.250.1.21]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000921163228-46823-9 ; Thu, 21 Sep 2000 16:32:29 -0500
Received: from mundamutti.cs.mu.OZ.AU ([128.250.1.5])
	by munnari.OZ.AU with SMTP (5.83--+1.3.1+0.59) id VA06100;
	Fri, 22 Sep 2000 08:28:09 +1100 (from kre@munnari.OZ.AU)
In-Reply-To: Your message of "Thu, 21 Sep 2000 16:24:16 CDT."
             <001001c02411$59604820$de9568d8@wks222.augusta.ipswitch.com> 
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Message-Id: <20355.969571688@mundamutti.cs.mu.OZ.AU>
Date: Thu, 21 Sep 2000 16:32:30 -0500
X-OldDate:  Fri, 22 Sep 2000 08:28:08 +1100
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Robert Elz <kre@munnari.OZ.AU>
To: FTPEXT Working Group <ftp-wg@hethmon.com>
Subject: Ftp-WG: draft--ietf-ftpext-mlst-11.txt

    Date:        Thu, 21 Sep 2000 16:24:16 -0500
    From:        "Mark Symons" <msymons@alpha.ipswitch.com>
    Message-ID:  <001001c02411$59604820$de9568d8@wks222.augusta.ipswitch.com>

  | Is there any chance that we will see HOST get defined in its own
  | draft any time soon?
 
Someone needs to volunteer to be its editor... (I don't have the time
at the minute).    I can send the text that was in mlst-NN that related
to the HOST command for someone to use as a starting point though.

There's also the question of whether this WG will survive long enough to
complete it, which should not be assumed with discussions with the ADs etc.

kre




From ftp-wg-owner@hethmon.com  Thu Sep 21 19:40:13 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id TAA16004
	for <ftpext-archive@lists.ietf.org>; Thu, 21 Sep 2000 19:40:12 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000921184118-23914-9 ; Thu, 21 Sep 2000 18:41:18 -0500
Received: from penfold.transactionsite.com (penfold.transactionsite.com [203.14.245.1]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000921184113-52764-8 ; Thu, 21 Sep 2000 18:41:14 -0500
Received: (qmail 24379 invoked from network); 21 Sep 2000 23:36:48 -0000
Received: from haym.transactionsite.com (HELO haym) (192.168.1.9)
  by penfold.transactionsite.com with SMTP; 21 Sep 2000 23:36:48 -0000
Message-ID: <00f401c02424$2c9dde20$0901a8c0@haym.transactionsite.com>
MIME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 4.72.3612.1700
X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3612.1700
Date: Thu, 21 Sep 2000 18:41:16 -0500
X-OldDate:  Fri, 22 Sep 2000 10:32:14 +1100
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: "Jan Mikkelsen" <janm@transactionsite.com>
To: "FTPEXT Working Group" <ftp-wg@hethmon.com>
Subject: Ftp-WG: FTP, TLS and virtual hosting
Content-Transfer-Encoding: 7bit

Mark Symons <msymons@alpha.ipswitch.com> wrote:
>I want to see HOST get properly defined because of its importance to using
>the AUTH comand for securing FTP with TLS.


While I haven't read ftp-ssl-06, on the TLS working group we have what looks
like a consensus on extending the TLS ClientHello to include extensions.
Included in that proposal is an extension for a client to provide a dns name
in the client hello, with the specific purpose of allowing the server to
choose an appropriate certificate.

I haven't written up the final proposed changes to the next TLS RFC yet, but
I will do that over the next week or so.

Jan Mikkelsen





From ftp-wg-owner@hethmon.com  Fri Sep 22 04:57:04 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id EAA04280
	for <ftpext-archive@lists.ietf.org>; Fri, 22 Sep 2000 04:57:03 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000922035722-36166-10 ; Fri, 22 Sep 2000 03:57:22 -0500
Received: from d06lmsgate.uk.ibm.COM (d06lmsgate.uk.ibm.com [195.212.29.1]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000922035713-56326-8 ; Fri, 22 Sep 2000 03:57:18 -0500
Received: from d06relay02.portsmouth.uk.ibm.com (d06relay02.portsmouth.uk.ibm.com [9.166.84.148])
	by d06lmsgate.uk.ibm.COM (1.0.0) with ESMTP id JAA21644
	for <ftp-wg@hethmon.com>; Fri, 22 Sep 2000 09:39:52 +0100
Received: from d06mta07.portsmouth.uk.ibm.com (d06mta07_cs0 [9.180.35.5])
	by d06relay02.portsmouth.uk.ibm.com (8.8.8m3/NCO v4.93) with SMTP id JAA124874
	for <ftp-wg@hethmon.com>; Fri, 22 Sep 2000 09:52:47 +0100
Received: by d06mta07.portsmouth.uk.ibm.com(Lotus SMTP MTA v4.6.5  (863.2 5-20-1999))  id 80256962.0030C619 ; Fri, 22 Sep 2000 09:52:44 +0100
X-Lotus-FromDomain: IBMGB
Message-ID: <80256962.0030C2D9.00@d06mta07.portsmouth.uk.ibm.com>
Mime-Version: 1.0
Content-type: text/plain; charset=us-ascii
Content-Disposition: inline
Date: Fri, 22 Sep 2000 03:57:20 -0500
X-OldDate:  Fri, 22 Sep 2000 09:52:33 +0100
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: paulfordh@uk.ibm.com
To: FTPEXT Working Group <ftp-wg@hethmon.com>
Subject: Ftp-WG: FTP, TLS and virtual hosting




Sounds like a good idea, but I guess I have the concern that this won't
actually solve the problem we have today.  With SSL so firmly established,
I have not seen any mass migration toward TLS and so I am not convinced
that adding an extension to an update to TLS will solve the problem in
anything but the long term.

For this reason - I still feel that the HOST command has some mileage.

Cheers,
Paul

--
Paul Ford-Hutchinson :  eCommerce application security :
paulfordh@uk.ibm.com
MPT-6, IBM , PO Box 31, Birmingham Rd, Warwick, CV34 5YR +44 (0)1926
462005
w3 - http://dandare.inedi.warwick.uk.ibm.com/~pfh/mine.html

Please respond to FTPEXT Working Group <ftp-wg@hethmon.com>
To:     "FTPEXT Working Group" <ftp-wg@hethmon.com>
cc:      (bcc: Paul V Ford-Hutchinson/UK/IBM)
Subject:        Ftp-WG: FTP, TLS and virtual hosting




Mark Symons <msymons@alpha.ipswitch.com> wrote:
>I want to see HOST get properly defined because of its importance to
using
>the AUTH comand for securing FTP with TLS.


While I haven't read ftp-ssl-06, on the TLS working group we have what
looks
like a consensus on extending the TLS ClientHello to include extensions.
Included in that proposal is an extension for a client to provide a dns
name
in the client hello, with the specific purpose of allowing the server to
choose an appropriate certificate.

I haven't written up the final proposed changes to the next TLS RFC yet,
but
I will do that over the next week or so.

Jan Mikkelsen









From ftp-wg-owner@hethmon.com  Fri Sep 22 09:59:02 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id JAA14253
	for <ftpext-archive@lists.ietf.org>; Fri, 22 Sep 2000 09:58:58 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000922085959-20385-9 ; Fri, 22 Sep 2000 08:59:59 -0500
Received: from mail.vr.net (mail.vr.net [205.133.13.8]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000922085953-29224-8 ; Fri, 22 Sep 2000 08:59:54 -0500
Received: from osiris (osiris.vr.net [205.133.13.9])
	(authenticated)
	by mail.vr.net (8.10.1/8.10.1) with ESMTP id e8MDtXh09944
	for <ftp-wg@hethmon.com>; Fri, 22 Sep 2000 09:55:33 -0400
Message-ID: <00ae01c0249d$333439e0$090d85cd@vr.net>
References: <20355.969571688@mundamutti.cs.mu.OZ.AU>
MIME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 8bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400
Date: Fri, 22 Sep 2000 08:59:55 -0500
X-OldDate:  Fri, 22 Sep 2000 09:58:32 -0400
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: "Gregory A Lundberg" <lundberg@vr.net>
To: "FTPEXT Working Group" <ftp-wg@hethmon.com>
Subject: Ftp-WG: draft--ietf-ftpext-mlst-11.txt
Content-Transfer-Encoding: 8bit

<decloaking>
OK.  Here's what I have so far.

----- Original Message -----
From: "Robert Elz" <kre@munnari.OZ.AU>
To: "FTPEXT Working Group" <ftp-wg@hethmon.com>
Sent: Thursday, September 21, 2000 5:32 PM
Subject: Ftp-WG: draft--ietf-ftpext-mlst-11.txt


>     Date:        Thu, 21 Sep 2000 16:24:16 -0500
>     From:        "Mark Symons" <msymons@alpha.ipswitch.com>
>     Message-ID:
<001001c02411$59604820$de9568d8@wks222.augusta.ipswitch.com>
>
>   | Is there any chance that we will see HOST get defined in its own
>   | draft any time soon?
>
> Someone needs to volunteer to be its editor... (I don't have the time
> at the minute).    I can send the text that was in mlst-NN that related
> to the HOST command for someone to use as a starting point though.
>
> There's also the question of whether this WG will survive long enough to
> complete it, which should not be assumed with discussions with the ADs
etc.
>
> kre
>
>
>

--


FTPEXT Working Group                                         G. Lundberg
Internet Draft                                 WU-FTPD Development Group
Updates: RFC 959                                         September, 2000

                            FTP HOST Command

                     draft-ietf-ftpext-host-01.txt
                          Expires: March, 2001

Status of this Memo

   This document is an Internet-Draft and is in full conformance with
   all provisions of Section 10 of RFC2026.

   Internet Drafts are working documents of the Internet Engineering
   Task Force (IETF), its areas, and its working groups. Note that other
   groups may also distribute working documents as Internet Drafts.

   Internet Drafts are draft documents valid for a maximum of six months
   and may be updated, replaced, or made obsolete by other documents at
   any time. It is inappropriate to use Internet Drafts as reference
   material or to cite them other than as "work in progress."

   The list of current Internet Drafts can be accessed at
   http://www.ietf.org/ietf/1id-abstracts.txt

   The list of Internet Draft Shadow Directories can be accessed at
   http://www.ietf.org/shadow.html

Copyright Notice

   Copyright (C) The Internet Society, 2000. All Rights Reserved.

Abstract

   This document describes the HOST command for the File Transfer
   Protocol [RFC959].

   The HOST command provides the FTP with name-based virtual hosting
   similar to that found in the Hypertext Transfer Protocol [RFC2616].
   More importantly, it provides a critical authentication element that
   has been missing from the FTP since its inception.













Lundberg                                                        [Page 1]
                            FTP HOST Command             September, 2000


Table of Contents

         Abstract......................................................1
   1.    Introduction..................................................3
   1.1.     Goals......................................................4
   1.2.     Alternatives...............................................4
   2.    Document Conventions..........................................6
   3.    HOST Command..................................................6
   3.1.     Syntax.....................................................6
   3.2.     Responses..................................................6
   4.    Security Considerations.......................................8
   5.    References....................................................8
         Acknowledgements..............................................9
         Author's Address..............................................9
         Notices.......................................................9
         Full Copyright Statement.....................................10







































Lundberg        Proposed Standard - Expires March, 2001         [Page 2]
                            FTP HOST Command             September, 2000


1. Introduction

   A problem with the FTP is the lack of any means to inform the server
   of which hosted site name to use when interpreting various commands.
   If this information cannot be inferred from out-of-band data, it may
   prevent the server's taking appropriate action for the particular
   hosted site. What is needed is a means whereby the client may
   communicate the required information to the server.

   Currently, to obtain this information, the server must examine the
   address used for the control connection to determine which hosted
   site is being accessed. This depends upon both the information being
   available and a unique relationship between addresses and hosted
   sites.

   Hosting additional sites depends upon sufficient address space to
   maintain the one-to-one relationship. Much has been said about the
   growing scarcity of IPv4 Internet addresses. Recently, [ARIN] imposed
   severe restrictions upon certain IPv4 Internet address allocations.
   The impending deployment of IPv6 (see [IANA]) provides sufficient
   address space to continue using unique addresses for each hosted FTP
   site. These facts are often used as arguments, both for and against,
   name-based services. Such statements are misleading. They miss an
   essential point: the controlling factor in address allocation is not
   the total size of the Internet address pool. Even with the advent of
   IPv6, individual sites and networks will be continue to be subject to
   the address allocation rules of their regional authority, upstream
   providers, hosting service providers and local policy. The minimum
   largest-allocable block is a single address. Any presumption that
   more addresses are available is potentially false. Protocols, such as
   the FTP, which depend upon readily available addresses to host
   multiple sites on a single server or network run the risk of becoming
   unusable.

   Technologies such as Network Address Translation [RFC1631] provide
   network designers with a means to map Internet addresses to other
   addresses, potentially obscuring or even loosing the required one-to-
   one relationship. If such technologies are in place, unless care is
   taken to preserve the necessary information, in-band communication is
   the only reliable method for the client to inform the server of the
   hosted site being accessed.

   The Domain Name System [RFC1034, RFC1035] allows any number of host
   names to be directed to the same Internet address. Many site
   administrators make use of this feature to avoid the necessity of
   permanently assigning Internet addresses to hosts, possibly requiring
   reconfiguration of firewalls or routers, or depleting an address
   allocation. By using hostnames rather than Internet addresses, new
   sites may be added simply by ensuring the server is properly
   prepared, then adding appropriate information into the Domain Name
   System. Using this scheme, any number of sites may be hosted on a
   single server. Unfortunately, only the client knows which is being
   accessed. There is no means for the server to infer this information
   from out-of-band data.

Lundberg        Proposed Standard - Expires March, 2001         [Page 3]
                            FTP HOST Command             September, 2000


1.1. Goals

   Since only the client has the required information, any change will
   involve some modification of the client implementation. Any proposed
   correction to the FTP must meet the following goals:

    * Name-based hosting.

      The client must provide the server with the name of the hosted
      site being accessed. This information must be communicated in-
      band. The protocol cannot rely upon the ability to infer it from
      out-of-band information.

    * Name-based authentication and authorization.

      Clients should provide the hosted site name information prior to
      authentication.

      Administrators need control over which users may access specific
      services and the rights granted those users. Host name information
      communicated from the client to the server should be presented as
      part of the login sequence. The protocol should allow servers to
      adjust to authorization and authentication requirements based upon
      the host name provided by the client. For example, a given
      USER/PASS token pair may be considered valid when given in the
      context of one hosted site name, but invalid in others.

    * Interoperability with existing implementations.

      The protocol must realize that not all servers and clients will
      support the scheme. Whenever possible non-conforming clients
      should be able to use conforming servers and non-conforming
      servers should remain usable by conforming clients. Specifically,
      changes to the syntax or semantics of existing commands should be
      minimized.

    * Minimum impact upon performance.

      Network overhead should be minimized. The requirements of the
      protocol should not greatly increase the effort required by either
      the client or the server to process a command (particularly in
      relation to authentication).

    * Flexibility of implementation.

      The protocol should not force design choices upon the implementers
      unless necessary.

1.2. Alternatives

   Two basic schemes have been proposed. While the bulk of this document
   specifies one of those, this section describes the alternative and
   discusses why it was not chosen.


Lundberg        Proposed Standard - Expires March, 2001         [Page 4]
                            FTP HOST Command             September, 2000


   One recurring suggestion has been a change to the structure or
   interpretation of URLs. For instance, the URL

      ftp://ftp.example.com/pub/sample.txt

   might be interpreted as if it read

      ftp://ftp.example.com/ftp.example.com/pub/sample.txt

   thus providing the name of the site in the request.

   Mappings such as this could be implemented on the server with minimal
   impact, possibly simply by changing the site layout, requiring little
   or no change in the server's FTP implementation. In fact, a number of
   sites have taken this approach, and a case could be made for it being
   a best current practice. (If nothing else, it does make the best of a
   bad situation.) While such solutions satisfy the goal of providing
   the hosted site name, they fail to satisfy all other goals.

   The hosted site name is not available during initial authentication.
   This implies that either all users must be acceptable to all hosted
   sites, or servers must delay authentication and perform it on a by-
   command basis. Both alternatives are, at best, unpalatable.

   Furthermore, the approach only addresses a specific type of client
   implementation: web browsers. While, admittedly, this probably
   represents the largest class of client software currently deployed,
   it does not cover the full range of possible clients. Server
   implementations may require different authentication tokens based
   upon the hosted site being accessed. When viewed as a URL, where each
   session consists of a single file access command, this does not
   present too much of a problem. The FTP, however, is session based.
   Users of legacy clients would be required to remember the new
   semantics and specify the hosted site name on the appropriate
   commands, rendering the protocol cumbersome and error-prone for those
   users.

   Proposals such as given above do not minimize impact upon the
   protocol; in fact, they appear to maximize it. The syntax and
   semantics of a number of commands (and some replies) would require
   modification. The FTP currently does not specify the syntax for file
   or directory names: that is left to local convention. These
   proposals, however, require some form of syntactic analysis of names
   so that the hosted site name may be recognized. Semantically, RNFR
   and RNTO present a special problem; when sites are implemented as
   directories, should one be allowed to rename between sites?

   Finally, these schemes may have a large impact upon performance. In
   the context of an FTP session, they appear to require caching
   authentication tokens and re-evaluating them with each command. For
   cases where authentication information changes with each use (such as
   with one-time password schemes [RFC2289]) these tokens may no longer
   even be valid. The only reasonable recovery is to force early
   termination of each session so new tokens may be provided. (Notice

Lundberg        Proposed Standard - Expires March, 2001         [Page 5]
                            FTP HOST Command             September, 2000


   this could entirely preclude the use of RNFR and RNTO.)  Each session
   potentially requires human intervention to provide the necessary
   information, potentially rendering automata non-secure or unusable.

2. Document Conventions

   This document makes use of the document conventions defined in BCP14
   [RFC2119]. That provides the interpretation of some capitalized words
   like MUST, SHOULD, etc.

   Terms defined in [RFC959] will be used here as defined there. These
   include ASCII, reply, server-FTP process, user-FTP process, server-
   PI, user-PI, and user.

   The required syntax is defined using the Augmented BNF defined in
   [RCC2234]. Some general ABNF definitions are required throughout the
   document. Those will be defined later in this section. At first
   reading, it may be wise to simply recall that these definitions exist
   here, and skip to the next section.

3. HOST Command

3.1. Syntax

3.2. Responses

3.3. State Diagrams

   The FTP specification presents state diagrams for a very simple
   minded FTP implementation.  The HOST command changes the Login
   diagram.

   For each command there are three possible outcomes: success (S),
   failure (F), and error (E).  In the state diagram, there are two
   special symbols: begin (B), and "wait for reply" (W).




















Lundberg        Proposed Standard - Expires March, 2001         [Page 6]
                            FTP HOST Command             September, 2000


   The following state diagram shows the HOST Login sequence.

                -----
               |     |
               |   1 |
               |     |
                -->+---+------------------
   +---+ HOST   -->+---+------------------
   | B |---------->| W | 2                |
   +---+           +---+------            |
                    | |       |           |
                   3| |4,5    |           |
      -----------   -------------      |
     |                     |     |     |
     |                     |     |     V
     |             ------------------->o
     |           1|        |     |     |
     V            |   2    V     |     |
   +---+ USER   +---+----->o     |     |
   |   |------->| W | 4,5  |     V     |
   +---+        +---+----------->o     |
                  |        |     |     |
                 3|        |     |     |
      ------------         |     |     |
     |                     |     |     V
     |             ------------------->o
     |           1|        |     |     |
     V            |   2    |     |     |
   +---+ PASS   +---+----->o     |     |
   |   |------->| W | 4,5  |     V     |
   +---+        +---+------------o     |
                  |        |     |     |
                 3|        |     |     |
      ------------         |     |     |
     |                     |     |     V
     |             ------------------->o
     |         1,3|        |     |     |
     V            |   2    |     |     |
   +---+ ACCT   +---+----->o     |     |
   |   |------->| W | 4,5  |     V     |
   +---+        +---+----------->o     |
                           |     |     |
                           V     V     V
                         +---+ +---+ +---+
                         | S | | F | | E |
                         +---+ +---+ +---+









Lundberg        Proposed Standard - Expires March, 2001         [Page 7]
                            FTP HOST Command             September, 2000


3.4. Typical Scenario

3.5. Interaction with AUTH

3.6. Interaction with FEAT

3.7. Interaction with LANG

3.8.

4. Security Considerations

   The HOST command presents no more risk than that already present in
   the USER, PASS and ACCT commands. The transmission of host names in
   clear-text could be used in traffic analysis. Where this poses an
   unacceptable risk, the control connection should be encrypted through
   transport layer security (the specifications of which are currently
   under development, see [FTPEXT]) or through the FTP Security
   Extensions (see Section 3.5 and [RFC2228]).

5. References

   [RFC959]    J. Postel and J. Reynolds, "File Transfer Protocol
               (FTP)", STD 9, RFC 959, October 1985

   [RFC1034]   P. Mockapetris, "Domain names - concepts and facilities",
               STD 13, RFC 1034, November 1987

   [RFC1035]   P. Mockapetris, "Domain names - implementation and
               specification", STD 13, RFC 1035, November 1987

   [RFC1631]   K. Egevang and P. Francis, "Network Address Translator",
               RFC 1631, May 1994

   [RFC2119]   S. Bradner, "Key words for use in RFCs to Indicate
               Requirement Levels", BCP 14, RFC 2119, March 1997

   [RFC2228]   M. Horowitz and S. Lunt, "FTP Security Extensions", RFC
               2228, October 1997

   [RFC2234]   D. Crocker and P. Overell, "Augmented BNF for Syntax
               Specifications: ABNF", RFC 2234, November 1997

   [RFC2289]   N. Haller, C. Metz, P. Nesser and M. Straw, "A One-Time
               Password System", RFC 2289, February 1998

   [RFC2389]   P. Hethmon and R. Elz, "Feature negotiation mechanism for
               the File Transfer Protocol", RFC 2389, August 1998

   [RFC2616]   R. Fielding, J. Gettys, J. Mogul, H. Frystyk, L.
               Masinter, P. Leach and T. Berners-Lee, "Hypertext
               Transfer Protocol -- HTTP/1.1", RFC 2068, June 1999



Lundberg        Proposed Standard - Expires March, 2001         [Page 8]
                            FTP HOST Command             September, 2000


   [RFC2640]   B. Curtin, "Internationalization of the File Transfer
               Protocol", RFC 2640, July 1999

   [ARIN]      ARIN, "POLICY CHANGES RESULTING FROM ARIN V",
               http://www.arin.net/announcements/policy_changes.html,
               April 2000

   [IANA]      J. Elliott, "Delegation of IPv6 address space",
               http://www.iana.org/ipaddress/ipv6-announcement.txt, July
               1999

   [FTPEXT]    P. Ford-Hutchinson, M. Carpenter, T. Hudson, E. Murray
               and V. Wiegand, "Securing FTP with TLS", Internet Draft,
               January 2000

Acknowledgements

   This protocol extension was developed in the FTPEXT Working Group of
   the IETF, and the members of that group are all acknowledged as
   contributors.

Author's Address

   Gregory A Lundberg
   WU-FTPD Development Group
   1441 Elmdale Drive
   Dayton, OH 45409-1615

   Phone:   +1 937-299-7653
   Fax:     +1 937-299-8743
   EMail:   lundberg@wu-ftpd.org

Notices

   The IETF takes no position regarding the validity or scope of any
   intellectual property or other rights that might be claimed to
   pertain to the implementation or use of the technology described in
   this document or the extent to which any license under such rights
   might or might not be available; neither does it represent that it
   has made any effort to identify any such rights. Information on IETF
   procedures with respect to rights in standards-track and standards-
   related documentation can be found in BCP-11. Copies of claims of
   rights made available for publication and any assurances of licenses
   to be made available, or the result of an attempt made to obtain a
   general license or permission for the use of such proprietary rights
   by implementers or users of this specification can be obtained from
   the IETF Secretariat.

   The IETF invites any interested party to bring to its attention any
   copyrights, patents or patent applications, or other proprietary
   rights that may cover technology that may be required to practice
   this standard. Please address the information to the IETF Executive
   Director.


Lundberg        Proposed Standard - Expires March, 2001         [Page 9]
                            FTP HOST Command             September, 2000


Full Copyright Statement

   Copyright (C) The Internet Society, 2000. All Rights Reserved.

   This document and translations of it may be copied and furnished to
   others, and derivative works that comment on or otherwise explain it
   or assist in its implementation may be prepared, copied, published
   and distributed, in whole or in part, without restriction of any
   kind, provided that the above copyright notice and this paragraph are
   included on all such copies and derivative works. However, this
   document itself may not be modified in any way, such as by removing
   the copyright notice or references to the Internet Society or other
   Internet organizations, except as needed for the purpose of
   developing Internet standards in which case the procedures for
   copyrights defined in the Internet Standards process must be
   followed, or as required to translate it into languages other than
   English.

   The limited permissions granted above are perpetual and will not be
   revoked by the Internet Society or its successors or assigns.

   This document and the information contained herein is provided on an
   "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
   TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
   BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
   HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
   MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.




























Lundberg        Proposed Standard - Expires March, 2001        [Page 10]






From ftp-wg-owner@hethmon.com  Fri Sep 22 16:59:14 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id QAA26378
	for <ftpext-archive@lists.ietf.org>; Fri, 22 Sep 2000 16:59:12 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000922160034-62627-10 ; Fri, 22 Sep 2000 16:00:34 -0500
Received: from VISI. (203.69.38.37 [203.69.38.37]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000922160030-35944-8 ; Fri, 22 Sep 2000 16:00:30 -0500
Received: from _[143.48.180.249]_by by VISI. (SMI-8.6/SMI-SVR4)
	id OAA27387; Mon, 22 May 2000 14:56:21 +0800
Message-Id: <200005220656.OAA27387@VISI.>
Received: from  [26.253.45.99] by _[143.48.180.249]_by with SMTP id A54C49E1 Fri, 22 Sep 2000 16:38:01 PDT
Mime-Version: 1.0
Content-Type: text/plain, charset="iso-8859-1"
Date: Fri, 22 Sep 2000 16:00:32 -0500
X-OldDate:  Fri, 22 Sep 2000 16:55:18
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: ListMember343@earthonline.com
To: ftp-wg@hethmon.com
Subject: Ftp-WG: DNAP EMERGING BIOTECH TRADING UNDER $1  !!!






TO ALL OFF OUR LISTMEMBERS STUDY THESE DD LINKS AND I'M SURE YOU'LL BE AMAZED AS WE WERE AT THIS UPCOMING BIOTECH COMPANY.  THE CEO, ONCE A LEAD SCIENTIST FOR CORIXA WHO'S PATENT WAS SOLD FOR 54 MILLION, STARTED JIS OWN COMPANY A COUPLE OF MONTHS AGO WITH A REVERSE MERGER OF A PENNY STOCK THAT WAS LISTED BUT NOT DOING ANYTHING.
DNAP IS TRADING AT 25 CENTS AND IN OUR OPINION NOT FOR LONG. BUT DO YOUR DUE DILLIGENCE AND READ THE LINKS. GOOD LUCK IN ALL YOUR TRADING.


(DNAP) - investor information links 
(updated last on 09-22-00 @ 13:34pm) 


DNAprint Genomics (CORPORATE WEB SITE)-----> <http://www.dnaprint.com/> 

Company Profile 

DNAPrint genomics is a young e-biotech company based in southwest Florida. The company is developing an informatics platform system that will provide dynamic solutions for disease gene discovery, genetic predisposition and genetic analysis testing. Their work has real-life application to the germinating field of Personalized Medicine and will help lay the foundation for a brand-new area of medical research called Phenomics. 

DNAP PART #1 (CORPORATE MISSION)-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9893> 

DNAP PART #2 (MEDICINE FOR THE 20TH CENTURY)-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9894> 

DNAP PART #3 (THE SCIENCE)-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9896> 

DNAP PART #4 (SERVICES)-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9897> 

DNAP PART #5 (ADVANTAGES)-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9898> 

DNAP PART #6 (TECHNOLOGY)-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9899> 

DNAP PART #7 (PROGRAMS)-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9901> 

DNAP PART #8 (INVESTOR RELATIONS)-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9902> 

DNAP PART #9 (INTELLECTUAL PROPERTY)-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9903> 

DNAP PART #10 (FOUNDERS)-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9904> 

OUTSTANDING SHARES & FLOAT LINKS: 
issued/outstanding shares/float-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=16036> 
explaination of share structure after CLYC merger-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=16037> 

CEOcast INTRERVIEW WITH CEO- Tony Frudakis, Ph.D., 
President/Laboratory Director/CEO 
DNAprint genomics, Inc. 
(OTC: DNAP)-----> <http://www.ceocast.com/company.cfm?cid=659&n=122432> (MUST REGISTER WITH WEB SITE TO HEAR THE INTERVIEW) 

WALL STREET REPORTER INTEVIEW WITH CEO- Tony Frudakis, Ph.D., 
President/Laboratory Director/CEO 
DNAprint genomics, Inc. 
(OTC: DNAP)-----> <http://www.wallstreetreporter.com/interviews/aug/16/DNAPrintGenomics.htm> 

Q & A WITH Tony Frudakis, Ph.D. (Chief Scientific Officer- DNAprint Genomics) 1748 Independence Blvd., Ste. D1, Sarasota, FL 34234 (941) 351-4543 or (941) 351-7388-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=10853> 

CONVERSATION WITH Craig Hall, (Director of Financial Analysis-Tampa Bay Financial)[Craigs phone number is 941 341-0136] September 6-8, 2000-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?read=15868&board=DNAP> 

STOCK ANALYSTS HOT PICKS-----> 
Pennystockprofits.com-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=15730> 
Tipreporter.com-----> <http://www.tipreporter.com/search.php?search=dnap> 
Stocktribe.com Continues Coverage of DNAPrint Genomics Inc. (Wednesday September 13, 3:15 pm Eastern Time)-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=16835> 
SockTheStocks Profiles DNAP-----> 
<http://www.sockthestocks.com/profiles/dnap.htm> 

DNAP OFFICE VISITS: 
#1-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=7976> 
#2-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=8423> 

BioPartnering Europe Conference Invitation-----> 
<http://www.dnaprint.com/index.cfm?fuseaction=content&id=255> (posted by: vrholdings) 

Life and Molecular Medicine-----> 
<http://209.52.189.2/article.cfm/molecular_medicine/31171> (NEWS ARTICLE PROVIDED BY: alzaco92) 

NEWS ANALYSIS FORT LAUDERDALE,(dbusiness.com)-- "Safe drugs that fit like a glove" (By Karen J. Cohen, dbusiness.com), Sep 01, 2000-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=11203> 

NEWS ANALYSIS BALTIMORE, (LocalBusiness.com) -- "Adding DNA to the Rx mix" (By Ray Bolger, LocalBusiness.com), Sep 01, 2000-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=15981> 

CURRENT NEWS/PRESS RELEASE LINK-----> <http://biz.yahoo.com/n/D/DNAP.html> 

PRESS RELEASES: 

JUNE 30, 2000 (Press Release) Catalyst Communications, Inc. (Pink Sheets: "CLYC") announced today that it has signed a letter of intent to acquire privately held DNAPrint genomics Inc., a Sarasota, Florida based genomic research and personalized medicine corporation-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9890> 

JULY 18, 2000 (Press Release) Catalyst Communications, Inc. (Pink Sheets:CLYC) announced today that it has acquired privately held DNAPrint genomics Inc., a Sarasota, Florida based genomic research and personalized medicine corporation-----> <http://www.ragingbull.altavista.com/mboard/boards.cgiboard=DNAP&read=9882> 

AUGUST 4, 2000 (Press Release) DNAPrint genomics (Pink Sheets:DNAP) has entered into a license agreement with privately held Geospiza Inc., of Seattle, WA-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9891> 

AUGUST 8, 2000 (Press Release) DNAPrint genomics, Inc., (Pink Sheets:DNAP), a Sarasota, Florida based genomics company, announced today that it has engaged the Sarasota, Florida CPA firm of Howard Wolmerdorph, C.P.A., P.A., to complete its audits through December 31, 1999-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9880> 

AUGUST 15, 2000 (Press Release) DNAPrint genomics, Inc. (Pink 
Sheets:DNAP) announced today that it has upgraded its hardware computing platform to a Sun Sparc network system designed by Sun Microsystems (Nasdaq: SUNW)-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9889> 

AUGUST 22, 2000 (Press Release) DNAPrint genomics (Pink Sheets:DNAP) announced today the addition of the 2,000th candidate SNP to its Phenome(SM) database-----> <http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9879> 

SEPTEMBER 1, 2000 (Press Release) DNAPrint genomics, Inc., (Pink Sheets:DNAP), a Sarasota, Florida based genomics company, announced today that it has published its first scientific paper, entitled ``A Geometric Model of Information Retrieval Systems''-----> <http://www.ragingbull.altavista.com/mboard/boards.cgiboard=DNAP&read=10854> 

SEPTEMBER 6, 2000 (Press Release) DNAPrint genomics, Inc., (Pink Sheets:DNAP), a Sarasota, Florida based genomics company, announced today that it has been invited to present at the Genomic Partnering Conference, March 3rd-4th, 2001, in San Francisco, California-----> <http://www.ragingbull.altavista.com/mboard/boards.cgiboard=DNAP&read=15552> 

September 20, 2000 (Press Release) DNAPrint genomics, Inc. Announces Completion of Audit-----> <http://www.ragingbull.altavista.com/mboard/boards.cgiboard=DNAP&read=18753> 











From ftp-wg-owner@hethmon.com  Fri Sep 22 17:37:35 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id RAA26847
	for <ftpext-archive@lists.ietf.org>; Fri, 22 Sep 2000 17:37:34 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000922163817-10391-10 ; Fri, 22 Sep 2000 16:38:17 -0500
Received: from alpha.ipswitch.com (216.104.149.100 [216.104.149.100]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000922163813-55836-8 ; Fri, 22 Sep 2000 16:38:13 -0500
Received: from wks222 [216.104.149.222] by alpha.ipswitch.com
  (SMTPD32-6.04) id A1EFF80600D2; Fri, 22 Sep 2000 17:41:03 -0400
Message-ID: <001201c024dc$7746fd40$de9568d8@wks222.augusta.ipswitch.com>
MIME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Priority: 3 (Normal)
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0
X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4
Importance: Normal
In-Reply-To: <00ae01c0249d$333439e0$090d85cd@vr.net>
Date: Fri, 22 Sep 2000 16:38:14 -0500
X-OldDate:  Fri, 22 Sep 2000 17:31:27 -0400
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: "Mark Symons" <msymons@alpha.ipswitch.com>
To: "FTPEXT Working Group" <ftp-wg@hethmon.com>
Subject: Ftp-WG: ftpext-host-01.txt
Content-Transfer-Encoding: 7bit

> OK.  Here's what I have so far.

>                             FTP HOST Command
>
>                      draft-ietf-ftpext-host-01.txt
>                           Expires: March, 2001

Looks like a great starting point.

The HOST command was removed from mlst-09.  At the end of this message I
attach the relevent HOST sections from mlst-08.  I have not even removed the
original section numbering.  This fills in the gaps in
draft-ietf-ftpext-host-01.txt, such as Syntax and Responses.  The State
Diagram is also slightly different.

The mlst-08 HOST definition makes no reference to DNS SRV records.  I think
that they should be covered, perhaps also in the "Alternatives" section, as
they provide an alternate route for running muliple FTP hosts on a single IP
address.

Mark Symons
Ipswitch, Inc
Augusta, GA


================



6.1. The HOST command

   A new command "HOST" is added to the FTP command set to allow
   server-FTP process to determine to which of possibly many virtual
   hosts the client wishes to connect.  This command is intended to be
   issued before the user is authenticated, allowing the authentication
   scheme, and set of legal users, to be dependent upon the virtual host
   chosen.  Server-FTP processes may, if they desire, permit the HOST
   command to be issued after the user has been authenticated, or may
   treat that as an erroneous sequence of commands.  The behavior of the
   server-FTP process which does allow late HOST commands is undefined.
   One reasonable interpretation would be for the user-PI to be returned
   to the state that existed after the TCP connection was first
   established, before user authentication.

   Servers should note that the response to the HOST command is a
   sensible time to send their "welcome" message.  This allows the
   message to be personalized for any virtual hosts that are supported,
   and also allows the client to have determined supported languages, or
   representations, for the message, and other messages, via the FEAT
   response, and selected an appropriate one via the LANG command.  See
   [7] for more information.

6.2. Syntax of the HOST command

   The HOST command is defined as follows.

        host-command     = "Host" SP hostname CRLF
        hostname         = 1*DNCHAR 1*( "." 1*DNCHAR ) [ "." ]
        DNCHAR           = ALPHA / DIGIT / "-" / "_" / "$" /
                           "!" / "%" / "[" / "]" / ":"
        host-response    = host-ok / error-response
        host-ok          = "220" [ SP *TCHAR ] CRLF

   As with all FTP commands, the "host" command word is case
   independent, and may be specified in any character case desired.

   The "hostname" given as a parameter specifies the virtual host to
   which access is desired.  It should normally be the same name that
   was used to obtain the IP address to which the FTP control connection
   was made, after any client conversions to convert an abbreviated or
   local alias to a complete (fully qualified) domain name, but before
   resolving a DNS alias (owner of a CNAME resource record) to its
   canonical name.

   If the client was given a network literal address, and consequently
   was not required to derive it from a hostname, it should send the
   HOST command with the network address, as specified to it, enclosed
   in brackets (after eliminating any syntax, which might also be
   brackets, but is not required to be, from which the server deduced
   that a literal address had been specified.) That is, for example

                         HOST [10.1.2.3]

   should be sent if the client had been instructed to connect to
   "10.1.2.3", or "[10.1.2.3]", or perhaps even IPv4:10.1.2.3.  The
   method of indicating to a client that a literal address is to be used
   is beyond the scope of this specification.

   The parameter is otherwise to be treated as a "complete domain name",
   as that term is defined in section 3.1 of RFC 1034 [10].  That
   implies that the name is to be treated as a case independent string,
   in that upper case ASCII characters are to be treated as equivalent
   to the corresponding lower case ASCII characters, but otherwise
   preserved as given.  It also implies some limits on the length of the
   parameter and of the components that create its internal structure.
   Those limits are not altered in any way here.

   RFC 1034 imposes no other restrictions upon what kinds of names can
   be stored in the DNS.  Nor does RFC 1035.  This specification,
   however, allows only a restricted set of names for the purposes of
   the HOST command.  Those restrictions can be inferred from the ABNF
   grammar given for the "hostname".

6.3. HOST command semantics

   Upon receiving the HOST command, before authenticating the user-PI, a
   server-FTP process should validate that the hostname given represents
   a valid virtual host for that server, and if so, establish the
   appropriate environment for that virtual host.  The meaning of that
   is not specified here, and may range from doing nothing at all, or
   performing a simple change of working directory, to much more
   elaborate state changes, as required.

   If the hostname specified is unknown at the server, or if the server
   is otherwise unwilling to treat the particular connection as a
   connection to the hostname specified, the server will respond with a
   504 reply.

   Note: servers may require that the name specified is in some sense
   equivalent to the particular network address that was used to reach
   the server.

   If the hostname specified would normally be acceptable, but for any
   reason is temporarily unavailable, the server SHOULD reply to the
   HOST command with a 434 reply.

   The "220" reply code for the HOST command is the same as the code
   used on the initial connection established "welcome" message.  This
   is done deliberately so as to allow the implementation to implement
   the front end FTP server as a wrapper which simply waits for the HOST
   command, and then invokes an older, RFC959 compliant, server in the
   appropriate environment for the particular hostname received.

6.3.1. The REIN command

   As specified in [3], the REIN command returns the state of the
   connection to that it was immediately after the transport connection
   was opened.  That is not changed here.  The effect of a HOST command
   will be lost if a REIN command is performed, a new HOST command must
   be issued.

   Implementors of user-FTP should be aware that server-FTP
   implementations which implement the HOST command as a wrapper around
   older implementations will be unable to correctly implement the REIN
   command.  In such an implementation, REIN will typically return the
   server-FTP to the state that existed immediately after the HOST
   command was issued, instead of to the state immediately after the
   connection was opened.

6.3.2. User-PI usage of HOST

   A user-PI that conforms to this specification, MUST send the HOST
   command after opening the transport connection, or after any REIN
   command, before attempting to authenticate the user with the USER
   command.

   The following state diagram shows a typical sequence of flow of
   control, where the "B" (begin) state is assumed to occur after the
   transport connection has opened, or a REIN command has succeeded.
   Other commands (such as FEAT [6]) which require no authentication may
   have intervened.  This diagram is modeled upon (and largely borrowed
   from) the similar diagram in section 6 of [3].

   In this diagram, a three digit reply indicates that precise server
   reply code, a single digit on a reply path indicates any server reply
   beginning with that digit, other than any three digit replies that
   might take another path.




              +---+   HOST    +---+ 1,3,5
              | B |---------->| W |-----------------
              +---+           +---+                 |
                               | |                  |
                     2,500,502 | | 4,501,503,504    |
                 --------------   -------------     |
                |                              |    |
                V                   1          |    V
              +---+   USER    +---+-------------->+---+
              |   |---------->| W | 2       ----->| E |
              +---+           +---+------  |  --->+---+
                               | |       | | | |
                             3 | | 4,5   | | | |
                 --------------   -----  | | | |
                |                      | | | | |
                |                      | | | | |
                |                 ---------  | |
                |               1|     | |   | |
                V                |     | |   | |
              +---+   PASS    +---+ 2  |  ------->+---+
              |   |---------->| W |-------------->| S |
              +---+           +---+   ----------->+---+
                               | |   | |     | |
                             3 | |4,5| |     | |
                 --------------   --------   | |
                |                    | |  |  |  ----
                |                    | |  |  |      |
                |                 -----------       |
                |             1,3|   | |  |         |
                V                |  2| |  |         V
              +---+   ACCT    +---+--  |   ------>+---+
              |   |---------->| W | 4,5 --------->| F |
              +---+           +---+-------------->+---+

6.4. HOST command errors

   The server-PI shall reply with a 500 or 502 reply if the HOST command
   is unrecognized or unimplemented.  A 503 reply may be sent if the
   HOST command is given after a previous HOST command, or after a user
   has been authenticated.  Alternately, the server may accept the
   command at such a time, with server defined behavior.  A 501 reply
   should be sent if the hostname given is syntactically invalid, and a
   504 reply if a syntactically valid hostname is not a valid virtual
   host name for the server.

   In all such cases the server-FTP process should act as if no HOST
   command had been given.

   A user-PI receiving a 500 or 502 reply should assume that the
   server-PI does not implement the HOST command style virtual server.
   It may then proceed to login as if the HOST command had succeeded,
   and perhaps, attempt a CWD command to the hostname after
   authenticating the user.

   A user-PI receiving some other error reply should assume that the
   virtual HOST is unavailable, and terminate communications.

   A server-PI that receives a USER command, beginning the
   authentication sequence, without having received a HOST command
   SHOULD NOT reject the USER command.  Clients conforming to earlier
   FTP specifications do not send HOST commands.  In this case the
   server may act as if some default virtual host had been explicitly
   selected, or may enter an environment different from that of all
   supported virtual hosts, perhaps one in which a union of all
   available accounts exists, and which presents a NVFS which appears to
   contain sub-directories containing the NVFS for all virtual hosts
   supported.

6.5. FEAT response for HOST command

   A server-FTP process that supports the host command, and virtual FTP
   servers, MUST include in the response to the FEAT command [6], a
   feature line indicating that the HOST command is supported.  This
   line should contain the single word "HOST".  This MAY be sent in
   upper or lower case, or a mixture of both (it is case insensitive)
   but SHOULD be transmitted in upper case only.  That is, the response
   SHOULD be

        C> Feat
        S> 211- <any descriptive text>
        S>  ...
        S>  HOST
        S>  ...
        S> 211 End

   The ellipses indicate place holders where other features may be
   included, and are not required.  The one space indentation of the
   feature lines is mandatory [6].









From ftp-wg-owner@hethmon.com  Fri Sep 22 19:19:56 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id TAA28303
	for <ftpext-archive@lists.ietf.org>; Fri, 22 Sep 2000 19:19:54 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000922182128-10840-9 ; Fri, 22 Sep 2000 18:21:28 -0500
Received: from igclickmail01.igclick.net (213.1.245.201 [213.1.245.201]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000922182123-44549-8 ; Fri, 22 Sep 2000 18:21:23 -0500
Message-Id: <20000922182123-44549-8@mail.hethmon.com>
Received: from MIGGY ([213.120.237.16]) by igclickmail01.igclick.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21)
	id TMQKCRM9; Sat, 23 Sep 2000 00:17:21 +0100
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Date: Fri, 22 Sep 2000 18:21:25 -0500
X-OldDate:  Sat, 23 Sep 2000 00:16:27 +0100
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: "Spider" <rudi.chavez@mft.co.uk>
To: "FTPEXT Working Group" <ftp-wg@hethmon.com>
Subject: Ftp-WG: ftpext-host-01.txt
Content-Transfer-Encoding: 7bit

UNSUBSCRIBE

----------
> From: Mark Symons <msymons@alpha.ipswitch.com>
> To: FTPEXT Working Group <ftp-wg@hethmon.com>
> Subject: Ftp-WG: ftpext-host-01.txt
> Date: 22 September 2000 22:38
> 
> > OK.  Here's what I have so far.
> 
> >                             FTP HOST Command
> >
> >                      draft-ietf-ftpext-host-01.txt
> >                           Expires: March, 2001
> 
> Looks like a great starting point.
> 
> The HOST command was removed from mlst-09.  At the end of this message I
> attach the relevent HOST sections from mlst-08.  I have not even removed
the
> original section numbering.  This fills in the gaps in
> draft-ietf-ftpext-host-01.txt, such as Syntax and Responses.  The State
> Diagram is also slightly different.
> 
> The mlst-08 HOST definition makes no reference to DNS SRV records.  I
think
> that they should be covered, perhaps also in the "Alternatives" section,
as
> they provide an alternate route for running muliple FTP hosts on a single
IP
> address.
> 
> Mark Symons
> Ipswitch, Inc
> Augusta, GA
> 
> 
> ================
> 
> 
> 
> 6.1. The HOST command
> 
>    A new command "HOST" is added to the FTP command set to allow
>    server-FTP process to determine to which of possibly many virtual
>    hosts the client wishes to connect.  This command is intended to be
>    issued before the user is authenticated, allowing the authentication
>    scheme, and set of legal users, to be dependent upon the virtual host
>    chosen.  Server-FTP processes may, if they desire, permit the HOST
>    command to be issued after the user has been authenticated, or may
>    treat that as an erroneous sequence of commands.  The behavior of the
>    server-FTP process which does allow late HOST commands is undefined.
>    One reasonable interpretation would be for the user-PI to be returned
>    to the state that existed after the TCP connection was first
>    established, before user authentication.
> 
>    Servers should note that the response to the HOST command is a
>    sensible time to send their "welcome" message.  This allows the
>    message to be personalized for any virtual hosts that are supported,
>    and also allows the client to have determined supported languages, or
>    representations, for the message, and other messages, via the FEAT
>    response, and selected an appropriate one via the LANG command.  See
>    [7] for more information.
> 
> 6.2. Syntax of the HOST command
> 
>    The HOST command is defined as follows.
> 
>         host-command     = "Host" SP hostname CRLF
>         hostname         = 1*DNCHAR 1*( "." 1*DNCHAR ) [ "." ]
>         DNCHAR           = ALPHA / DIGIT / "-" / "_" / "$" /
>                            "!" / "%" / "[" / "]" / ":"
>         host-response    = host-ok / error-response
>         host-ok          = "220" [ SP *TCHAR ] CRLF
> 
>    As with all FTP commands, the "host" command word is case
>    independent, and may be specified in any character case desired.
> 
>    The "hostname" given as a parameter specifies the virtual host to
>    which access is desired.  It should normally be the same name that
>    was used to obtain the IP address to which the FTP control connection
>    was made, after any client conversions to convert an abbreviated or
>    local alias to a complete (fully qualified) domain name, but before
>    resolving a DNS alias (owner of a CNAME resource record) to its
>    canonical name.
> 
>    If the client was given a network literal address, and consequently
>    was not required to derive it from a hostname, it should send the
>    HOST command with the network address, as specified to it, enclosed
>    in brackets (after eliminating any syntax, which might also be
>    brackets, but is not required to be, from which the server deduced
>    that a literal address had been specified.) That is, for example
> 
>                          HOST [10.1.2.3]
> 
>    should be sent if the client had been instructed to connect to
>    "10.1.2.3", or "[10.1.2.3]", or perhaps even IPv4:10.1.2.3.  The
>    method of indicating to a client that a literal address is to be used
>    is beyond the scope of this specification.
> 
>    The parameter is otherwise to be treated as a "complete domain name",
>    as that term is defined in section 3.1 of RFC 1034 [10].  That
>    implies that the name is to be treated as a case independent string,
>    in that upper case ASCII characters are to be treated as equivalent
>    to the corresponding lower case ASCII characters, but otherwise
>    preserved as given.  It also implies some limits on the length of the
>    parameter and of the components that create its internal structure.
>    Those limits are not altered in any way here.
> 
>    RFC 1034 imposes no other restrictions upon what kinds of names can
>    be stored in the DNS.  Nor does RFC 1035.  This specification,
>    however, allows only a restricted set of names for the purposes of
>    the HOST command.  Those restrictions can be inferred from the ABNF
>    grammar given for the "hostname".
> 
> 6.3. HOST command semantics
> 
>    Upon receiving the HOST command, before authenticating the user-PI, a
>    server-FTP process should validate that the hostname given represents
>    a valid virtual host for that server, and if so, establish the
>    appropriate environment for that virtual host.  The meaning of that
>    is not specified here, and may range from doing nothing at all, or
>    performing a simple change of working directory, to much more
>    elaborate state changes, as required.
> 
>    If the hostname specified is unknown at the server, or if the server
>    is otherwise unwilling to treat the particular connection as a
>    connection to the hostname specified, the server will respond with a
>    504 reply.
> 
>    Note: servers may require that the name specified is in some sense
>    equivalent to the particular network address that was used to reach
>    the server.
> 
>    If the hostname specified would normally be acceptable, but for any
>    reason is temporarily unavailable, the server SHOULD reply to the
>    HOST command with a 434 reply.
> 
>    The "220" reply code for the HOST command is the same as the code
>    used on the initial connection established "welcome" message.  This
>    is done deliberately so as to allow the implementation to implement
>    the front end FTP server as a wrapper which simply waits for the HOST
>    command, and then invokes an older, RFC959 compliant, server in the
>    appropriate environment for the particular hostname received.
> 
> 6.3.1. The REIN command
> 
>    As specified in [3], the REIN command returns the state of the
>    connection to that it was immediately after the transport connection
>    was opened.  That is not changed here.  The effect of a HOST command
>    will be lost if a REIN command is performed, a new HOST command must
>    be issued.
> 
>    Implementors of user-FTP should be aware that server-FTP
>    implementations which implement the HOST command as a wrapper around
>    older implementations will be unable to correctly implement the REIN
>    command.  In such an implementation, REIN will typically return the
>    server-FTP to the state that existed immediately after the HOST
>    command was issued, instead of to the state immediately after the
>    connection was opened.
> 
> 6.3.2. User-PI usage of HOST
> 
>    A user-PI that conforms to this specification, MUST send the HOST
>    command after opening the transport connection, or after any REIN
>    command, before attempting to authenticate the user with the USER
>    command.
> 
>    The following state diagram shows a typical sequence of flow of
>    control, where the "B" (begin) state is assumed to occur after the
>    transport connection has opened, or a REIN command has succeeded.
>    Other commands (such as FEAT [6]) which require no authentication may
>    have intervened.  This diagram is modeled upon (and largely borrowed
>    from) the similar diagram in section 6 of [3].
> 
>    In this diagram, a three digit reply indicates that precise server
>    reply code, a single digit on a reply path indicates any server reply
>    beginning with that digit, other than any three digit replies that
>    might take another path.
> 
> 
> 
> 
>               +---+   HOST    +---+ 1,3,5
>               | B |---------->| W |-----------------
>               +---+           +---+                 |
>                                | |                  |
>                      2,500,502 | | 4,501,503,504    |
>                  --------------   -------------     |
>                 |                              |    |
>                 V                   1          |    V
>               +---+   USER    +---+-------------->+---+
>               |   |---------->| W | 2       ----->| E |
>               +---+           +---+------  |  --->+---+
>                                | |       | | | |
>                              3 | | 4,5   | | | |
>                  --------------   -----  | | | |
>                 |                      | | | | |
>                 |                      | | | | |
>                 |                 ---------  | |
>                 |               1|     | |   | |
>                 V                |     | |   | |
>               +---+   PASS    +---+ 2  |  ------->+---+
>               |   |---------->| W |-------------->| S |
>               +---+           +---+   ----------->+---+
>                                | |   | |     | |
>                              3 | |4,5| |     | |
>                  --------------   --------   | |
>                 |                    | |  |  |  ----
>                 |                    | |  |  |      |
>                 |                 -----------       |
>                 |             1,3|   | |  |         |
>                 V                |  2| |  |         V
>               +---+   ACCT    +---+--  |   ------>+---+
>               |   |---------->| W | 4,5 --------->| F |
>               +---+           +---+-------------->+---+
> 
> 6.4. HOST command errors
> 
>    The server-PI shall reply with a 500 or 502 reply if the HOST command
>    is unrecognized or unimplemented.  A 503 reply may be sent if the
>    HOST command is given after a previous HOST command, or after a user
>    has been authenticated.  Alternately, the server may accept the
>    command at such a time, with server defined behavior.  A 501 reply
>    should be sent if the hostname given is syntactically invalid, and a
>    504 reply if a syntactically valid hostname is not a valid virtual
>    host name for the server.
> 
>    In all such cases the server-FTP process should act as if no HOST
>    command had been given.
> 
>    A user-PI receiving a 500 or 502 reply should assume that the
>    server-PI does not implement the HOST command style virtual server.
>    It may then proceed to login as if the HOST command had succeeded,
>    and perhaps, attempt a CWD command to the hostname after
>    authenticating the user.
> 
>    A user-PI receiving some other error reply should assume that the
>    virtual HOST is unavailable, and terminate communications.
> 
>    A server-PI that receives a USER command, beginning the
>    authentication sequence, without having received a HOST command
>    SHOULD NOT reject the USER command.  Clients conforming to earlier
>    FTP specifications do not send HOST commands.  In this case the
>    server may act as if some default virtual host had been explicitly
>    selected, or may enter an environment different from that of all
>    supported virtual hosts, perhaps one in which a union of all
>    available accounts exists, and which presents a NVFS which appears to
>    contain sub-directories containing the NVFS for all virtual hosts
>    supported.
> 
> 6.5. FEAT response for HOST command
> 
>    A server-FTP process that supports the host command, and virtual FTP
>    servers, MUST include in the response to the FEAT command [6], a
>    feature line indicating that the HOST command is supported.  This
>    line should contain the single word "HOST".  This MAY be sent in
>    upper or lower case, or a mixture of both (it is case insensitive)
>    but SHOULD be transmitted in upper case only.  That is, the response
>    SHOULD be
> 
>         C> Feat
>         S> 211- <any descriptive text>
>         S>  ...
>         S>  HOST
>         S>  ...
>         S> 211 End
> 
>    The ellipses indicate place holders where other features may be
>    included, and are not required.  The one space indentation of the
>    feature lines is mandatory [6].
> 
> 
> 
> 
> 




From ftp-wg-owner@hethmon.com  Fri Sep 22 19:31:46 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id TAA28544
	for <ftpext-archive@lists.ietf.org>; Fri, 22 Sep 2000 19:31:45 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000922183325-12877-9 ; Fri, 22 Sep 2000 18:33:25 -0500
Received: from igclickmail01.igclick.net (213.1.245.201 [213.1.245.201]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000922183321-46544-8 ; Fri, 22 Sep 2000 18:33:21 -0500
Message-Id: <20000922183321-46544-8@mail.hethmon.com>
Received: from MIGGY ([213.120.237.16]) by igclickmail01.igclick.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21)
	id TMQKCRN6; Sat, 23 Sep 2000 00:29:20 +0100
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1155
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Date: Fri, 22 Sep 2000 18:33:22 -0500
X-OldDate:  Sat, 23 Sep 2000 00:17:06 +0100
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: "Spider" <rudi.chavez@mft.co.uk>
To: "FTPEXT Working Group" <ftp-wg@hethmon.com>
Subject: Ftp-WG: DNAP EMERGING BIOTECH TRADING UNDER $1  !!!
Content-Transfer-Encoding: 8bit

UNSUBSCRIBE

----------
From: ListMember343@earthonline.com
To: ftp-wg@hethmon.com
Subject: Ftp-WG: DNAP EMERGING BIOTECH TRADING UNDER $1  !!!
Date: 22 September 2000 22:00






TO ALL OFF OUR LISTMEMBERS STUDY THESE DD LINKS AND I'M SURE YOU'LL BE
AMAZED AS WE WERE AT THIS UPCOMING BIOTECH COMPANY.  THE CEO, ONCE A LEAD
SCIENTIST FOR CORIXA WHO'S PATENT WAS SOLD FOR 54 MILLION, STARTED JIS OWN
COMPANY A COUPLE OF MONTHS AGO WITH A REVERSE MERGER OF A PENNY STOCK THAT
WAS LISTED BUT NOT DOING ANYTHING.
DNAP IS TRADING AT 25 CENTS AND IN OUR OPINION NOT FOR LONG. BUT DO YOUR
DUE DILLIGENCE AND READ THE LINKS. GOOD LUCK IN ALL YOUR TRADING.


(DNAP) - investor information links 
(updated last on 09-22-00 @ 13:34pm) 


DNAprint Genomics (CORPORATE WEB SITE)-----> <http://www.dnaprint.com/> 

Company Profile 

DNAPrint genomics is a young e-biotech company based in southwest Florida.
The company is developing an informatics platform system that will provide
dynamic solutions for disease gene discovery, genetic predisposition and
genetic analysis testing. Their work has real-life application to the
germinating field of Personalized Medicine and will help lay the foundation
for a brand-new area of medical research called Phenomics. 

DNAP PART #1 (CORPORATE MISSION)----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9893>


DNAP PART #2 (MEDICINE FOR THE 20TH CENTURY)----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9894>


DNAP PART #3 (THE SCIENCE)----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9896>


DNAP PART #4 (SERVICES)----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9897>


DNAP PART #5 (ADVANTAGES)----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9898>


DNAP PART #6 (TECHNOLOGY)----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9899>


DNAP PART #7 (PROGRAMS)----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9901>


DNAP PART #8 (INVESTOR RELATIONS)----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9902>


DNAP PART #9 (INTELLECTUAL PROPERTY)----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9903>


DNAP PART #10 (FOUNDERS)----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9904>


OUTSTANDING SHARES & FLOAT LINKS: 
issued/outstanding shares/float----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=16036
> 
explaination of share structure after CLYC merger----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=16037
> 

CEOcast INTRERVIEW WITH CEO- Tony Frudakis, Ph.D., 
President/Laboratory Director/CEO 
DNAprint genomics, Inc. 
(OTC: DNAP)-----> <http://www.ceocast.com/company.cfm?cid=659&n=122432>
(MUST REGISTER WITH WEB SITE TO HEAR THE INTERVIEW) 

WALL STREET REPORTER INTEVIEW WITH CEO- Tony Frudakis, Ph.D., 
President/Laboratory Director/CEO 
DNAprint genomics, Inc. 
(OTC: DNAP)----->
<http://www.wallstreetreporter.com/interviews/aug/16/DNAPrintGenomics.htm> 

Q & A WITH Tony Frudakis, Ph.D. (Chief Scientific Officer- DNAprint
Genomics) 1748 Independence Blvd., Ste. D1, Sarasota, FL 34234 (941)
351-4543 or (941) 351-7388----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=10853
> 

CONVERSATION WITH Craig Hall, (Director of Financial Analysis-Tampa Bay
Financial)[Craigs phone number is 941 341-0136] September 6-8, 2000----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?read=15868&board=DNAP
> 

STOCK ANALYSTS HOT PICKS-----> 
Pennystockprofits.com----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=15730
> 
Tipreporter.com-----> <http://www.tipreporter.com/search.php?search=dnap> 
Stocktribe.com Continues Coverage of DNAPrint Genomics Inc. (Wednesday
September 13, 3:15 pm Eastern Time)----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=16835
>
SockTheStocks Profiles DNAP-----> 
<http://www.sockthestocks.com/profiles/dnap.htm> 

DNAP OFFICE VISITS: 
#1----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=7976>

#2----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=8423>


BioPartnering Europe Conference Invitation-----> 
<http://www.dnaprint.com/index.cfm?fuseaction=content&id=255> (posted by:
vrholdings) 

Life and Molecular Medicine-----> 
<http://209.52.189.2/article.cfm/molecular_medicine/31171> (NEWS ARTICLE
PROVIDED BY: alzaco92) 

NEWS ANALYSIS FORT LAUDERDALE,(dbusiness.com)-- "Safe drugs that fit like a
glove" (By Karen J. Cohen, dbusiness.com), Sep 01, 2000----->
<http://www.ragingbull.altavista..com/mboard/boards.cgi?board=DNAP&read=1120
3> 

NEWS ANALYSIS BALTIMORE, (LocalBusiness.com) -- "Adding DNA to the Rx mix"
(By Ray Bolger, LocalBusiness.com), Sep 01, 2000----->
<http://www.ragingbull.altavista.com/mboaard/boards.cgi?board=DNAP&read=1598
1> 

CURRENT NEWS/PRESS RELEASE LINK-----> <http://biz.yahoo.com/n/D/DNAP.html> 

PRESS RELEASES: 

JUNE 30, 2000 (Press Release) Catalyst Communications, Inc. (Pink Sheets:
"CLYC") announced today that it has signed a letter of intent to acquire
privately held DNAPrint genomics Inc., a Sarasota, Florida based genomic
research and personalized medicine corporation----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9890>


JULY 18, 2000 (Press Release) Catalyst Communications, Inc. (Pink
Sheets:CLYC) announced today that it has acquired privately held DNAPrint
genomics Inc., a Sarasota, Florida based genomic research and personalized
medicine corporation----->
<http://www.ragingbull.altavista.com/mboard/boards.cgiboard=DNAP&read=9882>


AUGUST 4, 2000 (Press Release) DNAPrint genomics (Pink Sheets:DNAP) has
entered into a license agreement with privately held Geospiza Inc., of
Seattle, WA----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9891>


AUGUST 8, 2000 (Press Release) DNAPrint genomics, Inc., (Pink Sheets:DNAP),
a Sarasota, Florida based genomics company, announced today that it has
engaged the Sarasota, Florida CPA firm of Howard Wolmerdorph, C.P.A., P.A.,
to complete its audits through December 31, 1999----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9880>


AUGUST 15, 2000 (Press Release) DNAPrint genomics, Inc. (Pink 
Sheets:DNAP) announced today that it has upgraded its hardware computing
platform to a Sun Sparc network system designed by Sun Microsystems
(Nasdaq: SUNW)----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9889>


AUGUST 22, 2000 (Press Release) DNAPrint genomics (Pink Sheets:DNAP)
announced today the addition of the 2,000th candidate SNP to its
Phenome(SM) database----->
<http://www.ragingbull.altavista.com/mboard/boards.cgi?board=DNAP&read=9879>


SEPTEMBER 1, 2000 (Press Release) DNAPrint genomics, Inc., (Pink
Sheets:DNAP), a Sarasota, Florida based genomics company, announced today
that it has published its first scientific paper, entitled ``A Geometric
Model of Information Retrieval Systems''----->
<http://www.ragingbull.altavista.com/mboard/boards.cgiboard=DNAP&read=10854>


SEPTEMBER 6, 2000 (Press Release) DNAPrint genomics, Inc., (Pink
Sheets:DNAP), a Sarasota, Florida based genomics company, announced today
that it has been invited to present at the Genomic Partnering Conference,
March 3rd-4th, 2001, in San Francisco, California----->
<http://www.ragingbull.altavista.com/mboard/boards.cgiboard=DNAP&read=15552>


September 20, 2000 (Press Release) DNAPrint genomics, Inc. Announces
Completion of Audit----->
<http://www.ragingbull.altavista.com/mboard/boards.cgiboard=DNAP&read=18753>








----------





From ftp-wg-owner@hethmon.com  Sat Sep 23 00:41:32 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id AAA05452
	for <ftpext-archive@lists.ietf.org>; Sat, 23 Sep 2000 00:41:31 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000922234333-48556-10 ; Fri, 22 Sep 2000 23:43:33 -0500
Received: from 0015699886 (c194.dialup.conninc.com [209.211.108.104]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000922234330-43929-10 ; Fri, 22 Sep 2000 23:43:31 -0500
Message-Id: <20000922234330-43929-10@mail.hethmon.com>
Mime-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Date: Fri, 22 Sep 2000 23:43:31 -0500
X-OldDate:  Sat, 23 Sep 2000 00:38:24
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: "beth  wright" <beth101@mailexcel.com>
To: <ftp-wg@hethmon.com>
Subject: Ftp-WG: MONEY FOR EMAIL

              Would You Like To Earn Money To Read Email
                Its Free To Sign Up And You Can Earn As 
                  Much As You Like. If Your Interested In This
                    Write Back And Will Tell You How To Sign Up.










                                  Thanks
                                         Beth  Wright


        IF THIS EMAIL WAS SENT TO U MISTAKINGLY WE ARE VERY SORRY JUST 
REPLY AND WE WILL BA GLAD TO TAKE U OFF OUR 
        LIST THIS IS A OPT-IN LIST UR ON REQUESTING THIS INFORMATION.

                      



From ftp-wg-owner@hethmon.com  Sat Sep 23 20:06:25 2000
Received: from mail.hethmon.com ([208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id UAA25373
	for <ftpext-archive@lists.ietf.org>; Sat, 23 Sep 2000 20:06:24 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000923190228-57619-10 ; Sat, 23 Sep 2000 19:02:29 -0500
Received: from glaciar.iau.gub.uy (207.3.112.226 [207.3.112.226]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000923190217-11629-8 ; Sat, 23 Sep 2000 19:02:24 -0500
Received: from nunya (unverified [158.252.128.76]) by glaciar.iau.gub.uy
 (EMWAC SMTPRS 0.83) with SMTP id <B0000050466@glaciar.iau.gub.uy>;
 Sat, 23 Sep 2000 21:02:27 -0300
Message-ID: <B0000050466@glaciar.iau.gub.uy>
Date: Sat, 23 Sep 2000 19:02:26 -0500
X-OldDate:  Sat, 23 Sep 2000 21:02:27 -0300
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: <joewinters@arabia.com>
To: gdfdgf@fdngfl.it
Subject: Ftp-WG: FIND OUT ANYTHING ON ANYONE!!!!!!!




"THE INTERNET SPY AND YOU 2000"

Shows you how to get the facts on anyone.

CONFIDENTIAL
The SOFTWARE They Wanted BANNED In all 50 States! Why?  Because 
these secrets were never intended to reach your eyes....

Get the facts on anyone using the Internet!
Locate Missing Persons, find Lost Relatives, obtain Addresses and 
Phone Numbers of old school friends, even Skip Trace Dead Beat Spouses. This is not a Private Investigator, but a sophisticated SOFTWARE program DESIGNED to automatically CRACK YOUR CASE with links to thousands of Public record databases. Find out SECRETS about your relatives, friends, enemies, and everyone else! -- even your spouse!  With the New INTERNET SPY AND YOU - 2000

It's absolutely astounding!  Here's some of what you can learn:

License plate numbers!
Get anyone's name and address with just a license plate number! 
(Find that girl you met in traffic!)

DRIVING RECORDS!
Get anyone's driving record!

Social security number!
Trace anyone by social security number!

ADDRESSES!
Get anyone's address with just a name!

Unlisted phone numbers!
Get anyone's phone number with just a name-even unlisted numbers!

LOCATE!
Long lost friends, relatives, a past lover who broke your heart!
Now with Full Internet Search.

E-mail!
Send anonymous e-mail completely untraceable!

Dirty secrets!
Discover dirty secrets your in-laws don't want you to know!

Investigate anyone!
Use the source that private investigators use (all on the Internet) 
secretly!

Ex-spouse!
Learn how to get information on an ex-spouse that will help you win
 in court!  (Dig up old skeletons)

Criminal search-Backround check!
Find out about you daughters boyfriend! (or her husband)

Neighbors!
Learn all about your mysterious neighbors!  Find out what they 
have to hide!

People you work with!
Be astonished by what you'll learn about people you work with!

Education verification!
Did he really graduate college?  Find out!

INTERNET SPY AND YOU 2000
Software will help you discover ANYTHING about anyone, 
with clickable hyperlinks and no typing in Internet addresses!

Just insert our floppy disk and Go!

It's INCREDIBLE what you can find out using Internet Spy and 
You 2000 and the Internet!  You'll be riveted to your computer screen!  The software they're trying to ban!  Before it's too late!

LIMITED TIME OFFER: ORDER TODAY!
Only $15.00 US (Postage Paid)

WORKS WITH ALL BROWSERS AND ALL VERSIONS OF AOL!

ORDER TODAY:
SEND Only $15.00 US
(CASH, CHECK, OR MONEY ORDER)
(ARIZONA RESIDENTS ADD 7% ARIZONA STATE SALES TAX)


(ORDERS OUTSIDE THE USA, ADD $5.00 and must send US CASH,
 No checks, no money orders!)


TO:
K Gaston
PO BOX 3042
Gilbert, AZ  85299-3042

(ALL ORDERS MAILED WITHIN 48 HOURS OF RECEIVING THEM)

MAKE YOUR CHECK PAYABLE TO:
K Gaston

(Please Print Clearly Your Name and Address)
                                                                                   
Name__________________________________________

Address________________________________________

City/State/ZIP___________________________________

E-mail Address__________________________________



SORRY NO MAC VERSION AVAILABLE AT THIS TIME.
THIS PROGRAM WILL NOT WORK WITH M/S 3.11 AND OLDER.

Copyright Đ 1998-1999 
All Rights Reserved
**********************************************************************
All REMOVE requests AUTOMATICALLY honored upon receipt.

PLEASE understand that any effort to disrupt, close or block this
 REMOVE account can only result in difficulties for others wanting
 to be removed from our mailing list as it will be impossible to take
 anyone off the list if the remove instruction can not be received.

To be removed from our mailing list please
send an email to: mailbox1@unbounded.com
and place remove in the subject
Thank you
*********************************************************





From ftp-wg-owner@hethmon.com  Sat Sep 23 20:46:36 2000
Received: from mail.hethmon.com ([208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id UAA25537
	for <ftpext-archive@lists.ietf.org>; Sat, 23 Sep 2000 20:46:36 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000923194844-53971-9 ; Sat, 23 Sep 2000 19:48:44 -0500
Received: from VISI. (203.69.38.37 [203.69.38.37]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000923194839-35872-8 ; Sat, 23 Sep 2000 19:48:40 -0500
Received: from _[46.71.226.50]_by by VISI. (SMI-8.6/SMI-SVR4)
	id SAA26598; Tue, 23 May 2000 18:44:31 +0800
Message-Id: <200005231044.SAA26598@VISI.>
Received: from  [67.198.20.73] by _[46.71.226.50]_by with SMTP id A116C48E3 Sat, 23 Sep 2000 20:26:19 PDT
Mime-Version: 1.0
Content-Type: text/plain, charset="iso-8859-1"
Date: Sat, 23 Sep 2000 19:48:41 -0500
X-OldDate:  Sat, 23 Sep 2000 20:43:36
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Listmember3@aba.com
To: ftp-wg@hethmon.com
Subject: Ftp-WG: Clinics for the Future. Barrons article on DNAP !!





Dnaprint Genomics (DNAP) is in this weeks issue of Barrons page 52.

Clinics of the future will read genetic data from patients saliva or blood and screen this "read" against "solutions" generated genomics companies.
Dnaprint Genomics (DNAP) intends to be the first to establish tools for these diagnostic solutions.


DNAP is trading at 23.5 CENTS at Friday's (9/22/00) close. We feel this is an excellent opportunity to profit from the ground floor on an emerging biotech company that started trading recently by an effective reverse merger with a company that was on the pink sheets. 
The CEO Tony Frudakis was a lead scientist for Corixa. Corixa's stock has gone from 14 cents to 49 dollars (Fridays close) within a few years, partly due to Dr. Frudakis's patent developement. Dr. Frudakis decided to start his own company.

Frudakis, 33, said he expects DNAprint to become a Fortune 500 company within 10 years.
http://www.newscoast.com/2biz.cfm?ID=28057


For the article on DNAP see this week's Barrons (Sept 25,2000 issue) page 52. It's against copyright laws to post the article without permission.

This is not from a registered financial advisory, please consult with a registered investment advisor before making an investment decision. This communication (print or electronic) reflects our opinions and does not necessarily reflect those of anyone else related to the firm and may be in conflict with the views or official views of the companies mentioned. Readers are advised that this publication (print or electronic) is issued solely for informational purposes and is not to be construed as an offer to sell or the solicitation of an offer to buy. This communication is based on information available to the public.
We are NOT a professional advisory service, broker, investment firm or agency.
We are NOT a stock picking service. The securities profiled here are solely of our own opinion and it is not recommended that you buy, sell, or hold based on what you find here. Please continue to perform your own Due Diligence.  Any investment decisions you make should be your own predicated upon your own findings and judgments born from your own research. All images and logo's used to represent DNAPrint are registered trademarks of DNAPrint. Barrons is a registered trademark of Dow Jones & Co., Inc..
   
  

 
 
 
 
 
 

  
 
 








From ftp-wg-owner@hethmon.com  Sat Sep 23 23:41:11 2000
Received: from mail.hethmon.com ([208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id XAA28580
	for <ftpext-archive@lists.ietf.org>; Sat, 23 Sep 2000 23:41:10 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000923224256-21595-12 ; Sat, 23 Sep 2000 22:42:56 -0500
Received: from www.informatiques.ch (www.informatiques.ch.74.38.194.in-addr.arpa [194.38.74.108]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000923224244-56887-8 ; Sat, 23 Sep 2000 22:42:51 -0500
Received: from sdn-ar-002tnknoxP138.dialsprint.net_[206.133.83.202] (sdn-ar-002tnknoxP138.dialsprint.net [206.133.83.202])
	by www.informatiques.ch (8.9.3/8.8.7) with SMTP id FAA16250;
	Sun, 24 Sep 2000 05:29:11 +0200
Received: from  by sdn-ar-002tnknoxP138.dialsprint.net with ESMTP; Sat, 23 Sep 2000 23:34:24 -0400
Message-ID: <00007e4a2d6a$000029b9$0000489f@>
MIME-Version: 1.0
Content-Type: text/html;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
X-Priority: 3
X-MSMail-Priority: Normal
Date: Sat, 23 Sep 2000 22:42:53 -0500
X-OldDate:  Sat, 23 Sep 2000 23:34:11 -0400
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: chmike@earthlink.net
To: <Undisclosed.Recipients@www.informatiques.ch>
Subject: Ftp-WG: The Hottest Business Opportunity Of The Year!                         18591
Content-Transfer-Encoding: quoted-printable

<HTML>
<BODY>

<FONT face=3D"MS Sans Serif">
<FONT size=3D2> <HTML><BR><BR>
                 FOLLOW ME TO FINANCIAL FREEDOM!!<BR><BR>
<BR><BR>
I Am looking for people with good work ethic and extrordinary desire<BR><B=
R>
 to earn at least $10,000 per month working from home!<BR><BR>
<BR><BR>
NO SPECIAL SKILLS OR EXPERIENCE REQUIRED We will give you all the <BR><BR>
training and personal support you will need to ensure your success!<BR><BR=
>
<BR><BR>
This LEGITIMATE HOME-BASED INCOME OPPORTUNITY can put you back in<BR><BR>
               control of your time,your finances,and your life!<BR><BR>
<BR><BR>
If you've tried other opportunities in the past that have failed to <BR><B=
R>
               live up their promises,<BR><BR>
<BR><BR>
     THIS IS DIFFERENT THEN ANYTHING ELSE YOU'VE SEEN!<BR><BR>
<BR><BR>
       THIS IS NOT A GET RICH QUICK SCHEME!<BR><BR>
<BR><BR>
YOUR FINANCIAL PAST DOES NOT HAVE TO BE YOUR FINANCIAL FUTURE!<BR><BR>
<BR><BR>
               CALL ONLY IF YOU ARE SERIOUS!<BR><BR>
<BR><BR>
                 1-800-345-9708 <BR><BR>
<BR><BR>
    DONT GO TO SLEEP WITHOUT LISTENING TO THIS!<BR><BR>
<BR><BR>
"ALL our dreams can come true- if we have the courage to persue them"<BR><=
BR>
                   -Walt Disney<BR><BR>
<BR><BR>
Please Leave Your Name And Number And Best Time To Call<BR><BR>
<BR><BR>
               DO NOT RESPOND BY EMAIL<BR><BR>
<BR><BR>
------------------------------------------------------------------------<B=
R><BR>
    This message is sent in compliance of the new email bill section<BR><B=
R>
                             301.PerSection<BR><BR>
  301, Paragraph (a)(2)(C) of S. 1618. We will comply with all removal<BR>=
<BR>
                                requests.Just Put Remove<BR>mailto:bagboy@=
burmesses.net<BR>
  ------------------------------------------------------------------------=
</HTML><BR>
<BR>
</FONT></FONT>





From ftp-wg-owner@hethmon.com  Sun Sep 24 15:38:53 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id PAA10228
	for <ftpext-archive@lists.ietf.org>; Sun, 24 Sep 2000 15:38:50 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000924144044-64996-12 ; Sun, 24 Sep 2000 14:40:44 -0500
Received: from baosoft.com (202.101.38.219 [202.101.38.219]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000924144039-26541-10 ; Sun, 24 Sep 2000 14:40:40 -0500
Received: from _[186.123.181.167]_by by baosoft.com (SMI-8.6/SMI-SVR4)
	id DAA21359; Mon, 25 Sep 2000 03:36:42 +0800
Message-Id: <200009241936.DAA21359@baosoft.com>
Received: from  [155.241.123.96] by _[186.123.181.167]_by with SMTP id A121C30E4 Sun, 24 Sep 2000 15:18:24 PDT
Mime-Version: 1.0
Content-Type: text/html; charset="us-ascii"
Date: Sun, 24 Sep 2000 14:40:41 -0500
X-OldDate:  Sun, 24 Sep 2000 15:35:41
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Listmember45@aol.com
To: ftp-wg@hethmon.com
Subject: Ftp-WG: Clinics for the Future. Barrons article on DNAP !!




Text version below:
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Dnaprint</title>
</head>

<body>

<p><b><font color="#000000" face="Arial" size="4">&nbsp;</font><font color="#000000" size="2"><font color="#000000" size="4">Dnaprint</font><font color="#0000ff" size="4">
(</font><font color="#cc0000" size="4">DNAP</font><font color="#0000ff" size="4">)
</font><font color="#000000" size="4">is an</font><font color="#0000ff" size="4">
</font><font color="#000000" size="4">emerging biotech company in this weeks </font><font color="#cc0000" size="4">Barrons</font><font color="#000000" size="4">.</font></font></b></p>
<p><br>
<font color="#000080" size="4">1) CEO (Dr. Tony Frudakis) Lead scientist for
Corixa starts his own company a few months ago<br>
<br>
2) Company is formed by a reverse merger of a pinksheet company<br>
<br>
3) DNAP has already completed the accounting to get off the pinksheets and
should be listed on the OTCBB soon.<br>
<br>
4) Dr. Frudakis was responsible for a patent that sold for $54,000,000 to Smith
Kline Beecham while he was at Corixa.<br>
<br>
5) Corixa's stock has gone from 14 Cents a few years ago to 50 Dollars today.<br>
<br>
6) According to the Barron's article, Dnaprint is in the late stages of forming
strategic alliances with major companies.</font></p>
<p><font color="#000080" size="4">7) </font><font size="4" color="#CC0000">DNAP</font><font color="#000080" size="4">
is trading at 23.5 cents as of Friday's close !!!!!!!!!!!!!!!</font></p>
<p><font size="2">&nbsp;This is not from a registered financial advisory, please
consult with a registered investment advisor before making an investment
decision. This communication (print or electronic) reflects our opinions and
does not necessarily reflect those of anyone else related to the firm and may be
in conflict with the views or official views of the companies mentioned. Readers
are advised that this publication (print or electronic) is issued solely for
informational purposes and is not to be construed as an offer to sell or the
solicitation of an offer to buy. This communication is based on information
available to the public. We are NOT a professional advisory service, broker,
investment firm or agency. We are NOT a stock picking service. The securities
profiled here are solely of our own opinion and it is not recommended that you
buy, sell, or hold based on what you find here. Please continue to perform your
own Due Diligence.&nbsp; Any investment decisions you make should be your own
predicated upon your own findings and judgments born from your own research. All
images and logo's used to represent DNAPrint are registered trademarks of
DNAPrint. Barrons is a registered trademark of Dow Jones &amp; Co., Inc..</font><font size="1"><br>
&nbsp;&nbsp;</font><font color="#000080" size="4"><br>
</font></p>

</body>

</html>

TEXT Version:
 
    Dnaprint (DNAP) is an emerging biotech company in this weeks Barrons.

1) CEO (Dr. Tony Frudakis) Lead scientist for Corixa starts his own company a 
   few months ago
    
2) Company is formed by a reverse merger of a pinksheet company

3) DNAP has already completed the accounting to get off the pinksheets and 
   should be listed on the OTCBB soon.

4) Dr. Frudakis was  responsible for a patent that sold for $54,000,000 to 
   Smith Kline Beecham while he was at Corixa.
 
5) Corixa's stock has gone from 14 Cents a few years ago to 50 Dollars today.
 
6) According to the Barron's article, Dnaprint is in the late stages of forming 
   strategic alliances with major companies.

7) Dnap is trading at 23.5 cents at Friday's close !!!!










From ftp-wg-owner@hethmon.com  Mon Sep 25 10:25:47 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id KAA04210
	for <ftpext-archive@lists.ietf.org>; Mon, 25 Sep 2000 10:25:46 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000925092714-7593-8 ; Mon, 25 Sep 2000 09:27:14 -0500
Received: from wymail.wysdom.com (wymail.wysdom.com [207.164.58.73]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000925092709-51125-7 ; Mon, 25 Sep 2000 09:27:10 -0500
Message-Id: <20000925092709-51125-7@mail.hethmon.com>
Received: from mailbox.wysdom.com (207.136.103.194 [207.136.103.194]) by wymail.wysdom.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21)
	id TTK6G7BM; Mon, 25 Sep 2000 09:19:11 -0400
Received: from xcjX65b13 (sdn-ar-002casjosP219.dialsprint.net [158.252.197.235]) by mailbox.wysdom.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2448.0)
	id TNMFKW09; Mon, 25 Sep 2000 05:32:17 -0400
Date: Mon, 25 Sep 2000 09:27:11 -0500
X-OldDate:  25 Sep 00 2:32:07 AM
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: goforit89@cheerful.com
To: goforit89@cheerful.com
Subject: Ftp-WG: $$%GET THE BEST EXPOSURE ON THE NET-MASS E-MAIL-GET 1 FREE MILLION$$%

We offer some of the best bulk e-mail prices on the Internet.  Bulk e-mail can get you the best exposure on the net. What makes this kind of advertising so effective is the fact that you go to the potential customer. Not like search engines or print ads that the potential customer has to do all the searching.  Dollar for dollar bulk e-mailing is also the most economical.  We do all the mailing for you. You just provide us with the ad!  It's that simple!

What we offer:

*General AOL Lists or other ISPs 
$200.00 for 1-million e-mails sent. 
$400.00 for 3-million e-mails sent. 
$600.00 for 5-million e-mails sent. 
$800.00 for 7-million e-mails sent. 
$1000.00 for 10-million e-mails sent. 

WE ALSO HAVE LARGER PACKAGES!


*Targeted Lists: 
$400.00 for 1-million e-mails sent. 
$700.00 for 2-million e-mails sent. 
$1,000.00 for 3-million e-mails sent.

 END OF SUMMER special, order within 2 days and get 1 free million general names sent. SALE ENDS  SEPT 30.  SO RESERVE YOUR SPOT TODAY!!!

Call for bigger packages!  ORDER NOW!!!AND GET THE RIGHT EXPOSURE!

So why not give us a call and see what it is that we can do for you.  call anytime 209-656-9143, we are in California. METHOD OF PAYMENT , CASHIERS CHECK MONEY ORDER OR BANK WIRE.

Sender:
Cybernet Enterprise 209-656-9143
go to goforit89@cheerful.com  to be removed.  Please no mail bombs, legit removal.





From ftp-wg-owner@hethmon.com  Mon Sep 25 21:56:21 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id VAA20371
	for <ftpext-archive@lists.ietf.org>; Mon, 25 Sep 2000 21:56:20 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000925205824-24000-13 ; Mon, 25 Sep 2000 20:58:24 -0500
Received: from sun2. (202.101.139.250 [202.101.139.250]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000925205821-47513-12 ; Mon, 25 Sep 2000 20:58:21 -0500
Received: from _[106.112.111.165]_by by sun2. (SMI-8.6/SMI-SVR4)
	id JAA01100; Tue, 26 Sep 2000 09:46:00 +0800
Message-Id: <200009260146.JAA01100@sun2.>
Received: from  [68.144.21.48] by _[106.112.111.165]_by with SMTP id A83C31E6 Mon, 25 Sep 2000 21:36:11 PDT
Mime-Version: 1.0
Content-Type: text/html; charset="us-ascii"
Date: Mon, 25 Sep 2000 20:58:22 -0500
X-OldDate:  Mon, 25 Sep 2000 21:53:28
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Listmember45@aba.com
To: ftp-wg@hethmon.com
Subject: Ftp-WG: Barrons article on DNAP- Clinics for the Future !!



Text version below:
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Dnaprint</title>
</head>

<body>

<p><b><font color="#000000" face="Arial" size="4">&nbsp;</font><font color="#000000" size="2"><font color="#000000" size="4">Dnaprint</font><font color="#0000ff" size="4">
(</font><font color="#cc0000" size="4">DNAP</font><font color="#0000ff" size="4">)
</font><font color="#000000" size="4">is an</font><font color="#0000ff" size="4">
</font><font color="#000000" size="4">emerging biotech company in this weeks </font><font color="#cc0000" size="4">Barrons</font><font color="#000000" size="4">.</font></font></b></p>
<p><br>
<font color="#000080" size="4">1) CEO (Dr. Tony Frudakis) Lead scientist for
Corixa starts his own company a few months ago<br>
<br>
2) Company is formed by a reverse merger of a pinksheet company<br>
<br>
3) DNAP has already completed the accounting to get off the pinksheets and
should be listed on the OTCBB soon.<br>
<br>
4) Dr. Frudakis was responsible for a patent that sold for $54,000,000 to Smith
Kline Beecham while he was at Corixa.<br>
<br>
5) Corixa's stock has gone from 14 Cents a few years ago to 50 Dollars today.<br>
<br>
6) According to the Barron's article, Dnaprint is in the late stages of forming
strategic alliances with major companies.</font></p>
<p><font color="#000080" size="4">7) </font><font size="4" color="#CC0000">DNAP</font><font color="#000080" size="4">
is trading at 23.5 cents as of Friday's close !!!!!!!!!!!!!!!</font></p>
<p><font size="2">&nbsp;This is not from a registered financial advisory, please
consult with a registered investment advisor before making an investment
decision. This communication (print or electronic) reflects our opinions and
does not necessarily reflect those of anyone else related to the firm and may be
in conflict with the views or official views of the companies mentioned. Readers
are advised that this publication (print or electronic) is issued solely for
informational purposes and is not to be construed as an offer to sell or the
solicitation of an offer to buy. This communication is based on information
available to the public. We are NOT a professional advisory service, broker,
investment firm or agency. We are NOT a stock picking service. The securities
profiled here are solely of our own opinion and it is not recommended that you
buy, sell, or hold based on what you find here. Please continue to perform your
own Due Diligence.&nbsp; Any investment decisions you make should be your own
predicated upon your own findings and judgments born from your own research. All
images and logo's used to represent DNAPrint are registered trademarks of
DNAPrint. Barrons is a registered trademark of Dow Jones &amp; Co., Inc..</font><font size="1"><br>
&nbsp;&nbsp;</font><font color="#000080" size="4"><br>
</font></p>

</body>

</html>

TEXT Version:
 
    Dnaprint (DNAP) is an emerging biotech company in this weeks Barrons.

1) CEO (Dr. Tony Frudakis) Lead scientist for Corixa starts his own company a 
   few months ago
    
2) Company is formed by a reverse merger of a pinksheet company

3) DNAP has already completed the accounting to get off the pinksheets and 
   should be listed on the OTCBB soon.

4) Dr. Frudakis was  responsible for a patent that sold for $54,000,000 to 
   Smith Kline Beecham while he was at Corixa.
 
5) Corixa's stock has gone from 14 Cents a few years ago to 50 Dollars today.
 
6) According to the Barron's article, Dnaprint is in the late stages of forming 
   strategic alliances with major companies.

7) Dnap is trading at 23.5 cents at Friday's close !!!!









From ftp-wg-owner@hethmon.com  Tue Sep 26 16:04:52 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id QAA15245
	for <ftpext-archive@lists.ietf.org>; Tue, 26 Sep 2000 16:04:50 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000926150429-49543-11 ; Tue, 26 Sep 2000 15:04:29 -0500
Received: from intrapia3.kotel.co.kr (intrapia3.kotel.co.kr [147.6.9.67]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000926150422-31043-8 ; Tue, 26 Sep 2000 15:04:22 -0500
Received: by intrapia3.kotel.co.kr id AA10625; Wed, 27 Sep 2000 04:59:18 +0900
Message-Id: <200009261959.AA10625@intrapia3.kotel.co.kr>
Mime-Version: 1.0
Content-Type: text/plain; charset=unknown-8bit
Date: Tue, 26 Sep 2000 15:04:24 -0500
X-OldDate:  Wed, 27 Sep 2000 04:59:18 +0900
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: <donald453@bbc.co.uk>
To: donald453@bbc.co.uk
Subject: Ftp-WG: Porche Boxter or Luxury Cruise Earn $$$ In Days This Works!!!


Dear Friend,

This really works! Have the faith, don't miss this opportunity, get
involved also, and it will work for you as it does for us!!!!!

Thank you for your time and interest.

This email contains the ENTIRE PLAN of how YOU can make $50,000 or more
in the next 90 days simply sending email!

Seem impossible? Just read on and see how easy this is....

Due to the popularity of this letter on the Internet, a major nightly
news program recently devoted an entire show to the investigation of the
program described below to see if it really can make people money.

The show also investigated whether or not the program was legal. Their
findings proved that there are absolutely no laws prohibiting
participation in the program. This has helped to show people that this
is a simple, harmless and fun way to make some extra money at home.

The results have been truly remarkable. So many people are participating

that those involved are doing much better than ever before. Since
everyone makes more as more people try it out, its been very exciting.

You will understand once you try it yourself!

********* THE ENTIRE PLAN IS HERE BELOW *********

*** Print This Now For Future Reference ***

$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

If you would like to make at least $50,000 in less than 90 days, please
read this program...THEN READ IT AGAIN!!

$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

THIS IS A LEGITIMATE, LEGAL, MONEY MAKING OPPORTUNITY!!

It does NOT require you to come into contact with people or make or take
any telephone calls. Just follow the instructions, and you will make
money. This simplified e-mail marketing program works perfectly 100%
EVERY TIME!

E-mail is the sales tool of the future. Take advantage of this virtually

free method of advertising NOW!!! The longer you wait, the more people
will be doing business using email. Get your piece of this action!!!

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Hello - My name is Johnathon Rourke, I'm from Rhode Island.

The enclosed information is something I almost let slip through my
fingers. Fortunately, sometime later I re-read everything and gave some
thought and study to it. Two years ago, the corporation I worked for for

the past twelve years down-sized and my position was eliminated. After
unproductive job interviews, I decided to open my own business. Over the

past year, I incurred many unforeseen financial problems. I owed
my family, friends and creditors over $35,000. The economy was taking a
toll on my business and I just couldnīt seem to make ends meet. I
had to refinance and borrow against my home to support my family and
struggling business.

AT THAT MOMENT something significant happened in my life. I am writing
toshare the experience in hopes that this could change your life
FOREVER. FINANCIALLY$$$!!!

In mid December, I received this program in my e-mail. Six months prior
to receiving this program I had been sending away for information on
various business opportunities. All of the programs I received, in my
opinion, were not cost effective. They were either too difficult for me
to comprehend or the initial investment was too much for me to risk to see
if they would work. But as I was saying, in December of 1997 I
received this program. I didnīt send for it, or ask for it, they just
got my name off a mailing list.

THANK GOODNESS FOR THAT!!! After reading it several times, to make sure
I was reading it correctly. I couldnīt believe my eyes! Here was
a MONEY MAKING MACHINE I could start immediately without any debt.

Like most of you I was still a little skeptical and a little worried
about the legal aspects of it all. So I checked it out with the U.S. Post
Office (1-800-725-2161 24-hrs) and they confirmed that it is indeed legal!

After determining the program was LEGAL I decided "WHY NOT!?!??"

Initially I sent out 10,000 e-mails. It cost me about $15 for my time
on-line. The great thing about e-mail is that I donīt need any money for

printing to send out the program, and because I also send the product
(reports) by e-mail, my only expense is my time.

In less than one week, I was starting to receive orders for REPORT #1.
By January 13, I had received 26 orders for REPORT #1. Your goal is
to "RECEIVE at least 20 ORDERS FOR REPORT #1 WITHIN 2 WEEKS. IF YOU
DONīT, SEND OUT MORE PROGRAMS UNTIL YOU DO.

My first step in making $50,000 in 90 days was done. By January 30, I
had received 196 orders for REPORT #2. Your goal is to "RECEIVE
AT LEAST 100+ ORDERS FOR REPORT #2 WITHIN 2 WEEKS. IF NOT, SEND OUT MORE

PROGRAMS UNTIL YOU DO. ONCE YOU
HAVE 100 ORDERS, THE REST IS EASY, RELAX, YOU WILL MAKE YOUR $50,000
GOAL."

Well, I had 196 orders for REPORT #2, 96 more than I needed. So I sat
back and relaxed. By March 1, of my e-mailing of 10,000, I received
$58,000 with more coming in every day. I paid off ALL my debts and
bought a much needed new car!

Please take your time to read this plan, IT WILL CHANGE YOUR LIFE
FOREVER$!!! Remember, it wonīt work if you donīt try it. This program
does work, but you must follow it EXACTLY!

Especially the rules of not trying to place your name in a different
place.
It wonīt work and youīll lose out on a lot of money! In order for this
program to work, you must meet your goal of 20+ orders for REPORT #1,
and 100+ orders for REPORT #2 and you will make $50,000 or more in 90 days.

I AM LIVING PROOF THAT IT WORKS!!! If you choose not to participate in
this program, I am sorry. It really is a great opportunity with little
cost or risk to you. If you choose to participate, follow the program
and you will be on your way to financial security. If you are a fellow
business owner and are in financial trouble like I was, or you want to
start your own business, consider this a sign. I DID! $$

Sincerely,

Johnathon Rourke
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

A PERSONAL NOTE FROM THE ORIGINATOR OF THIS PROGRAM:

By the time you have read the enclosed program and reports, you should
have
concluded that such a program, and one that is legal, could not
have been created by an amateur. Let me tell you a little about myself.
I
had a profitable business for 10 years. Then in 1979 my business
began falling off. I was doing the same things that were previously
successful for me, but it wasnīt working. Finally, I figured it out. It
wasnīt
me, it was the economy. Inflation and recession had replaced the stable
economy that had been with us since 1945.

I donīt have to tell you what happened to the unemployment
rate...because
many of you know from first hand experience. There were more
failures and bankruptcies than ever before. The middle class was
vanishing.
Those who knew what they were doing invested wisely and
moved up. Those who did not, including those who never had anything to
save
or invest, were moving down into the ranks of the poor. As
the saying goes, "THE RICH GET RICHER AND THE POOR GET POORER." The
traditional methods of making money will never allow you
to "move up" or "get rich." Inflation will see to that.

You have just received information that can give you financial freedom
for
the rest of your life, with "NO RISK" and "JUST A LITTLE BIT OF
EFFORT." You can make more money in the next few months than you have
ever
imagined. I should also point out that I will not see a penny
of this money, nor anyone else who has provided a testimonial for this
program.

I have retired from the program after sending thousands and thousands of

programs. Follow the program EXACTLY AS INSTRUCTED. Do not
change it in any way. It works exceedingly well as it is now. Remember
to
e-mail a copy of this exciting report to everyone you can think of.
One of the people you send this to may send out 50,000...and your name
will
be on every one of them! Remember though, the more you send
out, the more potential customers you will reach. So my friend, I have
given you the ideas, information, materials and opportunity to become
financially independent.

IT IS UP TO YOU!! NOW DO IT!!

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Before you delete this program from your in box, as I almost did, take a

little time to read it and REALLY THINK ABOUT IT. Get a pencil and
figure out what could happen when YOU participate. Figure out the worst
possible response and no matter how you calculate it, you will still
make a lot of money! You will definitely get back what you invested. Any

doubts you have will vanish when your first orders come in.

$$$ IT WORKS!!! $$$

Jody Jacobs Richmond, VA

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

HEREīS HOW THIS AMAZING PROGRAM WILL MAKE YOU THOUSANDS OF
DOLLAR$$$$!!!!

This method of raising capital REALLY WORKS 100% EVERY TIME. I am sure
that
you could use up to $50,000 or more in the next 90 days.
Before you say "BULL... ", please read this program carefully. This is
not
a chain letter, but a perfectly legal money making business.

As with all multi-level businesses, we build our business by recruiting
new
partners and selling our products. Every state in the USA allows you
to recruit new multi-level business partners, and we sell and deliver a
product for EVERY dollar received.

YOUR ORDERS COME BY MAIL AND ARE FILLED BY E-MAIL, so you are not
involved
in personal selling. You do it privately in your own
home, store or office. This is the EASIEST marketing plan anywhere! It
is
simply order-filling by email!

*******************************************************************
The product is informational and instructional material, keys to the
secrets
for everyone on how to open the doors to the magic world of E-
COMMERCE, the information highway, the wave of the future!

PLAN SUMMARY:

(1) You order the 4 reports listed below ($5 US each.) They come to you
by
email.

(2) Save a copy of this entire letter and put your name after Report #1
and
move the other names down.

(3) Via the internet, access Yahoo.com or any of the other major search
engines to locate hundreds of bulk email service companies (search for
"bulk email") and have them send 25,000 - 50,000 emails for you about
$49+).

(4) Orders will come to you by postal mail - simply email them the
Report
they ordered. Let me ask you - isnīt this about as easy as it gets?

************************************************************

By the way there are over 50 MILLION email addresses with millions more
joining the internet each year so donīt worry about "running out" or
"saturation". People are used to seeing and hearing the same
advertisements
every day on radio/TV. How many times have you received the
same pizza flyers on your door? Then one day you are hungry for pizza
and
you order one. Same thing with this letter. I received this letter
many times - then one day I decided it was time to try it.

************************************************************

YOU CAN START TODAY - JUST DO THESE EASY STEPS:

STEP #1. ORDER THE FOUR REPORTS

Order the four reports shown on the list below (you canīt sell them if
you
donīt order them). -- For each report, send $5.00 (US) CASH, the NAME
& NUMBER OF THE REPORT YOU ARE ORDERING, YOUR E-MAIL ADDRESS, and YOUR
NAME
& RETURN ADDRESS (in case of a
problem) to the person whose name appears on the list next to the
report.
MAKE SURE YOUR RETURN ADDRESS IS ON YOUR
ENVELOPE IN CASE OF ANY MAIL PROBLEMS! Within a few days you will
receive,
by e-mail, each of the four reports. Save them on your
computer so you can send them to the 1,000īs of people who will order
them
from you.

STEP #2. ADD YOUR MAILING ADDRESS TO THIS LETTER

a. Look below for the listing of the four reports.
b. After youīve ordered the four reports, delete the name and address
under
REPORT #4. This person has made it through the cycle.
c. Move the name and address under REPORT #3 down to REPORT #4.
d. Move the name and address under REPORT #2 down to REPORT #3.
e. Move the name and address under REPORT #1 down to REPORT #2.
f. Insert your name and address in the REPORT #1 position.
Please make sure you COPY ALL INFORMATION, every name and address,
ACCURATELY!

STEP #3. SAVE THIS LETTER

Take this entire letter, including the modified list of names, and save
it
to your computer. Make NO changes to these instructions. Now you are
ready to use this entire email to send by email to prospects.

Report #1 will tell you how to download bulk email software and email
addresses so you can send it out to thousands of people while you sleep!

Remember that 50,000+ new people are joining the internet every month.

Your cost to participate in this is practically nothing; surely you can
afford $20 (US) and initial bulk mailing cost. You obviously already
have a
computer and an Internet connection and e-mail is FREE!

There are two primary methods of building your downline:

METHOD #1: SENDING BULK E-MAIL Letīs say that you decide to start small,

just to see how it goes, and weīll assume you and all those
involved email out only 2,000 programs each. Letīs also assume that the
mailing receives a 0.5% response. The response could be much
better. Also, many people will email out hundreds of thousands of
programs
instead of 2,000. (Why stop at 2000?). But continuing with this
example, you send out only 2,000 programs. With a 0.5% response, that is

only 10 orders for

REPORT #1. Those 10 people respond by sending out 2,000 programs each
for a
total of 20,000. Out of those 0.5% 100 people respond and
order

REPORT #2. Those 100 mail out 2,000 programs each for a total of
200,000.
The 0.5% response to that is 1,000 orders for

REPORT #3. Those 1,000 send out 2,000 programs each for a 2,000,000
total.
The 0.5% response to that is 10,000 orders for

REPORT #4. Thatīs 10,000 $5 bills for you. CASH!!!

Your total income in this example is $50 + $500 + $5,000 + $50,000 for a

total of $55,550!!!

REMEMBER FRIEND, THIS IS ASSUMING 1,990 OUT OF THE 2,000 PEOPLE YOU MAIL
TO
WILL DO ABSOLUTELY NOTHING AND
TRASH THIS PROGRAM! DARE TO THINK FOR A MOMENT WHAT WOULD HAPPEN IF
EVERYONE, OR HALF SENT OUT 100,000
PROGRAMS INSTEAD OF 2,000. Believe me, many people will do just that,
and
more!

METHOD #2: PLACING FREE ADS ON THE INTERNET
Advertising on the internet is very, very inexpensive, and there are
HUNDREDS of FREE places to advertise. Letīs say you decide to start
small just to see how well it works. Assume your goal is to get ONLY 10
people to participate on your first level. (Placing a lot of FREE ads on

the Internet will EASILY get a larger response.) Also assume that
everyone
else in YOUR ORGANIZATION gets ONLY 10 downline members.
Look how this small number accumulates to achieve the STAGGERING results

below:

1st level--your first 10 send you
$5..................................$50
2nd level--10 members from those 10 ($5 x 100).............$500
3rd level--10 members from those 100 ($5 x 1000)........$5,000
4th level--10 members from those 1000 ($5 x 10,000)..$50,000

$$$$$$ THIS TOTALS ----------$55,550 $$$$$$

AMAZING ISNīT IT? Remember friends, this assumes that the people who
participate only recruit 10 people each. Think for a moment what
would happen if they got 20 people to participate! Most people get 100īs
of
participants and many will continue to work this program, sending
out programs WITH YOUR NAME ON THEM for years! THINK ABOUT IT!

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

People are going to get emails about this plan from you or somebody else
and
many will work this plan. The question is, donīt you want your
name to be on the emails they will send out?

* * * DONīT MISS OUT!!! * * * JUST TRY IT ONCE!!! * * *

* * SEE WHAT HAPPENS!!! *** YOUīLL BE AMAZED!!!* *

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ALWAYS PROVIDE SAME-DAY SERVICE ON ALL ORDERS!

This will guarantee that the e-mail THEY send out with YOUR name and
address
on it will be prompt because they canīt advertise until they
receive the report!

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

GET STARTED TODAY: PLACE YOUR ORDER FOR THE FOUR REPORTS NOW.

Notes: ALWAYS SEND $5 CASH (U.S. CURRENCY) FOR EACH REPORT. CHECKS NOT
ACCEPTED. Make sure the cash is concealed
by wrapping it in two sheets of paper. On one of those sheets of paper
write:

(a) the number & name of the report you are ordering

(b) your e-mail address, and

(c) your name & postal address.

REPORT #1 "The Insiderīs Guide to Advertising for Free on the Internet"

ORDER REPORT #1 FROM:
Andrew Skidmore
9379 Alexander Rd
Alexander, NY  14005
USA

REPORT #2 "The Insiderīs Guide to Sending Bulk E-mail on the Internet"

ORDER REPORT #2 FROM:
Lars Pedersen
Skejbygaardsvej 7, 1, 10
8240 Risskov
Denmark

REPORT #3 "The Secrets to Multilevel Marketing on the Internet"

ORDER REPORT #3 FROM:
John Cole Werner
PO Box 3281
Lihue, HI 96766

REPORT #4 "How to become a Millionaire utilizing the Power of Multilevel

Marketing and the Internet"

ORDER REPORT #4 FROM:
Zac Majors
2242 E Woodchuck Way
Sandy, UT 84093

******* TIPS FOR SUCCESS *******

TREAT THIS AS YOUR BUSINESS! Be prompt, professional, and follow the
directions accurately. Send for the four reports IMMEDIATELY
so you will have them when the orders start coming in because: When you
receive a $5 order, you MUST send out the requested
product/report. It is required for this to be a legal business and they
need the reports to send out their letters (with your name on them!)

-- ALWAYS PROVIDE SAME-DAY SERVICE ON THE ORDERS YOU RECEIVE. -- Be
patient
and persistent with this program - If you follow
the instructions exactly - results WILL FOLLOW. $$$$

******* YOUR SUCCESS GUIDELINES *******

Follow these guidelines to guarantee your success: If you donīt receive
20
orders for REPORT #1 within two weeks, continue advertising or
sending e-mails until you do. Then, a couple of weeks later you should
receive at least 100 orders for REPORT #2. If you donīt, continue
advertising or sending e-mails until you do. Once you have received 100
or
more orders for REPORT #2, YOU CAN RELAX, because the
system is already working for you, and the cash will continue to roll
in!

THIS IS IMPORTANT TO REMEMBER: Every time your name is moved down on the

list, you are placed in front of a DIFFERENT report. You
can KEEP TRACK of your PROGRESS by watching which report people are
ordering
from you.

To generate more income, simply send another batch of e-mails or
continue
placing ads and start the whole process again! There is no limit to
the income you will generate from this business!

Before you make your decision as to whether or not you participate in
this
program, please answer one question. ARE YOU HAPPY WITH
YOUR PRESENT INCOME OR JOB? If the answer is no, then please look at the

following facts about this super simple MLM program:

1. NO face to face selling, NO meetings, NO inventory! NO Telephone
calls,
NO big cost to start! NOthing to learn, NO skills needed! (Surely
you know how to send email?)

2. No equipment to buy - you already have a computer and internet
connection
- so you have everything you need to fill orders!

3. You are selling a product which does NOT COST ANYTHING TO PRODUCE OR
SHIP! (Emailing copies of the reports is FREE!)

4. All of your customers pay you in CA$H! This program will change your
LIFE FOREVER!! Look at the potential for you to be able to quit your
job and live a life of luxury you could only dream about! Imagine
getting
out of debt and buying the car and home of your dreams and being
able to work a super-high paying leisurely easy business from home!

$$$ FINALLY MAKE SOME DREAMS COME TRUE! $$$

ACT NOW! Take your first step toward achieving financial independence.
Order the reports and follow the program outlined above--
SUCCESS will be your reward.

Thank you for your time and consideration.

PLEASE NOTE: If you need help with starting a business, registering a
business name, learning how income tax is handled, etc., contact your
local office of the Small Business Administration (a Federal Agency) at
1-800-827-5722 for free help and answers to questions.

Also, the Internal Revenue Service offers free help via telephone and
free
seminars about business tax requirements. Your earnings are highly
dependent on your activities and advertising. The information contained
on
this site and in the report constitutes no guarantees stated nor
implied. In the event that it is determined that this site or report
constitutes a guarantee of any kind, that guarantee is now void. The
earnings
amounts listed on this site and in the report are estimates only. If you

have any questions of the legality of this program, contact the Office
of
Associate Director for Marketing Practices, Federal Trade Commission,
Bureau
of Consumer Protection in Washington, DC.

================================================

Under Bill s.1618 TITLE III passed by the 105th US Congress this letter
cannot be considered spam as long as the sender includes contact
information and a method of removal.

This is a one time e-mail transmission. No request for removal is
necessary.







From ftp-wg-owner@hethmon.com  Tue Sep 26 17:51:02 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id RAA16516
	for <ftpext-archive@lists.ietf.org>; Tue, 26 Sep 2000 17:51:01 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000926165259-58710-10 ; Tue, 26 Sep 2000 16:52:59 -0500
Received: from pjhont01.ijm.com.my (202.190.130.162 [202.190.130.162]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000926165254-62265-8 ; Tue, 26 Sep 2000 16:52:55 -0500
Message-Id: <20000926165254-62265-8@mail.hethmon.com>
Received: from blank (sdn-ar-005azphoeP255.dialsprint.net [158.252.129.17]) by pjhont01.ijm.com.my with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2232.9)
	id TS6TZ7P7; Wed, 27 Sep 2000 05:50:30 +0800
Date: Tue, 26 Sep 2000 16:52:57 -0500
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: <thunder1974@desertmail.com>
To: gdfdgf@fdngfl.it
Subject: Ftp-WG: HOME BASED BIZ! 5K PER WK!!




Work Smarter ....Not Harder!!

It's So Simple To Earn $2,000 - $5,000 Per Week Nowadays... 

I am searching for only 10 elite individuals with the work
 ethic necessary to generate a cash-flow for themselves of
 $2,000 - $5,000per week, and to increase that to over $20,000 
per month, in as little as four to six months. And you know what?

If you really have a burning desire and commitment, I guarantee 
you that you'll reach this explosive income!

Can you read a short script to our qualified leads, and then
 turn the interested prospects over to our electronic sales 
medium? (you will not be required to do any selling.)

Do you have the self-discipline to ignore the TV for a couple
 of hours per day? 

Are you looking for a legitimate home-based business opportunity,
 that is not multi-level marketing, or a chain-letter scheme? 

If you would like to build an amazing income that will grow
 lightning-fast and have you profit $1,000.00 every time only
 one prospect makes a purchase, then this is for you! You can
 build the business under my guidance and support without having
 to attend meetings or sell people things they don't need.

Call NOW our TOLL FREE, PRE-RECORDED Message:1-800-320-9895 Ext. 6131

We market a real product, that pays real commissions to you,
$1,000.00 per sale, just for making the initial contacts. 
With our turn-key lead generation systems you'll always talk
 to people who actually WANT to talk to you.

You have nothing to lose, there's no risk involved, nor is 
there any obligation whatsoever, and you may be qualified to
 earn thousands of extra dollars per month! So call now! 

The call is FREE, and there is absolutely no obligation, So 
what have you got to lose? 

Call Toll Free 1-800-320-9895 Ext. 6131

P.S. You literally have a once-in-a-lifetime opportunity to 
GET INVOLVED NOW! Don't let this one go by. You have absolutely nothing to lose! This could be the most fascinating and profitable business of your life!

Please, serious inquiries only.



**********************************************************************
All REMOVE requests AUTOMATICALLY honored upon receipt.

PLEASE understand that any effort to disrupt, close or block this
 REMOVE account can only result in difficulties for others wanting
 to be removed from our mailing list as it will be impossible to take
 anyone off the list if the remove instruction can not be received.

To be removed from our mailing list please
send an email to: listremoval@unbounded.com
and place remove in the subject
Thank you
*********************************************************




From ftp-wg-owner@hethmon.com  Wed Sep 27 11:13:52 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id LAA13841
	for <ftpext-archive@lists.ietf.org>; Wed, 27 Sep 2000 11:13:47 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000927101529-25594-9 ; Wed, 27 Sep 2000 10:15:29 -0500
Received: from wwwdb. (202.102.24.10 [202.102.24.10]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000927101521-35672-8 ; Wed, 27 Sep 2000 10:15:22 -0500
Received: from _[61.115.196.71]_by by wwwdb. (SMI-8.6/SMI-SVR4)
	id XAA09259; Wed, 27 Sep 2000 23:07:20 +0800
Message-Id: <200009271507.XAA09259@wwwdb.>
Received: from  [169.173.36.217] by _[61.115.196.71]_by with SMTP id A97C42E4 Wed, 27 Sep 2000 10:51:42 PDT
Mime-Version: 1.0
Content-Type: text/plain, charset="iso-8859-1"
Date: Wed, 27 Sep 2000 10:15:24 -0500
X-OldDate:  Wed, 27 Sep 2000 11:08:59
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: HotStock@real.com
To: ftp-wg@hethmon.com
Subject: Ftp-WG: Why So Much Smart Money Is So High on Read-Rite !!







Link to article below:

http://www.thestreet.com/comment/herbonthestreet/1096812.html


Commentary: Herb on TheStreet.com
--------------------------------------------------------------------------------
Why So Much Smart Money Is So High on Read-Rite
By Herb Greenberg 
Senior Columnist
9/26/00 6:30 AM ET 

Read-Rite(symbol= RDRT)

Feeling benevolent, so let's get bullish: 

Reading right: As I've written in RealMoney.com's Columnist Conversation, the 
one stock quite a few of my smartest sources are yapping about is Read-Rite 
(RDRT:Nasdaq - news - boards), the (until very recently) long-forgotten maker of 
heads for disk drives. The only reason I take it seriously is because of the variety of 
investors in the stock (from seasoned and savvy traders to some of the 
most-dogged researchers I know). 

Most of the sizzle surrounding the company in recent weeks has been tied to the 
launch of a new division called Scion Photonics, which is developing optical 
wafers for use in the fiber-optic networks, and which was initially funded with $25 
mil from Tyco Ventures and Roger McNamee's Integral Capital, which got a 
quarter of the company in return. 

But that's only part of the story: 

According to Scott Turkel of TCM Partners, who has had his share of hits and 
misses in this column, and who also happens to be the only on-the-record holder 
among my sources, the company without Scion is worth about where it trades 
today, $10.50, or around 1 times sales. "They're completely sold out in their core 
business in the fourth quarter," he says, "and for the first time, they have pricing 
power." (One reason is that disk drives are no longer sold mostly for PCs; they've 
become a staple in storage networks.) 

Scion, meanwhile, is currently valued at around $100 million (based on 
Tyco/Integral's 25% stake). "Chump change," says Turkel. That's because the 
valuation is without even having a marketable product; the first wafer isn't expected 
to hit the market until next year (which, I should point out, is why some skeptics 
are, uh, skeptical). 

But another very sharp manager I know, who is often short stocks, said he saw 
Read-Rite at several recent conferences, and "I thought the story got better 
between Salomon Smith Barney and Banc of America, both on the optics side 
and on their base business. They actually showed a slide of the optical wafer 
prototype they had made; they said they are sampling product with several 
customers. They said, Our customers have said, 'If you can make them, we'll buy 
them.' In other words, the move to optical is less theoretical than it was a month 
ago." 

What's more, according to this money manger, who is great at spotting nuances, 
"They went from saying, 'We'll be break-even cash flow in Q-4 from core 
businesses,' to saying, 'We are on allocation and we may actually make money in 
Q4' from the core business.' " 

Based on that, Turkel (who first bought the stock when it was $4 not long ago) 
thinks he now owns a $10 stock that is worth $25. 

P.S.: Read-Rite recently paid the first installment of interest on a convertible bond 
with cash, rather than stock, which was an alternative. (The cash came from the 
State of Wisconsin Investment Board, already a large Read-Rite investor.) 
Translation to some investors: The only reason the state paid with cash is because 
it thinks the stock is going higher. Or, put another way, Wisconsin, which already 
owns a 20% stake, wouldn't have sunk in even more cash if it didn't think it would 
make a decent return. (Did I really write something that glowing? Must be some 
kind of a market top!) 

(Voluntary Disclosure: Position- Long)



Read-Rite CEO gets into growth
By Janet Haney, CBS.MarketWatch.com
Last Update: [Timestamp]NewsWatch
Latest headlines
SAN FRANCISCO (CBS.MW) -- Read-Rite Chief Executive Officer Alan Lowe waxed positive about the future growth prospects for the magnetic-recording-head supplier.

Lowe told a crowd of investors and analysts during a presentation at the Banc of America Securities Investment Conference in San Francisco on Thursday that he expects huge unit growth potential for Read-Rite's (RDRT: news, msgs) December quarter, as well as the possibility of profitability.
Lowe added that the company is hiring people as fast as it can for its wafer fabrication facility.
For the September quarter, the CEO said Read-Rite has a "lot of product to ship in the last 10 days of the quarter."
Additionally, Lowe talked about Read-Rite's recent formation of an independent fiber optic company called Scion Photonics which he said hopes to go public.
Scion received funding from Tyco, which will make a presentation at the conference later Thursday.  
Janet Haney is a reporter for CBS.MarketWatch.com.













From ftp-wg-owner@hethmon.com  Wed Sep 27 17:47:40 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id RAA23080
	for <ftpext-archive@lists.ietf.org>; Wed, 27 Sep 2000 17:47:39 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000927164947-14609-10 ; Wed, 27 Sep 2000 16:49:47 -0500
Received: from riad.usk.pk.edu.pl (riad.usk.pk.edu.pl [149.156.132.152]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000927164938-54678-8 ; Wed, 27 Sep 2000 16:49:43 -0500
Received: from kts.edison.pk.edu.pl (kts.edison.pk.edu.pl [149.156.131.21])
	by riad.usk.pk.edu.pl (8.10.0.Beta10/8.10.0.Beta10) with SMTP id e8RLiTQ03509;
	Wed, 27 Sep 2000 23:44:29 +0200 (CET)
Received: from sdn-ar-002wimadiP272.dialsprint.net by kts.edison.pk.edu.pl (5.0/SMI-SVR4)
	id AB17687; Wed, 27 Sep 2000 22:59:14 --100
Message-Id: <shrmkcqnsqryaqfblwiw.ngjmtlircbtjm@honduras.com>
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7BIT
Date: Wed, 27 Sep 2000 16:49:44 -0500
X-OldDate:  Wed, 27 Sep 2000 17:34:53 -0500
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: freetv15@indiatimes.com
To: satellite4freeb@yahoo.com
Subject: Ftp-WG: Receive a FREE $1000 Satellite T.V. System!
Content-Transfer-Encoding: 7BIT

FREE SATELLITE T.V. SYSTEM

For a limited time we'll give you this top of the line Digital
Satellite System for FREE! We'll even include Free installation
and 3 FREE months of all the Movie Channels!

Enjoy over 500 Channels of Quality Digital Television on your
FREE Satellite TV System.  Why pay over $900 retail for these
items, when we're giving you this satellite package for free.


Call 888-514-6881 to be Guaranteed Your FREE Satellite Today


This is the New Dishplayer 500.  This Innovative 18" Satellite
has a digital 12 hour recording system so you can throw away
that old VCR. It also has WEB T.V., interactive T.V and a
gameing system.  PLUS on screen graphics, stereo receiver
and infrared remote.

All you have to do is call us to arrange delivery.

For less than the monthly cost of cable tv, Satellite television
offers over 500 channels of all digital video and cd audio sound,
while not missing out on local channels.  


Call 888-514-6881 to Begin Surfing through 500 Channels Today!


To be removed send email to gsnapple@yahoo.com




From ftp-wg-owner@hethmon.com  Thu Sep 28 05:56:23 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id FAA15846
	for <ftpext-archive@lists.ietf.org>; Thu, 28 Sep 2000 05:56:22 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000928045824-4419-10 ; Thu, 28 Sep 2000 04:58:24 -0500
Received: from proxy.taesung-h.ed.kyonggi.kr (210.178.2.253 [210.178.2.253]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000928045811-44002-8 ; Thu, 28 Sep 2000 04:58:19 -0500
Received: from 210.178.002.253 (1Cust14.tnt16.sfo3.da.uu.net [63.46.0.14])
	by proxy.taesung-h.ed.kyonggi.kr (8.9.3/8.9.3) with SMTP id SAA26824;
	Thu, 28 Sep 2000 18:39:32 +0900
Message-ID: <654321578951.LKJ87454@rly-92422.systemworks.co.jp>
X-PMFLAGS: Mozilla 4.5 [en] C-CCK-MDD {U.S.WEST.net} {Win95.U}
X-UIDL: f2364254862a58aeb1b128fsa426c9a6e
Date: Thu, 28 Sep 2000 04:58:21 -0500
X-OldDate:  Wed, 27 Sep 00 20:20:41 EST
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: jackie33@systemworks.co.jp
To: hannahsue88@concentric.net
Subject: Ftp-WG: Free Consultation + NO Set Up Fee E-Commerce Solution!!

Complete E-COMMERCE solutions to accept VISA, MasterCard, 
American Express, Discover and Checks for your website,
online store, traditional storefront or home based business.


WE OFFER


-Bank-approved merchant accounts
-Real-time, online payment transactions
-Shopping carts
-Terminals & printers
-95% approval rate
-Fast 5 - 7 day setup


A TURNKEY E-COMMERCE SOLUTION FOR


-Internet Storefront Businesses
-Mail Order and Phone Order
-Start-up Businesses
-Traditional Retail Stores
-Home based Businesses


Good Credit / Bad Credit / No Credit  **** NO PROBLEM ****


------FREE SET-UP------FREE SET-UP------FREE SET-UP----------


While OTHERS Charge You From $200 TO $350 To Get Set Up
WE CHARGE ZERO FOR SETUP FEES!!!
Limited Time Offer So Take Advantage NOW!!!


Secure transactions are authorized in true real-time
immediately upon submitting orders right on your website.


You can process transactions right over the Internet without
the need for separate transaction terminal or processing
software.


Dedicated data line for fast, 3-5 second transactions.
No installation required! 


Quick and easy account setup: 5 - 7 days.
_____________________________________________


Full Service E-Commerce Provider who offers complete
e-commerce solutions for thousands of businesses.


FREE CONSULTATION WITH AN INDUSTRY EXPERT,
NO OBLIGATION


-LOWEST MONTHLY SERVICE FEES as low as 1.59%
 Banks can charge up to 5% or higher


------FREE SET-UP------FREE SET-UP------FREE SET-UP--------


The Time Is Right!!!            Call Now!!!
-------------------------------------------------------------
To have a CONSULTANT contact you, please call us toll
free at:


1-888-480-9950


Please leave the following information.


First & Last Name_______________________________
Phone_______________________________________
Company Name________________________________
Product and or Service__________________________


A merchant account CONSULTANT will contact you soon.
==============================================


1-888-480-9950


Here's what our customers say...


Testimonial # 1 - I knew having a merchant account would
increase my sales, But never thought it would be so great.
In addition in being able to take major credit cards, I can
also do real time credit card processing on the internet and
receive orders while I am Sleeping. It's awesome! I encourage
every serious business owner to get one. Thanks. M.B./MI


Testimonial # 2 - " Being a home based business owner, no
one would approve me, until this came my way. I am more
than grateful. Within 10 days I had my merchant account
set up. I am more than pleased with the 24 hr. customer
service. My business has sky rocketed because I now can
accept credit card orders. " Oscar/FL
===================================================

This message was sent by an independent advertising company.
To be removed please send an email to: jasmine25@techie.com
and put REMOVE in the subject line.  Thank you!
We apologize for any inconvenience.




From ftp-wg-owner@hethmon.com  Thu Sep 28 12:42:53 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id MAA26111
	for <ftpext-archive@lists.ietf.org>; Thu, 28 Sep 2000 12:42:52 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000928113946-64498-10 ; Thu, 28 Sep 2000 11:39:46 -0500
Received: from baosoft.com (202.101.38.219 [202.101.38.219]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000928113941-36913-9 ; Thu, 28 Sep 2000 11:39:42 -0500
Received: from _[158.112.108.113]_by by baosoft.com (SMI-8.6/SMI-SVR4)
	id AAA13894; Fri, 29 Sep 2000 00:35:00 +0800
Message-Id: <200009281635.AAA13894@baosoft.com>
Received: from  [69.81.51.109] by _[158.112.108.113]_by with SMTP id A105C16E4 Thu, 28 Sep 2000 12:14:07 PDT
Mime-Version: 1.0
Content-Type: text/plain, charset="iso-8859-1"
Date: Thu, 28 Sep 2000 11:39:43 -0500
X-OldDate:  Thu, 28 Sep 2000 12:31:24
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: HotStocks@aba.com
To: ftp-wg@hethmon.com
Subject: Ftp-WG: Why So Much Smart Money Is So High on Read-Rite !!






Link to article below:

http://www.thestreet.com/comment/herbonthestreet/1096812.html


Commentary: Herb on TheStreet.com
--------------------------------------------------------------------------------
Why So Much Smart Money Is So High on Read-Rite
By Herb Greenberg 
Senior Columnist
9/26/00 6:30 AM ET 

Read-Rite(symbol= RDRT)

Feeling benevolent, so let's get bullish: 

Reading right: As I've written in RealMoney.com's Columnist Conversation, the 
one stock quite a few of my smartest sources are yapping about is Read-Rite 
(RDRT:Nasdaq - news - boards), the (until very recently) long-forgotten maker of 
heads for disk drives. The only reason I take it seriously is because of the variety of 
investors in the stock (from seasoned and savvy traders to some of the 
most-dogged researchers I know). 

Most of the sizzle surrounding the company in recent weeks has been tied to the 
launch of a new division called Scion Photonics, which is developing optical 
wafers for use in the fiber-optic networks, and which was initially funded with $25 
mil from Tyco Ventures and Roger McNamee's Integral Capital, which got a 
quarter of the company in return. 

But that's only part of the story: 

According to Scott Turkel of TCM Partners, who has had his share of hits and 
misses in this column, and who also happens to be the only on-the-record holder 
among my sources, the company without Scion is worth about where it trades 
today, $10.50, or around 1 times sales. "They're completely sold out in their core 
business in the fourth quarter," he says, "and for the first time, they have pricing 
power." (One reason is that disk drives are no longer sold mostly for PCs; they've 
become a staple in storage networks.) 

Scion, meanwhile, is currently valued at around $100 million (based on 
Tyco/Integral's 25% stake). "Chump change," says Turkel. That's because the 
valuation is without even having a marketable product; the first wafer isn't expected 
to hit the market until next year (which, I should point out, is why some skeptics 
are, uh, skeptical). 

But another very sharp manager I know, who is often short stocks, said he saw 
Read-Rite at several recent conferences, and "I thought the story got better 
between Salomon Smith Barney and Banc of America, both on the optics side 
and on their base business. They actually showed a slide of the optical wafer 
prototype they had made; they said they are sampling product with several 
customers. They said, Our customers have said, 'If you can make them, we'll buy 
them.' In other words, the move to optical is less theoretical than it was a month 
ago." 

What's more, according to this money manger, who is great at spotting nuances, 
"They went from saying, 'We'll be break-even cash flow in Q-4 from core 
businesses,' to saying, 'We are on allocation and we may actually make money in 
Q4' from the core business.' " 

Based on that, Turkel (who first bought the stock when it was $4 not long ago) 
thinks he now owns a $10 stock that is worth $25. 

P.S.: Read-Rite recently paid the first installment of interest on a convertible bond 
with cash, rather than stock, which was an alternative. (The cash came from the 
State of Wisconsin Investment Board, already a large Read-Rite investor.) 
Translation to some investors: The only reason the state paid with cash is because 
it thinks the stock is going higher. Or, put another way, Wisconsin, which already 
owns a 20% stake, wouldn't have sunk in even more cash if it didn't think it would 
make a decent return. (Did I really write something that glowing? Must be some 
kind of a market top!) 

(Voluntary Disclosure: Position- Long)



Read-Rite CEO gets into growth
By Janet Haney, CBS.MarketWatch.com
Last Update: [Timestamp]NewsWatch
Latest headlines
SAN FRANCISCO (CBS.MW) -- Read-Rite Chief Executive Officer Alan Lowe waxed positive about the future growth prospects for the magnetic-recording-head supplier.

Lowe told a crowd of investors and analysts during a presentation at the Banc of America Securities Investment Conference in San Francisco on Thursday that he expects huge unit growth potential for Read-Rite's (RDRT: news, msgs) December quarter, as well as the possibility of profitability.
Lowe added that the company is hiring people as fast as it can for its wafer fabrication facility.
For the September quarter, the CEO said Read-Rite has a "lot of product to ship in the last 10 days of the quarter."
Additionally, Lowe talked about Read-Rite's recent formation of an independent fiber optic company called Scion Photonics which he said hopes to go public.
Scion received funding from Tyco, which will make a presentation at the conference later Thursday.  
Janet Haney is a reporter for CBS.MarketWatch.com.












From ftp-wg-owner@hethmon.com  Fri Sep 29 00:32:27 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id AAA10940
	for <ftpext-archive@lists.ietf.org>; Fri, 29 Sep 2000 00:32:26 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000928233424-64034-9 ; Thu, 28 Sep 2000 23:34:25 -0500
Received: from baosoft.com (202.101.38.219 [202.101.38.219]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000928233420-36489-8 ; Thu, 28 Sep 2000 23:34:21 -0500
Received: from _[92.125.218.6]_by by baosoft.com (SMI-8.6/SMI-SVR4)
	id MAA23580; Fri, 29 Sep 2000 12:30:27 +0800
Message-Id: <200009290430.MAA23580@baosoft.com>
Received: from  [139.99.81.35] by _[92.125.218.6]_by with SMTP id A68C37E2 Fri, 29 Sep 2000 00:10:03 PDT
Mime-Version: 1.0
Content-Type: text/html; charset="us-ascii"
Date: Thu, 28 Sep 2000 23:34:22 -0500
X-OldDate:  Fri, 29 Sep 2000 00:27:19
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: HotStocks@aba.com
To: ftp-wg@hethmon.com
Subject: Ftp-WG: HOT NEW  BIOTECH COMPANY IN BARRONS THIS WEEK!!




Text version below:
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Dnaprint</title>
</head>

<body>

<p><b><font color="#000000" face="Arial" size="4">&nbsp;</font><font color="#000000" size="2"><font color="#000000" size="4">Dnaprint</font><font color="#0000ff" size="4">
(</font><font color="#cc0000" size="4">DNAP</font><font color="#0000ff" size="4">)
</font><font color="#000000" size="4">is an</font><font color="#0000ff" size="4">
</font><font color="#000000" size="4">emerging biotech company in this weeks </font><font color="#cc0000" size="4">Barrons</font><font color="#000000" size="4">.</font></font></b></p>
<p><br>
<font color="#000080" size="4">1) CEO (Dr. Tony Frudakis) Lead scientist for
Corixa starts his own company a few months ago<br>
<br>
2) Company is formed by a reverse merger of a pinksheet company<br>
<br>
3) DNAP has already completed the accounting to get off the pinksheets and
should be listed on the OTCBB soon.<br>
<br>
4) Dr. Frudakis was responsible for a patent that sold for $54,000,000 to Smith
Kline Beecham while he was at Corixa.<br>
<br>
5) Corixa's stock has gone from 14 Cents a few years ago to 50 Dollars today.<br>
<br>
6) According to the Barron's article, Dnaprint is in the late stages of forming
strategic alliances with major companies.</font></p>
<p><font color="#000080" size="4">7) </font><font size="4" color="#CC0000">DNAP</font><font color="#000080" size="4">
is trading at 23.5 cents as of Friday's close !!!!!!!!!!!!!!!</font></p>
<p><font size="2">&nbsp;This is not from a registered financial advisory, please
consult with a registered investment advisor before making an investment
decision. This communication (print or electronic) reflects our opinions and
does not necessarily reflect those of anyone else related to the firm and may be
in conflict with the views or official views of the companies mentioned. Readers
are advised that this publication (print or electronic) is issued solely for
informational purposes and is not to be construed as an offer to sell or the
solicitation of an offer to buy. This communication is based on information
available to the public. We are NOT a professional advisory service, broker,
investment firm or agency. We are NOT a stock picking service. The securities
profiled here are solely of our own opinion and it is not recommended that you
buy, sell, or hold based on what you find here. Please continue to perform your
own Due Diligence.&nbsp; Any investment decisions you make should be your own
predicated upon your own findings and judgments born from your own research. All
images and logo's used to represent DNAPrint are registered trademarks of
DNAPrint. Barrons is a registered trademark of Dow Jones &amp; Co., Inc..</font><font size="1"><br>
&nbsp;&nbsp;</font><font color="#000080" size="4"><br>
</font></p>

</body>

</html>

TEXT Version:
 
    Dnaprint (DNAP) is an emerging biotech company in this weeks Barrons.

1) CEO (Dr. Tony Frudakis) Lead scientist for Corixa starts his own company a 
   few months ago
    
2) Company is formed by a reverse merger of a pinksheet company

3) DNAP has already completed the accounting to get off the pinksheets and 
   should be listed on the OTCBB soon.

4) Dr. Frudakis was  responsible for a patent that sold for $54,000,000 to 
   Smith Kline Beecham while he was at Corixa.
 
5) Corixa's stock has gone from 14 Cents a few years ago to 50 Dollars today.
 
6) According to the Barron's article, Dnaprint is in the late stages of forming 
   strategic alliances with major companies.

7) Dnap is trading at 23.5 cents at Friday's close !!!!










From ftp-wg-owner@hethmon.com  Fri Sep 29 03:01:37 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id DAA24514
	for <ftpext-archive@lists.ietf.org>; Fri, 29 Sep 2000 03:01:36 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000929020302-21189-11 ; Fri, 29 Sep 2000 02:03:02 -0500
Received: from link.pl (link.pl [212.160.251.2]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000929020248-29588-9 ; Fri, 29 Sep 2000 02:02:59 -0500
Received: (from mail@localhost)
	by link.pl (8.11.0/8.11.0) id e8T6rYB10351;
	Fri, 29 Sep 2000 08:53:34 +0200
Received: from 2cust247.tnt3.league-city.tx.da.uu.net(63.28.253.247) by link.pl via smap (V2.1)
	id xmacb6821; Fri, 29 Sep 00 08:53:18 +0200
Message-ID: <qidGuBkjc6yc9c>
Date: Fri, 29 Sep 2000 02:03:00 -0500
X-OldDate:  29 Sep 00 1:49:42 AM
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: ioccVz6GA@golferslist.com
Subject: Ftp-WG: prepare yourself for the future.

 Greetings:

 This Opportunity is Exploding on the Internet!!!!
 A Referral Marketing Opportunity with a Minimum
 Commission GUARANTEE!!!
 The Sooner you sign up as a Free Post launch Member, the
 higher your position!   Anyone who signs up after you will be
 Your Down line!   Sign-up now and you even get a chance to
 win a $100.00  shopping spree at DHS Club!

 Want A FREE Membership in the Discount Home
 Shopping Club?
 Your FREE Membership Is Ready and Waiting.
 Join the Fastest Growing Down line Club on the Net!!!!
 Join The FREE Club Shop Post Launch Program!

 Now, join forces with other consumers and actually
 consolidate your buying power by becoming a
 DHS Club Member, FREE!

 As a Club Member you will also receive a position in
 our Network with our FREE down line building program -
 Post Launch.   This position will enable you to see first
 hand how our network marketing aspect of the Club
 works, without obligation, cost or risk.

 As a Post launch Participant (PLP), you can begin to
 see a network growing underneath you as a result of the
 efforts of your up line VIP Members.   With the Club's
 innovative team building method - The Vertical Integration
 Plan, you'll see just one of the many reasons this
 opportunity is so different.
 You will also be able to view your position and line
 of sponsorship after you have joined as a FREE
 Member........No Obligation!!

 To get your Free Membership, type  your First and Last Name in the
 Message Body. Mailto:aaarob@n2.com?subject=signmeup

 Ride the Wave of Success!!!!!!!

 *******************************************************************
 We apologize if this message has reached you in error.
 If you would like to be removed from future mailings,
 mailto:nitro535@etang.com?subject=remove
 *******************************************************************




From ftp-wg-owner@hethmon.com  Fri Sep 29 14:33:41 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id OAA04973
	for <ftpext-archive@lists.ietf.org>; Fri, 29 Sep 2000 14:33:39 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000929133407-35653-9 ; Fri, 29 Sep 2000 13:34:07 -0500
Received: from baosoft.com (202.101.38.219 [202.101.38.219]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000929133402-36775-8 ; Fri, 29 Sep 2000 13:34:03 -0500
Received: from _[182.127.98.82]_by by baosoft.com (SMI-8.6/SMI-SVR4)
	id CAA13556; Sat, 30 Sep 2000 02:29:59 +0800
Message-Id: <200009291829.CAA13556@baosoft.com>
Received: from  [111.115.40.76] by _[182.127.98.82]_by with SMTP id A60C33E5 Fri, 29 Sep 2000 14:14:13 PDT
Mime-Version: 1.0
Content-Type: text/plain, charset="iso-8859-1"
Date: Fri, 29 Sep 2000 13:34:04 -0500
X-OldDate:  Fri, 29 Sep 2000 14:31:29
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: HotStock-@earth.com
To: ftp-wg@hethmon.com
Subject: Ftp-WG: WHY SO MUCH SMART MONEY IS SO HIGH ON READ-RITE !









Link to article below:

http://www.thestreet.com/comment/herbonthestreet/1096812.html


Commentary: Herb on TheStreet.com
--------------------------------------------------------------------------------
Why So Much Smart Money Is So High on Read-Rite
By Herb Greenberg 
Senior Columnist
9/26/00 6:30 AM ET 

Read-Rite(symbol= RDRT)

Feeling benevolent, so let's get bullish: 

Reading right: As I've written in RealMoney.com's Columnist Conversation, the 
one stock quite a few of my smartest sources are yapping about is Read-Rite 
(RDRT:Nasdaq - news - boards), the (until very recently) long-forgotten maker of 
heads for disk drives. The only reason I take it seriously is because of the variety of 
investors in the stock (from seasoned and savvy traders to some of the 
most-dogged researchers I know). 

Most of the sizzle surrounding the company in recent weeks has been tied to the 
launch of a new division called Scion Photonics, which is developing optical 
wafers for use in the fiber-optic networks, and which was initially funded with $25 
mil from Tyco Ventures and Roger McNamee's Integral Capital, which got a 
quarter of the company in return. 

But that's only part of the story: 

According to Scott Turkel of TCM Partners, who has had his share of hits and 
misses in this column, and who also happens to be the only on-the-record holder 
among my sources, the company without Scion is worth about where it trades 
today, $10.50, or around 1 times sales. "They're completely sold out in their core 
business in the fourth quarter," he says, "and for the first time, they have pricing 
power." (One reason is that disk drives are no longer sold mostly for PCs; they've 
become a staple in storage networks.) 

Scion, meanwhile, is currently valued at around $100 million (based on 
Tyco/Integral's 25% stake). "Chump change," says Turkel. That's because the 
valuation is without even having a marketable product; the first wafer isn't expected 
to hit the market until next year (which, I should point out, is why some skeptics 
are, uh, skeptical). 

But another very sharp manager I know, who is often short stocks, said he saw 
Read-Rite at several recent conferences, and "I thought the story got better 
between Salomon Smith Barney and Banc of America, both on the optics side 
and on their base business. They actually showed a slide of the optical wafer 
prototype they had made; they said they are sampling product with several 
customers. They said, Our customers have said, 'If you can make them, we'll buy 
them.' In other words, the move to optical is less theoretical than it was a month 
ago." 

What's more, according to this money manger, who is great at spotting nuances, 
"They went from saying, 'We'll be break-even cash flow in Q-4 from core 
businesses,' to saying, 'We are on allocation and we may actually make money in 
Q4' from the core business.' " 

Based on that, Turkel (who first bought the stock when it was $4 not long ago) 
thinks he now owns a $10 stock that is worth $25. 

P.S.: Read-Rite recently paid the first installment of interest on a convertible bond 
with cash, rather than stock, which was an alternative. (The cash came from the 
State of Wisconsin Investment Board, already a large Read-Rite investor.) 
Translation to some investors: The only reason the state paid with cash is because 
it thinks the stock is going higher. Or, put another way, Wisconsin, which already 
owns a 20% stake, wouldn't have sunk in even more cash if it didn't think it would 
make a decent return. (Did I really write something that glowing? Must be some 
kind of a market top!) 

(Voluntary Disclosure: Position- Long)



Read-Rite CEO gets into growth
By Janet Haney, CBS.MarketWatch.com
Last Update: [Timestamp]NewsWatch
Latest headlines
SAN FRANCISCO (CBS.MW) -- Read-Rite Chief Executive Officer Alan Lowe waxed positive about the future growth prospects for the magnetic-recording-head supplier.

Lowe told a crowd of investors and analysts during a presentation at the Banc of America Securities Investment Conference in San Francisco on Thursday that he expects huge unit growth potential for Read-Rite's (RDRT: news, msgs) December quarter, as well as the possibility of profitability.
Lowe added that the company is hiring people as fast as it can for its wafer fabrication facility.
For the September quarter, the CEO said Read-Rite has a "lot of product to ship in the last 10 days of the quarter."
Additionally, Lowe talked about Read-Rite's recent formation of an independent fiber optic company called Scion Photonics which he said hopes to go public.
Scion received funding from Tyco, which will make a presentation at the conference later Thursday.  
Janet Haney is a reporter for CBS.MarketWatch.com.















From ftp-wg-owner@hethmon.com  Fri Sep 29 22:31:13 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id WAA11043
	for <ftpext-archive@lists.ietf.org>; Fri, 29 Sep 2000 22:31:13 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000929213319-26526-10 ; Fri, 29 Sep 2000 21:33:19 -0500
Received: from Server02 (216-119-139-149.ipset19.wt.net [216.119.139.149]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000929213313-37941-8 ; Fri, 29 Sep 2000 21:33:14 -0500
Message-Id: <221.387495.778856@Server02>
Date: Fri, 29 Sep 2000 21:33:16 -0500
X-OldDate:  Fri, 29 Sep 2000 17:52:51
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: <amycable@123india.com>
Subject: Ftp-WG: LITTLE COMPANIES -- BIG OPPORTUNITIES


A CD will pay you how much? Less than 10% per year on your money? A real 
estate investment might double or even triple -- in how many years??? We 
found a little company whose stock was trading for pennies -- but they had a 
patent lurking in the background. We told our readers about it. In less than 
a year, this little company had been written up in several major 
publications and their investors had made over 600% on their money. Stocks 
on the over-the-counter bulletin board (OTC BB) are exploding. Deep in the 
heart of the OTC BB lies the next company ready to come out of nowhere, WOW 
the world and reward investors with HUGE gains! A company which has been 
reporting on Wall Street since 1992 is now covering this OTC BB market. Get 
your FREE SUBSCRIPTION today and explore the possibilities! 

FREE SUBSCRIPTION: Hit "Reply" and type "Subscribe" in the subject line. 

TO BE REMOVED: Hit "Reply" and type "Remove" in the subject line.


This message is sent in compliance with the new email bill section 301. 
Under Bill S.1618 TITLE III passed by the 105th US Congress, this message 
cannot be considered SPAM as long as we include the way to be removed, 
Paragraph (a)(c) of S.1618, further transmissions to you by the sender of 
this email may be stopped at no cost to you by sending a "Reply" email with 
"remove" typed into the subject line. We really will remove you immediately.

 
 
 
 
 
 
 
 
 
 
 
 



From ftp-wg-owner@hethmon.com  Sat Sep 30 18:24:03 2000
Received: from mail.hethmon.com (mail.hethmon.com [208.147.156.32])
	by ietf.org (8.9.1a/8.9.1a) with SMTP id SAA01605
	for <ftpext-archive@lists.ietf.org>; Sat, 30 Sep 2000 18:24:02 -0400 (EDT)
Received: from mail (mail.hethmon.com [208.147.156.32]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000930172457-35520-9 ; Sat, 30 Sep 2000 17:24:57 -0500
Received: from ACFcluster.NYU.EDU (AXP2.ACF.NYU.EDU [128.122.250.38]) by mail.hethmon.com
    (Hethmon Brothers Smtpd) id 20000930172454-35898-8 ; Sat, 30 Sep 2000 17:24:54 -0500
Received: from ACFcluster.NYU.EDU by ACFcluster.NYU.EDU (PMDF V5.2-33 #33915)
 id <01JUSJ79NZ6O003245@ACFcluster.NYU.EDU> for ftp-wg@hethmon.com; Sat,
 30 Sep 2000 18:20:27 EDT
Message-id: <01JUSKVPLWLW003245@ACFcluster.NYU.EDU>
MIME-version: 1.0
Content-type: TEXT/PLAIN; CHARSET=US-ASCII
Date: Sat, 30 Sep 2000 17:24:55 -0500
X-OldDate:  Sat, 30 Sep 2000 18:19:40 -0400 (EDT)
Sender: ftp-wg-owner <ftp-wg-owner@hethmon.com>
X-Listname: ftp-wg@hethmon.com
Reply-To: FTPEXT Working Group <ftp-wg@hethmon.com>
From: Stephen Tihor <TIHOR@ACFcluster.NYU.EDU>
To: ftp-wg@hethmon.com
Subject: Ftp-WG: Moderation?

Since the spammers are showing no moderation might this group add some.
Something like a one post approval requirement would avoid a lot of problems.



