[xmail] Re: Message ID Numbers?

2005-04-01 Thread Dustin C. Hatch
: I tried your signature out once. It took years off my life! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dustin C. Hatch Sent: Friday, April 01, 2005 10:13 AM To: xmail@xmailserver.org Subject: [xmail] Re: Message ID Numbers

[xmail] Re: Message ID Numbers?

2005-04-01 Thread Tracy
I wrote a web-based mail access program (very simplistic) a year or so ago. Writing a TCP/IP module to handle the POP3 access to the mail isn't that hard - might be worth doing to give yourself some flexibility. At 19:20 3/31/2005, Dustin C. Hatch wrote: As I said, PHP does the downloading, so

[xmail] Re: Message ID Numbers?

2005-03-31 Thread Dustin C. Hatch
As I said, PHP does the downloading, so I have no control over what command it uses. I think I can make my program use the message numbers only once, and after that use the UIDL numbers, but I have no control over how they are referenced initially by php. Dustin C. Hatch http://www.dchweb,com

[xmail] Re: Message ID Numbers?

2005-03-31 Thread Dustin C. Hatch
As I said, PHP does the downloading, so I have no control over what command it uses. I think I can make my program use the message numbers only once, and after that use the UIDL numbers, but I have no control over how they are referenced initially by php. Dustin C. Hatch http://www.dchweb,com

[xmail] Re: Message ID Numbers?

2005-03-31 Thread Rob Arends
! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dustin C. Hatch Sent: Friday, April 01, 2005 10:13 AM To: xmail@xmailserver.org Subject: [xmail] Re: Message ID Numbers? As I said, PHP does the downloading, so I have no control over what command

[xmail] Re: Message ID Numbers?

2005-03-30 Thread Victor Grimaldi
I have the same problem with NOCC , I think I was the only one. and my english is too bad to to post Dustin C. Hatch escribioacute;: I recently developed a webmail client for POP3/POP3S so that I could use native XMail support and webmail. The way the inbox is designed, messages are released

[xmail] Re: Message ID Numbers?

2005-03-30 Thread Tracy
Which number are you using for the message ID number? How are you getting this number? At 07:04 3/30/2005, Dustin C. Hatch wrote: I recently developed a webmail client for POP3/POP3S so that I could use native XMail support and webmail. The way the inbox is designed, messages are released in

[xmail] Re: Message ID Numbers?

2005-03-30 Thread Davide Libenzi
On Wed, 30 Mar 2005, Dustin C. Hatch wrote: I recently developed a webmail client for POP3/POP3S so that I could use native XMail support and webmail. The way the inbox is designed, messages are released in reverse order of their MTA assigned ID number, ie 1 is on the bottom, 2 next, a

[xmail] Re: Message ID Numbers?

2005-03-30 Thread Dustin C. Hatch
Okay, I guess I should clarify what I mean by message ID numbers. PHP downloads the messages over POP3 as you would using telnet. The message IDs that it uses are just like you would using the command line to read mail: LIST +OK 15 70871 1 5427 2 1826 3 16834 4 4043 5 3875 6 2373 7 15345 8

[xmail] Re: Message ID Numbers?

2005-03-30 Thread Tracy
As Davide said, those numbers are only valid for the specific POP3 session that you received them in. Future sessions are not guaranteed to have the same numbers for the same messages. You should use the UIDL numbers. Retrieve them as: +OK Maildrop has 4 messages (12788 bytes) UIDL +OK 4 1

[xmail] Re: Message ID Numbers?

2005-03-30 Thread Brandon Wittenburg
Okay, I guess I should clarify what I mean by message ID numbers. PHP downloads the messages over POP3 as you would using telnet. The message IDs that it uses are just like you would using the command line to read mail: LIST +OK 15 70871 1 5427 2 1826 3 16834 4 4043 5 3875 [snip] Look at the