phpgroupware-users
[Top][All Lists]
Advanced

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

[phpGroupWare-users] Re: Cant send mail - Email SMTP Authentication avai


From: Dave Hall
Subject: [phpGroupWare-users] Re: Cant send mail - Email SMTP Authentication available?
Date: Mon, 1 Jan 2007 15:44:49 -0700 (MST)


Hi,

Gargos wrote on Tue, 02 January 2007 04:19
> Hi
> I can't send mails from phpgroupware because of an missing SMTP 
> Authentication.
> (Many Email server requires an SMTP Authentication before a new Message can 
> be sended)
> Is there a way to enable a Email SMTP Autentication in phpgroupware?


You can enable this, but you have to manually edit the code to do so.  Edit 
/path/to/phpgroupware/email/inc/class.send.inc.php

Lines 209-212 should read

$smtp_auth_login_required = False;
//$smtp_auth_login_required = true;
$mylogin = "xxxxxx";
$mypassword = "xxxxxxxxxx";


Change it to read something like

//$smtp_auth_login_required = False;
$smtp_auth_login_required = true;
$mylogin = "mySMTPauthUsername";
$mypassword = "mySMTPauthPassword";


Now it should work properly for you.Sent from the phpGroupWare forums @ 
http://forums.phpGroupWare.org




reply via email to

[Prev in Thread] Current Thread [Next in Thread]