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 _______________________________________________ phpGroupWare-users mailing list [email protected] http://lists.gnu.org/mailman/listinfo/phpgroupware-users
