Re: [PHP] SMTP and GroupWise

2004-04-25 Thread Burhan Khalid
Todd Cary wrote: My client is using GroupWise to relay *without* having relay turned on and it needs/uses an authenication that is different from the regular SMTP. Here is a trace of a message that went through: [ snipped POP before SMTP authentication ] Does anyone know of a class that can

[PHP] SMTP and GroupWise

2004-04-22 Thread Todd Cary
My client is using GroupWise to relay *without* having relay turned on and it needs/uses an authenication that is different from the regular SMTP. Here is a trace of a message that went through: 02/11/2004 06:55:27 SMTP to rcpt: Al Smith [EMAIL PROTECTED] 02/11/2004 06:55:29 +OK GroupWise

Re: [PHP] SMTP and GroupWise

2004-04-22 Thread David O'Brien
That's just basic pop before smtp. A common way of authenticating. Just make a connection to the pop server after the hello and before sending the email. Most mail servers cache this info for a certain amount of time so you may not have to do it every time you send. I know that

Re: [PHP] SMTP and GroupWise

2004-04-22 Thread Todd Cary
David - I am using the phpmailer class, and I do not see mention of using the POP3 for authentication. Am I missing something? Todd David O'Brien wrote: That's just basic pop before smtp. A common way of authenticating. Just make a connection to the pop server after the hello and before

Re: [PHP] SMTP and GroupWise

2004-04-22 Thread Jason Wong
On Friday 23 April 2004 03:27, Todd Cary wrote: I am using the phpmailer class, and I do not see mention of using the POP3 for authentication. Am I missing something? I don't think it supports POP-before-relay last time I looked - which was quite a while ago. What you need to do is login