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