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

Re: Using raw to post data



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

References

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