bugphpGroupWare - Bugs: bug #781, SMTP Authenication

 
 

You are not allowed to post comments on this tracker with your current authentication level.

bug #781: SMTP Authenication

Submitted by:  Invalid User ID <Invalid User ID>
Submitted on:  Sun 30 Jun 2002 03:22:28 PM UTC  
 
Item Group: 0.9.14 RC3Category: email
Severity: 1 - WishPriority: 1 - Later
Status: NonePrivacy: Public
Assigned to: NoneOpen/Closed: Closed
Component Version: NoneOperating System: GNU/Linux - RedHat/Fedora
Reproducibility: NonePlanned Release: None
Fixed Release: 

Fri 27 Jun 2003 01:54:21 AM UTC, comment #3:

This has been reassigned as a feature request.

Chris Weiss <cw>
Project Administrator
Tue 08 Apr 2003 04:30:54 AM UTC, comment #2:

Try editing your email/inc/class.mail_send.inc.php file as follows:

from:

// START SMTP SESSION - now we can send our message. 1st we identify ourselves and the sender
$cmds = array (
"\$src = \$this->msg2socket(\$socket,\"EHLO \$mymachine\r\n\");",
"\$rrc = \$this->socket2msg(\$socket);",
"\$src = \$this->msg2socket(\$socket,\"MAIL FROM:\$fromuser\r\n\");",
"\$rrc = \$this->socket2msg(\$socket);"
);

to:

// START SMTP SESSION - now we can send our message. 1st we identify ourselves and the sender
$smtp_username = base64_encode("username");
$smtp_password = base64_encode("password");
$cmds = array (
"\$src = \$this->msg2socket(\$socket,\"EHLO \$mymachine\r\n\");",
"\$rrc = \$this->socket2msg(\$socket);",
"\$src = \$this->msg2socket(\$socket,\"AUTH LOGIN\r\n\");",
"\$rrc = \$this->socket2msg(\$socket);",
"\$src = \$this->msg2socket(\$socket,\"\$smtp_username\r\n\");",
"\$rrc = \$this->socket2msg(\$socket);",
"\$src = \$this->msg2socket(\$socket,\"\$smtp_password\r\n\");",
"\$rrc = \$this->socket2msg(\$socket);",
"\$src = \$this->msg2socket(\$socket,\"MAIL FROM:\$fromuser\r\n\");",
"\$rrc = \$this->socket2msg(\$socket);"
);

Anonymous
Thu 21 Nov 2002 01:00:17 AM UTC, comment #1:

This has been reassigned as a feature request.

Alejandro Borges (lex) <alexbsa>

 

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

CC list is empty

 

Do you think this task is very important?
If so, you can click here to add your encouragement to it.
This task has 0 encouragements so far.

Only logged-in users can vote.

 

Please enter the title of George Orwell's famous dystopian book (it's a date):

 

 

Follow 2 latest changes.

Date Changed By Updated Field Previous Value => Replaced By
Fri 27 Jun 2003 01:54:21 AM UTCcwOpen/ClosedOpen=>(Error - Not Found)
Thu 21 Nov 2002 01:01:27 AM UTCalexbsaSeverity3 - Normal=>(Error - Not Found)

Back to the top


Powered by Savane 3.1-cleanup1