[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Using raw to post data



   Ignore that last message. I changed it to https in an attempt to flail
   at a solution, and forgot I had changed it.
   Back to my previously reported problem.

   On Wed, Mar 4, 2015 at 8:23 AM, Michael Ryan <[1]michaelrtr@xxxxxxxxx>
   wrote:

   What!? Now I'm getting this:
   (GSKit) Peer not recognized or badly formatted message received.
   Why would this start popping up?

   On Tue, Mar 3, 2015 at 2:15 PM, Scott Klement <[2]sk@xxxxxxxxxxxxxxxx>
   wrote:

     The error on comm_read() is occurring because the session has been
     disconnected.� (Whether intentionally or not I don't know...)� �I
     don't really think a trace (wireshark or otherwise) is going to be
     very helpful, here.
     What's helpful is knowing exactly what the "working" version is
     sending so we can try to replicate it with HTTPAPI.
     On 3/3/2015 11:43 AM, Michael Ryan wrote:

     � � Thanks Scott. I should be able to set up a span port tomorrow
     and get
     � � the IBMi, a PC, and the device so I can trace all the traffic
     to and
     � � from the device.
     � � I know HTTPAPI gets an error at comm_read, but it certainly
     could be
     � � something that happens prior to that. I do see Communication
     Error
     � � flash on the device screen quickly, so I'm not invoking
     something
     � � correctly.
     � � On Tue, Mar 3, 2015 at 12:33 PM, Scott Klement
     <[1][3]sk@xxxxxxxxxxxxxxxx>
     � � wrote:
     � � � Mike,
     � � � The wireshark trace from the PC might be useful.��     (Don't need one
     � � � from the IBM i, the HTTPAPI debug file should have
     everything
     � � � needed, there.)
     � � � -SK
     � � � On 3/3/2015 11:02 AM, Michael Ryan wrote:
     � � � �� �� I have the source for this code, so I'll have
     to dig through
     � � � and see
     � � � �� �� what it provides.
     � � � �� �� I may be able to circle in a developer at the
     vendor.
     � � � �� �� I *do* have a Wireshark trace that they sent
     me, and one that
     � � � I
     � � � �� �� generated from my PC (which was successful).
     � � � �� �� I also have an IBMi trace (done with TRCCNN)
     that's showing
     � � � the HTTP
     � � � �� �� headers and the XML payload.
     � � � �� �� On Tue, Mar 3, 2015 at 11:52 AM, Scott Klement
     � � � <[1][2][4]sk@xxxxxxxxxxxxxxxx>

   � � �� �� wrote:
   � � �� �� �� Mike,
   � � �� �� �� Did they give you the values of these
   variables?
   � � �� �� �� xmlInput = request.Text;
   � � �� �� �� url.Text
   � � �� �� �� httpRequest.ContentType = contentType.Text;
   � � �� �� On 3/3/2015 10:24 AM, Michael Ryan wrote:
   � � �� �� ��� ��� This is how it's being done in C#.
   Does this shed any
   � � light?
   � � �� �� thanks!
   � � �� �� ��� ��� ���� ���� ����   � � private string
   � � httpPost()
   � � �� �� ��� ��� � � � � � � ����   {
   � � �� �� ��� ��� � � � � � � � � �
   � ���
   � � HttpWebRequest
   � � �� �� httpRequest;
   � � �� �� ��� ��� � � � � � � � � �
   � ���
   � � HttpWebResponse
   � � �� �� httpResponse;
   � � �� �� ��� ��� � � � � � � � � �
   � ���
   � � Stream
   � � �� �� httpPostStream;
   � � �� �� ��� ��� � � � � � � � � �
   � ���
   � � BinaryReader
   � � �� �� httpResponseStream;
   � � �� �� ��� ��� � � � � � � � � �
   � ���
   � � Byte[] postBytes;
   � � �� �� ��� ��� � � � � � � � � �
   � ���
   � � string xmlInput;
   � � �� �� ��� ��� � � � � � � � � �
   � ���
   � � Byte[] response;
   � � �� �� ��� ��� �
   � � �� �� ��� ��� � � � � � � � � �
   � ��
   � � �� �� ServicePointManager.SecurityProtocol =
   � � �� �� ��� ��� SecurityProtocolType.Ssl3;
   � � �� �� ��� ��� �
   � � �� �� ��� ��� � � � � � � � � �
   � �
   � � �� �� ��� ��� � � � � � � � � �
   � � �
   � � xmlInput =
   � � �� �� request.Text;//.Replace("\r",
   � � �� �� ��� ��� "\r\n") + '\n' + '\r';
   � � �� �� ��� ��� �
   � � �� �� ��� ��� � � � � � � � � �
   � ���
   � � httpRequest =
   � � �� �� ��� ���   (HttpWebRequest)WebRequest.CreateDefault(new
   � � Uri(url.Text));
   � � �� �� ��� ��� � � � �
   � � �� �� ��� ��� �
   � � �� �� ��� ��� � � � � � � � � �
   � ��
   � � �� �� httpRequest.KeepAlive = persist.Checked;
   � � �� �� ��� ��� �
   � � �� �� ��� ��� �
   � � �� �� ��� ��� � � � � � � � � �
   � ���
   � � httpRequest.Method
   � � �� �� = "POST";
   � � �� �� ��� ��� � � � � � � � � �
   � �
   � � �� �� ��� ��� � � � � � � � � �
   � � �
   � � �� �� httpRequest.Proxy.Credentials =
   � � �� �� ��� ���   System.Net.CredentialCache.DefaultCredentials;
   � � �� �� ��� ��� � � � � � � � � �
   � ���
   � � postBytes =
   � � �� �� Encoding.UTF8.GetBytes(xmlInput);
   � � �� �� ��� ��� �
   � � �� �� ��� ��� � � � � � � � � �
   � ��
   � � �� �� httpRequest.ContentLength = postBytes.Length;
   � � �� �� ��� ��� � � � � � � � � �
   � ��
   � � �� �� httpRequest.ContentType = contentType.Text;
   � � �� �� ��� ��� �
   � � �� �� ��� ��� � � � � � � � � �
   � ���
   � � httpPostStream =
   � � �� �� httpRequest.GetRequestStream();
   � � �� �� ��� ��� �
   � � �� �� ��� ��� � � � � � � � � �
   � ��
   � � �� �� httpPostStream.Write(postBytes, 0,
   � � �� �� ��� ��� postBytes.Length);
   � � �� �� ��� ��� � � � � � � � � �
   � � �
   � � �� �� httpPostStream.Close();
   � � �� �� ��� ��� � � � � � � � � �
   � ���
   � � httpResponse =
   � � �� �� ��� ���   (HttpWebResponse)httpRequest.GetResponse();
   � � �� �� ��� ��� �
   � � �� �� ��� ��� � � � � � � � � �
   � ���
   � � httpResponseStream
   � � �� �� = new
   � � �� �� ��� ���   BinaryReader(httpResponse.GetResponseStream(),
   � � Encoding.ASCII);
   � � �� �� ��� ��� � � � � � � � � �
   � ���� int
   � � lengthToRead =
   � � �� �� int.Parse(packetLength.Text);
   � � �� �� ��� ��� � � � � � � � � �
   � ���� if
   � � (lengthToRead ==
   � � �� �� 0)
   � � �� �� ��� ��� � � � � � � � � �
   � � � �
   � � � ��
   � � �� �� lengthToRead =
   � � �� �� ��� ��� (Int32)httpResponse.ContentLength;
   � � �� �� ��� ��� � � � � � � � � �
   � ���
   � � response =
   � � �� �� ��� ���   httpResponseStream.ReadBytes(lengthToRead);
   � � �� �� ��� ��� � � � � � � � � �
   � ���
   � � return
   � � �� �� ��� ���   System.Text.Encoding.ASCII.GetString(response);
   � � �� �� ��� ��� � � � � � � ����   }
   � � �� �� ��� ��� On Tue, Mar 3, 2015 at 10:49 AM,
   Charles Wilt

     � � � �� �� �� ��� ���     <[1][2][3][5]charles.wilt@xxxxxxxxx> wrote:
     � � � �� �� �� ��� ��� ��� ����     � As Paul points out,
     � � � wireshark by itself can only
     � � � �� �� �� capture data
     � � � �� �� �� ��� ��� ��� to/from
     � � � �� �� �� ��� ��� ��� ����     � your PC.
     � � � �� �� �� ��� ��� ��� ����     � You might be able to
     � � � reconfigure your network
     � � � �� �� �� switch to
     � � � �� �� �� ��� ��� ��� duplicate
     other
     � � � �� �� �� ��� ��� ��� ����     � traffic to your PC.
     � � � �� �� �� ��� ��� ��� ����     � However, easier just to
     � � � start a comm trace on
     � � � �� �� �� your IBM i to
     � � � �� �� �� ��� ��� ��� capture the
     � � � �� �� �� ��� ��� ��� ����     � packets it is sending.
     � � � �� �� �� ��� ��� ��� ����     � Charles
     � � � �� �� �� ��� ��� ��� ����     � On Tue, Mar 3, 2015 at 9:26
     � � � AM, Michael Ryan
     � � � �� �� �� ��� ��� ���     <[1][2][3][4][6]michaelrtr@xxxxxxxxx>

   � � �� �� �� ��� ��� ��� ���� �
   wrote:
   � � �� �� �� ��� ��� ��� ����   ���� � ����� �
   � � Ok...I'm using Wireshark to
   � � �� �� �� capture the packets, but I
   � � �� �� �� ��� ��� ��� seem to
   � � �� �� �� ��� ��� ��� ����   ���� � be
   � � �� �� �� ��� ��� ��� ����   ���� � ����� � having
   � � problems. There's a
   � � �� �� �� test program that runs on
   � � �� �� �� ��� ��� ��� my PC. I'm
   � � �� �� �� ��� ��� ��� ����   ���� � able to
   � � �� �� �� ��� ��� ��� ����   ���� � ����� �
   � � capture and display the
   � � �� �� �� packets between my PC and the
   � � �� �� �� ��� ��� ��� device.
   � � �� �� �� ��� ��� ��� ����   ���� � That
   � � �� �� �� ��� ��� ��� ����   ���� � ����� �
   � � process works, and the packets
   � � �� �� �� are what I expect.�
   � � �� �� �� ��� ��� ��� ����   ���� � ����� � I'm
   � � having a problem
   � � �� �� �� specifying two different hosts
   � � �� �� �� ��� ��� ��� (the IBMi
   � � �� �� �� ��� ��� ��� ����   ���� � and the
   � � �� �� �� ��� ��� ��� ����   ���� � ����� �
   � � device) for either capturing
   � � �� �� �� just those packets
   � � �� �� �� ��� ��� ��� (capture
   � � �� �� �� ��� ��� ��� ����   ���� � filter) or
   � � �� �� �� ��� ��� ��� ����   ���� � ����� �
   � � displaying just those packets
   � � �� �� �� (display filter). Any
   � � �� �� �� ��� ��� ��� ideas? What
   � � �� �� �� ��� ��� ��� ����   ���� � do I
   � � �� �� �� ��� ��� ��� ����   ���� � ����� � need
   � � to specify for capture
   � � �� �� �� and/or display filters to
   � � �� �� �� ��� ��� ��� see all
   � � �� �� �� ��� ��� ��� ����   ���� � the
   � � �� �� �� ��� ��� ��� ����   ���� � ����� �
   � � packets on the network that
   � � �� �� �� are between these two IP
   � � �� �� �� ��� ��� ��� addresses?
   � � �� �� �� ��� ��� ��� ����   ���� � ����� �
   � � Thanks!
   � � �� �� �� ��� ��� ��� ����   ���� � ����� � On
   � � Mon, Mar 2, 2015 at 2:14
   � � �� �� �� PM, Michael Ryan
   � � � �� �� �� ��� ��� ��� ����   ���� �

     � � � <[1][2][3][4][5][7]michaelrtr@xxxxxxxxx>
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � wrote:
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � All
     � � � good thoughts Mike. I plan
     � � � �� �� �� on getting the traces
     � � � �� �� �� ��� ��� ��� tomorrow
     � � � �� �� �� ��� ��� ��� ����     ���� � with
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � Wireshark. I'll share what I
     � � � �� �� �� get in hopes you all can
     � � � �� �� �� ��� ��� ��� help!
     � � � �� �� �� ��� ��� ��� ����     ���� � Thanks!
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � On
     � � � Mon, Mar 2, 2015 at 2:01
     � � � �� �� �� PM, Mike Krebs
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �

   � � �� �� �� <[2][3][4][5][6][8]mkrebs@xxxxxxxxxxxxxxxxxx>
   wrote:
   � � �� �� �� ��� ��� ��� ����   ���� � ����
   � � ����� � Do you have the C#
   � � �� �� �� code running? Or are you using
   � � �� �� �� ��� ��� ��� it as
   � � �� �� �� ��� ��� ��� ����   ���� � template to
   � � �� �� �� ��� ��� ��� ����   ���� � ����
   � � ����� � work from? If you
   � � �� �� �� have working code and are not
   � � �� �� �� ��� ��� ��� sure of the
   � � �� �� �� ��� ��� ��� ����   ���� � ����
   � � ����� � parameters, then
   � � �� �� �� wireshark is probably a good
   � � �� �� �� ��� ��� ���   idea.������ If it
   � � �� �� �� ��� ��� ��� ����   ���� � is just
   � � �� �� �� ��� ��� ��� ����   ���� � ����
   � � ����� � a template, share the
   � � �� �� �� C# code if you can and one
   � � �� �� �� ��� ��� ��� of the
   � � �� �� �� ��� ��� ��� ����   ���� � ����
   � � ����� � multi-lingual
   � � �� �� �� programmers will help interpret.
   � � �� �� �� ��� ��� ��� ����   ���� � ����
   � � ����� � Considering it
   � � �� �� �� appears to be some sort of error
   � � �� �� �� ��� ��� ��� with the
   � � �� �� �� ��� ��� ��� ����   ���� � ����
   � � ����� � communication, I
   � � �� �� �� would go back to the "am I
   � � �� �� �� ��� ��� ��� hitting a valid
   � � �� �� �� ��� ��� ��� ����   ���� � url?"
   � � �� �� �� ��� ��� ��� ����   ���� � ����
   � � ����� � question. And that,
   � � �� �� �� the wireshark will help with.
   � � �� �� �� ��� ��� ��� You should
   � � �� �� �� ��� ��� ��� ����   ���� � clearly
   � � �� �� �� ��� ��� ��� ����   ���� � ����
   � � ����� � see the POST
   � � �� �� �� information being sent in the
   � � �� �� �� ��� ��� ��� wireshark.
   � � �� �� �� ��� ��� ��� ����   ���� � ����
   � � ����� � Since appears to be a
   � � �� �� �� credit/debit system, I
   � � �� �� �� ��� ��� ��� assume the data
   � � �� �� �� ��� ��� ��� ����   ���� � itself
   � � �� �� �� ��� ��� ��� ����   ���� � ����
   � � ����� � is going to be
   � � �� �� �� encrypted by TLS in the wireshark.
   � � �� �� �� ��� ��� ��� So, that
   � � �� �� �� ��� ��� ��� ����   ���� � is not
   � � �� �� �� ��� ��� ��� ����   ���� � ����
   � � ����� � going to be much
   � � �� �� �� help.
   � � �� �� �� ��� ��� ��� ����   ���� � ����
   � � ����� � Should your URL be
   � � �� �� �� https:?
   � � �� �� �� ��� ��� ��� ����   ���� � ����
   � � ����� � -----Original
   � � �� �� �� Message-----
   � � �� �� �� ��� ��� ��� ����   ���� � ����
   � � ����� � From:
   � � � �� �� �� ��� ��� ��

     � � � [3][4][5][6][7][9]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     ���� � ����
     � � � ����� �
     � � � �� �� �� ��� ��� ��
     � � �     [mailto:[4][5][6][7][8][10]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx]
     � � � �� �� �� On
     � � � �� �� �� ��� ��� ��� ����     ���� � Behalf Of
     � � � �� �� �� ��� ��� ��� ����     ���� � ����
     � � � ����� � Michael Ryan
     � � � �� �� �� ��� ��� ��� ����     ���� � ����
     � � � ����� � Sent: Monday, March
     � � � �� �� �� 2, 2015 11:07 AM
     � � � �� �� �� ��� ��� ��� ����     ���� � ����
     � � � ����� � To: HTTPAPI and
     � � � �� �� �� FTPAPI Projects
     � � � �� �� �� ��� ��� ��� ����     ���� � ����
     � � � ����� � Subject: Re: Using
     � � � �� �� �� raw to post data
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � Ok...I'm getting a -1 here in
     � � � �� �� �� recvresp:
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � eval������ ����
     � � � �� �� �� ������ wwRec = comm_lineread(
     peComm
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � ������ ����
     � � � �� �� �� ������ ������     ������ �����
     � � � ����
     � � � �� �� �� ������ ������     ������ ���
     � � � �� �� �� ��� ��� ���     ������ �����
     � � � ������ ������ � :
     � � � �� �� �� ��� ��� ��� ����     ���� � wwPos
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � ������ ����
     � � � �� �� �� ������ ������     ������ �����
     � � � ����
     � � � �� �� �� ������ ������     ������ ���
     � � � �� �� �� ��� ��� ���     ������ �����
     � � � ������ ������ � :
     � � � �� �� �� ��� ��� ��� ����     ���� � wwLeft
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � ������ ����
     � � � �� �� �� ������ ������     ������ �����
     � � � ����
     � � � �� �� �� ������ ������     ������ ���
     � � � �� �� �� ��� ��� ���     ������ �����
     � � � ������ ������ � :
     � � � �� �� �� ��� ��� ��� ����     ���� � peTimeout )
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � It
     � � � then throws the
     � � � �� �� �� 'recvresp(): end with err message.
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � Wireshark is my option?
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � Thanks...
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � On
     � � � Fri, Feb 27, 2015 at 4:30
     � � � �� �� �� PM, Charles Wilt
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � �� �� ��     <[5][6][7][8][9][11]charles.wilt@xxxxxxxxx>
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � wrote:
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � >������ ������ The
     � � � �� �� �� C# code might be helpful...
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � >������ ������ I'd
     � � � �� �� �� guess if it's doing a HTTP post, you'll
     � � � �� �� �� ��� ��� ��� be able to
     � � � �� �� �� ��� ��� ��� ����     ���� � use HTTP
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � API...
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � >������ ������ The
     � � � �� �� �� wireshark capture certainly will.
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � >������ ����
     � � � �� �� �� Charles
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � >������ ������ On
     � � � �� �� �� Fri, Feb 27, 2015 at 3:37 PM, Michael
     � � � �� �� �� ��� ��� ��� Ryan
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � �� �� ��     <[1][6][7][8][9][10][12]michaelrtr@xxxxxxxxx>
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � >������ ����
     � � � �� �� �� wrote:
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � >
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � >������ ����
     � � � �� �� �� ������ �������     � I think you're right.
     � � � I just
     � � � �� �� �� ��� ��� ��� asked them for
     � � � �� �� �� ��� ��� ��� ����     ���� � what is
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � actually
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � >������ ����
     � � � �� �� �� ������ sent and
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � >������ ����
     � � � �� �� �� ������ �������     � received by the
     � � � device, and
     � � � �� �� �� ��� ��� ��� they gave me
     � � � �� �� �� ��� ��� ��� ����     ���� � some C# code
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � (with
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � >������ ����
     � � � �� �� �� ������ does do an
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � >������ ����
     � � � �� �� �� ������ �������     � HTTP POST) and the
     � � � XML.
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � >
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � >
     � � � References
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � >
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � >������ ������ 1.
     � � � �� �� ��     mailto:[7][8][9][10][11][13]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � >
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � >
     � � � �� �� �� ��� ��� ��� ����     ���� � �
     � � � �� �� �� ��� ��� ��� ����     ���� � �
     � � � �� �� �� ��� ��� �
     � � � �� �� �
     � � �     ------------------------------------------------------------------
     � � � �� �� �� ��� ��� ��� ����     ���� � ----
     � � � �� �� �� ��� ��� ��� ����     ���� � ����
     � � � ����� � > - This is the
     � � � �� �� �� FTPAPI mailing list.������ To
     � � � �� �� �� ��� ��� ��� unsubscribe,
     � � � �� �� �� ��� ��� ��� ����     ���� � please go to:
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � >
     � � � �� �� �� ��� ��� �
     � � � �� �� �
     � � �     [8][9][10][11][12][14]http://www.scottklement.com/mailman/listinfo/f
     tpap
     � � � i
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � >
     � � � �� �� �� ��� ��� ��� ����     ���� � �
     � � � �� �� �� ��� ��� ��� ����     ���� � �
     � � � �� �� �� ��� ��� �
     � � � �� �� �
     � � �     ------------------------------------------------------------------
     � � � �� �� �� ��� ��� ��� ����     ���� � ----
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � > -
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � >
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � >
     � � � �� �� �� ��� ��� ��� ����     ���� � �
     � � � �� �� �� ��� ��� ��� ����     ���� � �
     � � � �� �� �� ��� ��� �
     � � � �� �� �
     � � �     ------------------------------------------------------------------
     � � � �� �� �� ��� ��� ��� ����     ���� � -----
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � This is the FTPAPI mailing
     � � � �� �� �� list.������ To unsubscribe,
     � � � �� �� �� ��� ��� ��� please go
     � � � �� �� �� ��� ��� ��� ����     ���� � to:
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� �
     � � � �� �� �� ��� ��� �
     � � � �� �� �
     � � �     [9][10][11][12][13][15]http://www.scottklement.com/mailman/listinfo/
     ftpa
     � � � pi
     � � � �� �� �� ��� ��� ��� ����     ���� � �
     � � � �� �� �� ��� ��� ��� ����     ���� � �
     � � � �� �� �� ��� ��� �
     � � � �� �� �
     � � �     ------------------------------------------------------------------
     � � � �� �� �� ��� ��� ��� ����     ���� � -----
     � � � �� �� �� ��� ��� ��� ����     ���� � References
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � 1.
     � � � �� �� ��     mailto:[11][12][13][14][16]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � 2.
     � � � �� �� ��     mailto:[12][13][14][15][17]mkrebs@xxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � 3.
     � � � �� �� �� ��� ��� ��
     � � �     mailto:[13][14][15][16][18]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � 4.
     � � � �� �� �� ��� ��� ��
     � � �     mailto:[14][15][16][17][19]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � 5.
     � � � �� �� ��     mailto:[15][16][17][18][20]charles.wilt@xxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � 6.
     � � � �� �� ��     mailto:[16][17][18][19][21]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � 7.
     � � � �� �� ��     mailto:[17][18][19][20][22]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � 8.
     � � � �� �� �� ��� ��� �
     � � � �� �� �
     � � �     [18][19][20][21][23]http://www.scottklement.com/mailman/listinfo/ftp
     api
     � � � �� �� �� ��� ��� ��� ����     ���� � ����� � 9.
     � � � �� �� �� ��� ��� �
     � � � �� �� �
     � � �     [19][20][21][22][24]http://www.scottklement.com/mailman/listinfo/ftp
     api
     � � � �� �� �� ��� ��� ��� ����     �
     � � � �� �� �� ��� ��� ��� �
     � � � �� �� �
     � � �     ------------------------------------------------------------------
     � � � �� �� �� ��� ��� ��� --
     � � � �� �� �� ��� ��� ��� ����     ���� � ---
     � � � �� �� �� ��� ��� ��� ����     ���� � This is the FTPAPI
     � � � mailing list.����� To
     � � � �� �� �� unsubscribe, please
     � � � �� �� �� ��� ��� ��� go to:
     � � � �� �� �� ��� ��� ��� ����     ���� �
     � � � �� �� �
     � � �     [20][21][22][23][25]http://www.scottklement.com/mailman/listinfo/ftp
     api
     � � � �� �� �� ��� ��� ��� ����     �
     � � � �� �� �� ��� ��� ��� �
     � � � �� �� �
     � � �     ------------------------------------------------------------------
     � � � �� �� �� ��� ��� ��� --
     � � � �� �� �� ��� ��� ��� ����     ���� � ---
     � � � �� �� �� ��� ��� ��� References
     � � � �� �� �� ��� ��� ��� ����     � 1.
     � � � mailto:[22][23][24][26]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     � 2.
     � � � mailto:[23][24][25][27]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     � 3.
     � � � mailto:[24][25][26][28]mkrebs@xxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     � 4.
     � � � �� �� ��     mailto:[25][26][27][29]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     � 5.
     � � � �� �� ��     mailto:[26][27][28][30]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     � 6.
     � � � mailto:[27][28][29][31]charles.wilt@xxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     � 7.
     � � � mailto:[28][29][30][32]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     � 8.
     � � � mailto:[29][30][31][33]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     � 9.
     � � � �� �� �
     � � �     [30][31][32][34]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� ��� ��� ����     10.
     � � � �� �� �
     � � �     [31][32][33][35]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� ��� ��� ����     11.
     � � � mailto:[32][33][34][36]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     12.
     � � � mailto:[33][34][35][37]mkrebs@xxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     13.
     � � � �� �� ��     mailto:[34][35][36][38]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     14.
     � � � �� �� ��     mailto:[35][36][37][39]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     15.
     � � � mailto:[36][37][38][40]charles.wilt@xxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     16.
     � � � mailto:[37][38][39][41]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     17.
     � � � mailto:[38][39][40][42]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� ��� ��� ����     18.
     � � � �� �� �
     � � �     [39][40][41][43]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� ��� ��� ����     19.
     � � � �� �� �
     � � �     [40][41][42][44]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� ��� ��� ����     20.
     � � � �� �� �
     � � �     [41][42][43][45]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� ��� �
     � � � �� �� �
     � � �     --------------------------------------------------------------------
     � � � �� �� �� ��� ��� ��� ---
     � � � �� �� �� ��� ��� ��� This is the
     FTPAPI mailing list.���
     � � � To unsubscribe,
     � � � �� �� �� please go to:
     � � � �� �� �� ��� ��� ��
     � � �     [42][43][44][46]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� ��� �
     � � � �� �� �
     � � �     --------------------------------------------------------------------
     � � � �� �� �� ��� ��� ��� ---
     � � � �� �� �� References
     � � � �� �� �� ��� ��� 1.
     mailto:[44][45][47]charles.wilt@xxxxxxxxx
     � � � �� �� �� ��� ��� 2.
     mailto:[45][46][48]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� ��� 3.
     mailto:[46][47][49]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� ��� 4.
     mailto:[47][48][50]mkrebs@xxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� ��� 5.
     � � � mailto:[48][49][51]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� ��� 6.
     � � � mailto:[49][50][52]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� ��� 7.
     mailto:[50][51][53]charles.wilt@xxxxxxxxx
     � � � �� �� �� ��� ��� 8.
     mailto:[51][52][54]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� ��� 9.
     mailto:[52][53][55]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� � 10.
     � � �     [53][54][56]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� � 11.
     � � �     [54][55][57]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� � 12.
     mailto:[55][56][58]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� � 13.
     mailto:[56][57][59]mkrebs@xxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� � 14.
     � � � mailto:[57][58][60]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� � 15.
     � � � mailto:[58][59][61]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� � 16.
     mailto:[59][60][62]charles.wilt@xxxxxxxxx
     � � � �� �� �� ��� � 17.
     mailto:[60][61][63]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� � 18.
     mailto:[61][62][64]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� � 19.
     � � �     [62][63][65]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� � 20.
     � � �     [63][64][66]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� � 21.
     � � �     [64][65][67]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� � 22.
     mailto:[65][66][68]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� � 23.
     mailto:[66][67][69]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� � 24.
     mailto:[67][68][70]mkrebs@xxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� � 25.
     � � � mailto:[68][69][71]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� � 26.
     � � � mailto:[69][70][72]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� � 27.
     mailto:[70][71][73]charles.wilt@xxxxxxxxx
     � � � �� �� �� ��� � 28.
     mailto:[71][72][74]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� � 29.
     mailto:[72][73][75]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� � 30.
     � � �     [73][74][76]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� � 31.
     � � �     [74][75][77]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� � 32.
     mailto:[75][76][78]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� � 33.
     mailto:[76][77][79]mkrebs@xxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� � 34.
     � � � mailto:[77][78][80]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� � 35.
     � � � mailto:[78][79][81]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� �� ��� � 36.
     mailto:[79][80][82]charles.wilt@xxxxxxxxx
     � � � �� �� �� ��� � 37.
     mailto:[80][81][83]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� � 38.
     mailto:[81][82][84]michaelrtr@xxxxxxxxx
     � � � �� �� �� ��� � 39.
     � � �     [82][83][85]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� � 40.
     � � �     [83][84][86]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� � 41.
     � � �     [84][85][87]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �� ��� � 42.
     � � �     [85][86][88]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �
     � � �     --------------------------------------------------------------------
     � � � �� �� �� ---
     � � � �� �� �� This is the FTPAPI mailing list.���     To unsubscribe,
     � � � please go to:
     � � � �� �� ��     [86][87][89]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �� �
     � � �     --------------------------------------------------------------------
     � � � �� �� �� ---
     � � � �� �
     � � �     --------------------------------------------------------------------
     � � � ---
     � � � �� �� This is the FTPAPI mailing list.��� To
     unsubscribe, please
     � � � go to:
     � � � �� ��     [87][88][90]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� �
     � � �     --------------------------------------------------------------------
     � � � ---
     � � � References
     � � � �� �� 1. mailto:[89][91]sk@xxxxxxxxxxxxxxxx
     � � � �� �� 2. mailto:[90][92]charles.wilt@xxxxxxxxx
     � � � �� �� 3. mailto:[91][93]michaelrtr@xxxxxxxxx
     � � � �� �� 4. mailto:[92][94]michaelrtr@xxxxxxxxx
     � � � �� �� 5. mailto:[93][95]mkrebs@xxxxxxxxxxxxxxxxxx
     � � � �� �� 6.
     mailto:[94][96]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� 7.
     mailto:[95][97]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� �� 8. mailto:[96][98]charles.wilt@xxxxxxxxx
     � � � �� �� 9. mailto:[97][99]michaelrtr@xxxxxxxxx
     � � � �� � 10. mailto:[98][100]michaelrtr@xxxxxxxxx
     � � � �� � 11.
     [99][101]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 12.
     [100][102]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 13. mailto:[101][103]michaelrtr@xxxxxxxxx
     � � � �� � 14. mailto:[102][104]mkrebs@xxxxxxxxxxxxxxxxxx
     � � � �� � 15.
     mailto:[103][105]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� � 16.
     mailto:[104][106]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� � 17. mailto:[105][107]charles.wilt@xxxxxxxxx
     � � � �� � 18. mailto:[106][108]michaelrtr@xxxxxxxxx
     � � � �� � 19. mailto:[107][109]michaelrtr@xxxxxxxxx
     � � � �� � 20.
     [108][110]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 21.
     [109][111]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 22.
     [110][112]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 23. mailto:[111][113]michaelrtr@xxxxxxxxx
     � � � �� � 24. mailto:[112][114]michaelrtr@xxxxxxxxx
     � � � �� � 25. mailto:[113][115]mkrebs@xxxxxxxxxxxxxxxxxx
     � � � �� � 26.
     mailto:[114][116]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� � 27.
     mailto:[115][117]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� � 28. mailto:[116][118]charles.wilt@xxxxxxxxx
     � � � �� � 29. mailto:[117][119]michaelrtr@xxxxxxxxx
     � � � �� � 30. mailto:[118][120]michaelrtr@xxxxxxxxx
     � � � �� � 31.
     [119][121]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 32.
     [120][122]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 33. mailto:[121][123]michaelrtr@xxxxxxxxx
     � � � �� � 34. mailto:[122][124]mkrebs@xxxxxxxxxxxxxxxxxx
     � � � �� � 35.
     mailto:[123][125]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� � 36.
     mailto:[124][126]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� � 37. mailto:[125][127]charles.wilt@xxxxxxxxx
     � � � �� � 38. mailto:[126][128]michaelrtr@xxxxxxxxx
     � � � �� � 39. mailto:[127][129]michaelrtr@xxxxxxxxx
     � � � �� � 40.
     [128][130]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 41.
     [129][131]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 42.
     [130][132]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 43.
     [131][133]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 44. mailto:[132][134]charles.wilt@xxxxxxxxx
     � � � �� � 45. mailto:[133][135]michaelrtr@xxxxxxxxx
     � � � �� � 46. mailto:[134][136]michaelrtr@xxxxxxxxx
     � � � �� � 47. mailto:[135][137]mkrebs@xxxxxxxxxxxxxxxxxx
     � � � �� � 48.
     mailto:[136][138]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� � 49.
     mailto:[137][139]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� � 50. mailto:[138][140]charles.wilt@xxxxxxxxx
     � � � �� � 51. mailto:[139][141]michaelrtr@xxxxxxxxx
     � � � �� � 52. mailto:[140][142]michaelrtr@xxxxxxxxx
     � � � �� � 53.
     [141][143]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 54.
     [142][144]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 55. mailto:[143][145]michaelrtr@xxxxxxxxx
     � � � �� � 56. mailto:[144][146]mkrebs@xxxxxxxxxxxxxxxxxx
     � � � �� � 57.
     mailto:[145][147]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� � 58.
     mailto:[146][148]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� � 59. mailto:[147][149]charles.wilt@xxxxxxxxx
     � � � �� � 60. mailto:[148][150]michaelrtr@xxxxxxxxx
     � � � �� � 61. mailto:[149][151]michaelrtr@xxxxxxxxx
     � � � �� � 62.
     [150][152]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 63.
     [151][153]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 64.
     [152][154]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 65. mailto:[153][155]michaelrtr@xxxxxxxxx
     � � � �� � 66. mailto:[154][156]michaelrtr@xxxxxxxxx
     � � � �� � 67. mailto:[155][157]mkrebs@xxxxxxxxxxxxxxxxxx
     � � � �� � 68.
     mailto:[156][158]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� � 69.
     mailto:[157][159]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� � 70. mailto:[158][160]charles.wilt@xxxxxxxxx
     � � � �� � 71. mailto:[159][161]michaelrtr@xxxxxxxxx
     � � � �� � 72. mailto:[160][162]michaelrtr@xxxxxxxxx
     � � � �� � 73.
     [161][163]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 74.
     [162][164]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 75. mailto:[163][165]michaelrtr@xxxxxxxxx
     � � � �� � 76. mailto:[164][166]mkrebs@xxxxxxxxxxxxxxxxxx
     � � � �� � 77.
     mailto:[165][167]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� � 78.
     mailto:[166][168]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � � �� � 79. mailto:[167][169]charles.wilt@xxxxxxxxx
     � � � �� � 80. mailto:[168][170]michaelrtr@xxxxxxxxx
     � � � �� � 81. mailto:[169][171]michaelrtr@xxxxxxxxx
     � � � �� � 82.
     [170][172]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 83.
     [171][173]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 84.
     [172][174]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 85.
     [173][175]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 86.
     [174][176]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � � �� � 87.
     [175][177]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � �     --------------------------------------------------------------------
     � � � ---
     � � � This is the FTPAPI mailing list.�� To unsubscribe,
     please go to:
     � � �     [176][178]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � �     --------------------------------------------------------------------
     � � � ---
     � �     --------------------------------------------------------------------
     ---
     � � This is the FTPAPI mailing list.�� To unsubscribe, please
     go to:
     � � [177][179]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �     --------------------------------------------------------------------
     ---
     References
     � � 1. mailto:[180]sk@xxxxxxxxxxxxxxxx
     � � 2. mailto:[181]sk@xxxxxxxxxxxxxxxx
     � � 3. mailto:[182]charles.wilt@xxxxxxxxx
     � � 4. mailto:[183]michaelrtr@xxxxxxxxx
     � � 5. mailto:[184]michaelrtr@xxxxxxxxx
     � � 6. mailto:[185]mkrebs@xxxxxxxxxxxxxxxxxx
     � � 7. mailto:[186]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � 8. mailto:[187]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � 9. mailto:[188]charles.wilt@xxxxxxxxx
     � �10. mailto:[189]michaelrtr@xxxxxxxxx
     � �11. mailto:[190]michaelrtr@xxxxxxxxx
     � �12. [191]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �13. [192]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �14. mailto:[193]michaelrtr@xxxxxxxxx
     � �15. mailto:[194]mkrebs@xxxxxxxxxxxxxxxxxx
     � �16. mailto:[195]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �17. mailto:[196]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �18. mailto:[197]charles.wilt@xxxxxxxxx
     � �19. mailto:[198]michaelrtr@xxxxxxxxx
     � �20. mailto:[199]michaelrtr@xxxxxxxxx
     � �21. [200]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �22. [201]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �23. [202]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �24. mailto:[203]michaelrtr@xxxxxxxxx
     � �25. mailto:[204]michaelrtr@xxxxxxxxx
     � �26. mailto:[205]mkrebs@xxxxxxxxxxxxxxxxxx
     � �27. mailto:[206]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �28. mailto:[207]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �29. mailto:[208]charles.wilt@xxxxxxxxx
     � �30. mailto:[209]michaelrtr@xxxxxxxxx
     � �31. mailto:[210]michaelrtr@xxxxxxxxx
     � �32. [211]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �33. [212]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �34. mailto:[213]michaelrtr@xxxxxxxxx
     � �35. mailto:[214]mkrebs@xxxxxxxxxxxxxxxxxx
     � �36. mailto:[215]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �37. mailto:[216]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �38. mailto:[217]charles.wilt@xxxxxxxxx
     � �39. mailto:[218]michaelrtr@xxxxxxxxx
     � �40. mailto:[219]michaelrtr@xxxxxxxxx
     � �41. [220]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �42. [221]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �43. [222]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �44. [223]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �45. mailto:[224]charles.wilt@xxxxxxxxx
     � �46. mailto:[225]michaelrtr@xxxxxxxxx
     � �47. mailto:[226]michaelrtr@xxxxxxxxx
     � �48. mailto:[227]mkrebs@xxxxxxxxxxxxxxxxxx
     � �49. mailto:[228]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �50. mailto:[229]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �51. mailto:[230]charles.wilt@xxxxxxxxx
     � �52. mailto:[231]michaelrtr@xxxxxxxxx
     � �53. mailto:[232]michaelrtr@xxxxxxxxx
     � �54. [233]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �55. [234]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �56. mailto:[235]michaelrtr@xxxxxxxxx
     � �57. mailto:[236]mkrebs@xxxxxxxxxxxxxxxxxx
     � �58. mailto:[237]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �59. mailto:[238]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �60. mailto:[239]charles.wilt@xxxxxxxxx
     � �61. mailto:[240]michaelrtr@xxxxxxxxx
     � �62. mailto:[241]michaelrtr@xxxxxxxxx
     � �63. [242]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �64. [243]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �65. [244]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �66. mailto:[245]michaelrtr@xxxxxxxxx
     � �67. mailto:[246]michaelrtr@xxxxxxxxx
     � �68. mailto:[247]mkrebs@xxxxxxxxxxxxxxxxxx
     � �69. mailto:[248]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �70. mailto:[249]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �71. mailto:[250]charles.wilt@xxxxxxxxx
     � �72. mailto:[251]michaelrtr@xxxxxxxxx
     � �73. mailto:[252]michaelrtr@xxxxxxxxx
     � �74. [253]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �75. [254]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �76. mailto:[255]michaelrtr@xxxxxxxxx
     � �77. mailto:[256]mkrebs@xxxxxxxxxxxxxxxxxx
     � �78. mailto:[257]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �79. mailto:[258]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �80. mailto:[259]charles.wilt@xxxxxxxxx
     � �81. mailto:[260]michaelrtr@xxxxxxxxx
     � �82. mailto:[261]michaelrtr@xxxxxxxxx
     � �83. [262]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �84. [263]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �85. [264]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �86. [265]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �87. [266]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �88. [267]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �89. mailto:[268]sk@xxxxxxxxxxxxxxxx
     � �90. mailto:[269]charles.wilt@xxxxxxxxx
     � �91. mailto:[270]michaelrtr@xxxxxxxxx
     � �92. mailto:[271]michaelrtr@xxxxxxxxx
     � �93. mailto:[272]mkrebs@xxxxxxxxxxxxxxxxxx
     � �94. mailto:[273]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �95. mailto:[274]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � �96. mailto:[275]charles.wilt@xxxxxxxxx
     � �97. mailto:[276]michaelrtr@xxxxxxxxx
     � �98. mailto:[277]michaelrtr@xxxxxxxxx
     � �99. [278]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 100. [279]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 101. mailto:[280]michaelrtr@xxxxxxxxx
     � 102. mailto:[281]mkrebs@xxxxxxxxxxxxxxxxxx
     � 103. mailto:[282]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 104. mailto:[283]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 105. mailto:[284]charles.wilt@xxxxxxxxx
     � 106. mailto:[285]michaelrtr@xxxxxxxxx
     � 107. mailto:[286]michaelrtr@xxxxxxxxx
     � 108. [287]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 109. [288]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 110. [289]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 111. mailto:[290]michaelrtr@xxxxxxxxx
     � 112. mailto:[291]michaelrtr@xxxxxxxxx
     � 113. mailto:[292]mkrebs@xxxxxxxxxxxxxxxxxx
     � 114. mailto:[293]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 115. mailto:[294]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 116. mailto:[295]charles.wilt@xxxxxxxxx
     � 117. mailto:[296]michaelrtr@xxxxxxxxx
     � 118. mailto:[297]michaelrtr@xxxxxxxxx
     � 119. [298]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 120. [299]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 121. mailto:[300]michaelrtr@xxxxxxxxx
     � 122. mailto:[301]mkrebs@xxxxxxxxxxxxxxxxxx
     � 123. mailto:[302]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 124. mailto:[303]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 125. mailto:[304]charles.wilt@xxxxxxxxx
     � 126. mailto:[305]michaelrtr@xxxxxxxxx
     � 127. mailto:[306]michaelrtr@xxxxxxxxx
     � 128. [307]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 129. [308]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 130. [309]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 131. [310]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 132. mailto:[311]charles.wilt@xxxxxxxxx
     � 133. mailto:[312]michaelrtr@xxxxxxxxx
     � 134. mailto:[313]michaelrtr@xxxxxxxxx
     � 135. mailto:[314]mkrebs@xxxxxxxxxxxxxxxxxx
     � 136. mailto:[315]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 137. mailto:[316]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 138. mailto:[317]charles.wilt@xxxxxxxxx
     � 139. mailto:[318]michaelrtr@xxxxxxxxx
     � 140. mailto:[319]michaelrtr@xxxxxxxxx
     � 141. [320]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 142. [321]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 143. mailto:[322]michaelrtr@xxxxxxxxx
     � 144. mailto:[323]mkrebs@xxxxxxxxxxxxxxxxxx
     � 145. mailto:[324]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 146. mailto:[325]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 147. mailto:[326]charles.wilt@xxxxxxxxx
     � 148. mailto:[327]michaelrtr@xxxxxxxxx
     � 149. mailto:[328]michaelrtr@xxxxxxxxx
     � 150. [329]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 151. [330]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 152. [331]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 153. mailto:[332]michaelrtr@xxxxxxxxx
     � 154. mailto:[333]michaelrtr@xxxxxxxxx
     � 155. mailto:[334]mkrebs@xxxxxxxxxxxxxxxxxx
     � 156. mailto:[335]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 157. mailto:[336]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 158. mailto:[337]charles.wilt@xxxxxxxxx
     � 159. mailto:[338]michaelrtr@xxxxxxxxx
     � 160. mailto:[339]michaelrtr@xxxxxxxxx
     � 161. [340]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 162. [341]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 163. mailto:[342]michaelrtr@xxxxxxxxx
     � 164. mailto:[343]mkrebs@xxxxxxxxxxxxxxxxxx
     � 165. mailto:[344]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 166. mailto:[345]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 167. mailto:[346]charles.wilt@xxxxxxxxx
     � 168. mailto:[347]michaelrtr@xxxxxxxxx
     � 169. mailto:[348]michaelrtr@xxxxxxxxx
     � 170. [349]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 171. [350]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 172. [351]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 173. [352]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 174. [353]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 175. [354]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 176. [355]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 177. [356]http://www.scottklement.com/mailman/listinfo/ftpapi
     --------------------------------------------------------------------
     ---
     This is the FTPAPI mailing list.� To unsubscribe, please go to:
     [357]http://www.scottklement.com/mailman/listinfo/ftpapi
     --------------------------------------------------------------------
     ---

   -----------------------------------------------------------------------
   This is the FTPAPI mailing list.� To unsubscribe, please go to:
   [358]http://www.scottklement.com/mailman/listinfo/ftpapi
   -----------------------------------------------------------------------

References

   1. mailto:michaelrtr@xxxxxxxxx
   2. mailto:sk@xxxxxxxxxxxxxxxx
   3. mailto:sk@xxxxxxxxxxxxxxxx
   4. mailto:sk@xxxxxxxxxxxxxxxx
   5. mailto:charles.wilt@xxxxxxxxx
   6. mailto:michaelrtr@xxxxxxxxx
   7. mailto:michaelrtr@xxxxxxxxx
   8. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
   9. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  10. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  11. mailto:charles.wilt@xxxxxxxxx
  12. mailto:michaelrtr@xxxxxxxxx
  13. mailto:michaelrtr@xxxxxxxxx
  14. http://www.scottklement.com/mailman/listinfo/ftpap
  15. http://www.scottklement.com/mailman/listinfo/ftpa
  16. mailto:michaelrtr@xxxxxxxxx
  17. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  18. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  19. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  20. mailto:charles.wilt@xxxxxxxxx
  21. mailto:michaelrtr@xxxxxxxxx
  22. mailto:michaelrtr@xxxxxxxxx
  23. http://www.scottklement.com/mailman/listinfo/ftpapi
  24. http://www.scottklement.com/mailman/listinfo/ftpapi
  25. http://www.scottklement.com/mailman/listinfo/ftpapi
  26. mailto:michaelrtr@xxxxxxxxx
  27. mailto:michaelrtr@xxxxxxxxx
  28. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  29. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  30. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  31. mailto:charles.wilt@xxxxxxxxx
  32. mailto:michaelrtr@xxxxxxxxx
  33. mailto:michaelrtr@xxxxxxxxx
  34. http://www.scottklement.com/mailman/listinfo/ftpapi
  35. http://www.scottklement.com/mailman/listinfo/ftpapi
  36. mailto:michaelrtr@xxxxxxxxx
  37. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  38. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  39. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  40. mailto:charles.wilt@xxxxxxxxx
  41. mailto:michaelrtr@xxxxxxxxx
  42. mailto:michaelrtr@xxxxxxxxx
  43. http://www.scottklement.com/mailman/listinfo/ftpapi
  44. http://www.scottklement.com/mailman/listinfo/ftpapi
  45. http://www.scottklement.com/mailman/listinfo/ftpapi
  46. http://www.scottklement.com/mailman/listinfo/ftpapi
  47. mailto:charles.wilt@xxxxxxxxx
  48. mailto:michaelrtr@xxxxxxxxx
  49. mailto:michaelrtr@xxxxxxxxx
  50. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  51. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  52. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  53. mailto:charles.wilt@xxxxxxxxx
  54. mailto:michaelrtr@xxxxxxxxx
  55. mailto:michaelrtr@xxxxxxxxx
  56. http://www.scottklement.com/mailman/listinfo/ftpapi
  57. http://www.scottklement.com/mailman/listinfo/ftpapi
  58. mailto:michaelrtr@xxxxxxxxx
  59. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  60. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  61. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  62. mailto:charles.wilt@xxxxxxxxx
  63. mailto:michaelrtr@xxxxxxxxx
  64. mailto:michaelrtr@xxxxxxxxx
  65. http://www.scottklement.com/mailman/listinfo/ftpapi
  66. http://www.scottklement.com/mailman/listinfo/ftpapi
  67. http://www.scottklement.com/mailman/listinfo/ftpapi
  68. mailto:michaelrtr@xxxxxxxxx
  69. mailto:michaelrtr@xxxxxxxxx
  70. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  71. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  72. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  73. mailto:charles.wilt@xxxxxxxxx
  74. mailto:michaelrtr@xxxxxxxxx
  75. mailto:michaelrtr@xxxxxxxxx
  76. http://www.scottklement.com/mailman/listinfo/ftpapi
  77. http://www.scottklement.com/mailman/listinfo/ftpapi
  78. mailto:michaelrtr@xxxxxxxxx
  79. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  80. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  81. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  82. mailto:charles.wilt@xxxxxxxxx
  83. mailto:michaelrtr@xxxxxxxxx
  84. mailto:michaelrtr@xxxxxxxxx
  85. http://www.scottklement.com/mailman/listinfo/ftpapi
  86. http://www.scottklement.com/mailman/listinfo/ftpapi
  87. http://www.scottklement.com/mailman/listinfo/ftpapi
  88. http://www.scottklement.com/mailman/listinfo/ftpapi
  89. http://www.scottklement.com/mailman/listinfo/ftpapi
  90. http://www.scottklement.com/mailman/listinfo/ftpapi
  91. mailto:sk@xxxxxxxxxxxxxxxx
  92. mailto:charles.wilt@xxxxxxxxx
  93. mailto:michaelrtr@xxxxxxxxx
  94. mailto:michaelrtr@xxxxxxxxx
  95. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  96. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  97. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  98. mailto:charles.wilt@xxxxxxxxx
  99. mailto:michaelrtr@xxxxxxxxx
 100. mailto:michaelrtr@xxxxxxxxx
 101. http://www.scottklement.com/mailman/listinfo/ftpapi
 102. http://www.scottklement.com/mailman/listinfo/ftpapi
 103. mailto:michaelrtr@xxxxxxxxx
 104. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 105. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 106. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 107. mailto:charles.wilt@xxxxxxxxx
 108. mailto:michaelrtr@xxxxxxxxx
 109. mailto:michaelrtr@xxxxxxxxx
 110. http://www.scottklement.com/mailman/listinfo/ftpapi
 111. http://www.scottklement.com/mailman/listinfo/ftpapi
 112. http://www.scottklement.com/mailman/listinfo/ftpapi
 113. mailto:michaelrtr@xxxxxxxxx
 114. mailto:michaelrtr@xxxxxxxxx
 115. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 116. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 117. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 118. mailto:charles.wilt@xxxxxxxxx
 119. mailto:michaelrtr@xxxxxxxxx
 120. mailto:michaelrtr@xxxxxxxxx
 121. http://www.scottklement.com/mailman/listinfo/ftpapi
 122. http://www.scottklement.com/mailman/listinfo/ftpapi
 123. mailto:michaelrtr@xxxxxxxxx
 124. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 125. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 126. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 127. mailto:charles.wilt@xxxxxxxxx
 128. mailto:michaelrtr@xxxxxxxxx
 129. mailto:michaelrtr@xxxxxxxxx
 130. http://www.scottklement.com/mailman/listinfo/ftpapi
 131. http://www.scottklement.com/mailman/listinfo/ftpapi
 132. http://www.scottklement.com/mailman/listinfo/ftpapi
 133. http://www.scottklement.com/mailman/listinfo/ftpapi
 134. mailto:charles.wilt@xxxxxxxxx
 135. mailto:michaelrtr@xxxxxxxxx
 136. mailto:michaelrtr@xxxxxxxxx
 137. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 138. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 139. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 140. mailto:charles.wilt@xxxxxxxxx
 141. mailto:michaelrtr@xxxxxxxxx
 142. mailto:michaelrtr@xxxxxxxxx
 143. http://www.scottklement.com/mailman/listinfo/ftpapi
 144. http://www.scottklement.com/mailman/listinfo/ftpapi
 145. mailto:michaelrtr@xxxxxxxxx
 146. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 147. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 148. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 149. mailto:charles.wilt@xxxxxxxxx
 150. mailto:michaelrtr@xxxxxxxxx
 151. mailto:michaelrtr@xxxxxxxxx
 152. http://www.scottklement.com/mailman/listinfo/ftpapi
 153. http://www.scottklement.com/mailman/listinfo/ftpapi
 154. http://www.scottklement.com/mailman/listinfo/ftpapi
 155. mailto:michaelrtr@xxxxxxxxx
 156. mailto:michaelrtr@xxxxxxxxx
 157. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 158. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 159. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 160. mailto:charles.wilt@xxxxxxxxx
 161. mailto:michaelrtr@xxxxxxxxx
 162. mailto:michaelrtr@xxxxxxxxx
 163. http://www.scottklement.com/mailman/listinfo/ftpapi
 164. http://www.scottklement.com/mailman/listinfo/ftpapi
 165. mailto:michaelrtr@xxxxxxxxx
 166. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 167. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 168. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 169. mailto:charles.wilt@xxxxxxxxx
 170. mailto:michaelrtr@xxxxxxxxx
 171. mailto:michaelrtr@xxxxxxxxx
 172. http://www.scottklement.com/mailman/listinfo/ftpapi
 173. http://www.scottklement.com/mailman/listinfo/ftpapi
 174. http://www.scottklement.com/mailman/listinfo/ftpapi
 175. http://www.scottklement.com/mailman/listinfo/ftpapi
 176. http://www.scottklement.com/mailman/listinfo/ftpapi
 177. http://www.scottklement.com/mailman/listinfo/ftpapi
 178. http://www.scottklement.com/mailman/listinfo/ftpapi
 179. http://www.scottklement.com/mailman/listinfo/ftpapi
 180. mailto:sk@xxxxxxxxxxxxxxxx
 181. mailto:sk@xxxxxxxxxxxxxxxx
 182. mailto:charles.wilt@xxxxxxxxx
 183. mailto:michaelrtr@xxxxxxxxx
 184. mailto:michaelrtr@xxxxxxxxx
 185. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 186. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 187. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 188. mailto:charles.wilt@xxxxxxxxx
 189. mailto:michaelrtr@xxxxxxxxx
 190. mailto:michaelrtr@xxxxxxxxx
 191. http://www.scottklement.com/mailman/listinfo/ftpapi
 192. http://www.scottklement.com/mailman/listinfo/ftpapi
 193. mailto:michaelrtr@xxxxxxxxx
 194. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 195. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 196. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 197. mailto:charles.wilt@xxxxxxxxx
 198. mailto:michaelrtr@xxxxxxxxx
 199. mailto:michaelrtr@xxxxxxxxx
 200. http://www.scottklement.com/mailman/listinfo/ftpapi
 201. http://www.scottklement.com/mailman/listinfo/ftpapi
 202. http://www.scottklement.com/mailman/listinfo/ftpapi
 203. mailto:michaelrtr@xxxxxxxxx
 204. mailto:michaelrtr@xxxxxxxxx
 205. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 206. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 207. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 208. mailto:charles.wilt@xxxxxxxxx
 209. mailto:michaelrtr@xxxxxxxxx
 210. mailto:michaelrtr@xxxxxxxxx
 211. http://www.scottklement.com/mailman/listinfo/ftpapi
 212. http://www.scottklement.com/mailman/listinfo/ftpapi
 213. mailto:michaelrtr@xxxxxxxxx
 214. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 215. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 216. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 217. mailto:charles.wilt@xxxxxxxxx
 218. mailto:michaelrtr@xxxxxxxxx
 219. mailto:michaelrtr@xxxxxxxxx
 220. http://www.scottklement.com/mailman/listinfo/ftpapi
 221. http://www.scottklement.com/mailman/listinfo/ftpapi
 222. http://www.scottklement.com/mailman/listinfo/ftpapi
 223. http://www.scottklement.com/mailman/listinfo/ftpapi
 224. mailto:charles.wilt@xxxxxxxxx
 225. mailto:michaelrtr@xxxxxxxxx
 226. mailto:michaelrtr@xxxxxxxxx
 227. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 228. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 229. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 230. mailto:charles.wilt@xxxxxxxxx
 231. mailto:michaelrtr@xxxxxxxxx
 232. mailto:michaelrtr@xxxxxxxxx
 233. http://www.scottklement.com/mailman/listinfo/ftpapi
 234. http://www.scottklement.com/mailman/listinfo/ftpapi
 235. mailto:michaelrtr@xxxxxxxxx
 236. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 237. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 238. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 239. mailto:charles.wilt@xxxxxxxxx
 240. mailto:michaelrtr@xxxxxxxxx
 241. mailto:michaelrtr@xxxxxxxxx
 242. http://www.scottklement.com/mailman/listinfo/ftpapi
 243. http://www.scottklement.com/mailman/listinfo/ftpapi
 244. http://www.scottklement.com/mailman/listinfo/ftpapi
 245. mailto:michaelrtr@xxxxxxxxx
 246. mailto:michaelrtr@xxxxxxxxx
 247. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 248. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 249. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 250. mailto:charles.wilt@xxxxxxxxx
 251. mailto:michaelrtr@xxxxxxxxx
 252. mailto:michaelrtr@xxxxxxxxx
 253. http://www.scottklement.com/mailman/listinfo/ftpapi
 254. http://www.scottklement.com/mailman/listinfo/ftpapi
 255. mailto:michaelrtr@xxxxxxxxx
 256. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 257. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 258. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 259. mailto:charles.wilt@xxxxxxxxx
 260. mailto:michaelrtr@xxxxxxxxx
 261. mailto:michaelrtr@xxxxxxxxx
 262. http://www.scottklement.com/mailman/listinfo/ftpapi
 263. http://www.scottklement.com/mailman/listinfo/ftpapi
 264. http://www.scottklement.com/mailman/listinfo/ftpapi
 265. http://www.scottklement.com/mailman/listinfo/ftpapi
 266. http://www.scottklement.com/mailman/listinfo/ftpapi
 267. http://www.scottklement.com/mailman/listinfo/ftpapi
 268. mailto:sk@xxxxxxxxxxxxxxxx
 269. mailto:charles.wilt@xxxxxxxxx
 270. mailto:michaelrtr@xxxxxxxxx
 271. mailto:michaelrtr@xxxxxxxxx
 272. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 273. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 274. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 275. mailto:charles.wilt@xxxxxxxxx
 276. mailto:michaelrtr@xxxxxxxxx
 277. mailto:michaelrtr@xxxxxxxxx
 278. http://www.scottklement.com/mailman/listinfo/ftpapi
 279. http://www.scottklement.com/mailman/listinfo/ftpapi
 280. mailto:michaelrtr@xxxxxxxxx
 281. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 282. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 283. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 284. mailto:charles.wilt@xxxxxxxxx
 285. mailto:michaelrtr@xxxxxxxxx
 286. mailto:michaelrtr@xxxxxxxxx
 287. http://www.scottklement.com/mailman/listinfo/ftpapi
 288. http://www.scottklement.com/mailman/listinfo/ftpapi
 289. http://www.scottklement.com/mailman/listinfo/ftpapi
 290. mailto:michaelrtr@xxxxxxxxx
 291. mailto:michaelrtr@xxxxxxxxx
 292. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 293. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 294. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 295. mailto:charles.wilt@xxxxxxxxx
 296. mailto:michaelrtr@xxxxxxxxx
 297. mailto:michaelrtr@xxxxxxxxx
 298. http://www.scottklement.com/mailman/listinfo/ftpapi
 299. http://www.scottklement.com/mailman/listinfo/ftpapi
 300. mailto:michaelrtr@xxxxxxxxx
 301. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 302. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 303. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 304. mailto:charles.wilt@xxxxxxxxx
 305. mailto:michaelrtr@xxxxxxxxx
 306. mailto:michaelrtr@xxxxxxxxx
 307. http://www.scottklement.com/mailman/listinfo/ftpapi
 308. http://www.scottklement.com/mailman/listinfo/ftpapi
 309. http://www.scottklement.com/mailman/listinfo/ftpapi
 310. http://www.scottklement.com/mailman/listinfo/ftpapi
 311. mailto:charles.wilt@xxxxxxxxx
 312. mailto:michaelrtr@xxxxxxxxx
 313. mailto:michaelrtr@xxxxxxxxx
 314. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 315. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 316. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 317. mailto:charles.wilt@xxxxxxxxx
 318. mailto:michaelrtr@xxxxxxxxx
 319. mailto:michaelrtr@xxxxxxxxx
 320. http://www.scottklement.com/mailman/listinfo/ftpapi
 321. http://www.scottklement.com/mailman/listinfo/ftpapi
 322. mailto:michaelrtr@xxxxxxxxx
 323. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 324. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 325. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 326. mailto:charles.wilt@xxxxxxxxx
 327. mailto:michaelrtr@xxxxxxxxx
 328. mailto:michaelrtr@xxxxxxxxx
 329. http://www.scottklement.com/mailman/listinfo/ftpapi
 330. http://www.scottklement.com/mailman/listinfo/ftpapi
 331. http://www.scottklement.com/mailman/listinfo/ftpapi
 332. mailto:michaelrtr@xxxxxxxxx
 333. mailto:michaelrtr@xxxxxxxxx
 334. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 335. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 336. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 337. mailto:charles.wilt@xxxxxxxxx
 338. mailto:michaelrtr@xxxxxxxxx
 339. mailto:michaelrtr@xxxxxxxxx
 340. http://www.scottklement.com/mailman/listinfo/ftpapi
 341. http://www.scottklement.com/mailman/listinfo/ftpapi
 342. mailto:michaelrtr@xxxxxxxxx
 343. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 344. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 345. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 346. mailto:charles.wilt@xxxxxxxxx
 347. mailto:michaelrtr@xxxxxxxxx
 348. mailto:michaelrtr@xxxxxxxxx
 349. http://www.scottklement.com/mailman/listinfo/ftpapi
 350. http://www.scottklement.com/mailman/listinfo/ftpapi
 351. http://www.scottklement.com/mailman/listinfo/ftpapi
 352. http://www.scottklement.com/mailman/listinfo/ftpapi
 353. http://www.scottklement.com/mailman/listinfo/ftpapi
 354. http://www.scottklement.com/mailman/listinfo/ftpapi
 355. http://www.scottklement.com/mailman/listinfo/ftpapi
 356. http://www.scottklement.com/mailman/listinfo/ftpapi
 357. http://www.scottklement.com/mailman/listinfo/ftpapi
 358. http://www.scottklement.com/mailman/listinfo/ftpapi
-----------------------------------------------------------------------
This is the FTPAPI mailing list.  To unsubscribe, please go to:
http://www.scottklement.com/mailman/listinfo/ftpapi
-----------------------------------------------------------------------