[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Phpgroupware-cvs] CVS: phpgwapi/inc class.send.inc.php,1.13.2.2,1.13.2.
From: |
Ralf Becker <address@hidden> |
Subject: |
[Phpgroupware-cvs] CVS: phpgwapi/inc class.send.inc.php,1.13.2.2,1.13.2.3 |
Date: |
Fri, 30 May 2003 11:50:52 -0400 |
Update of /cvsroot/phpgroupware/phpgwapi/inc
In directory subversions:/tmp/cvs-serv25496
Modified Files:
Tag: Version-0_9_14-branch
class.send.inc.php
Log Message:
fix for bug #3427: no email-notifications
send class does not default to port 25, as email does when smpt-port is left
empty in the email-site-config
Index: class.send.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/inc/class.send.inc.php,v
retrieving revision 1.13.2.2
retrieving revision 1.13.2.3
diff -C2 -r1.13.2.2 -r1.13.2.3
*** class.send.inc.php 1 Sep 2002 15:03:31 -0000 1.13.2.2
--- class.send.inc.php 30 May 2003 15:50:50 -0000 1.13.2.3
***************
*** 292,296 ****
// now we try to open the socket and check, if any smtp
server responds
! $socket =
fsockopen($GLOBALS['phpgw_info']['server']['smtp_server'],$GLOBALS['phpgw_info']['server']['smtp_port'],$errcode,$errmsg,$timeout);
if (!$socket)
{
--- 292,297 ----
// now we try to open the socket and check, if any smtp
server responds
! $smtp_port =
$GLOBALS['phpgw_info']['server']['smtp_port'] ?
$GLOBALS['phpgw_info']['server']['smtp_port'] : 25;
! $socket =
fsockopen($GLOBALS['phpgw_info']['server']['smtp_server'],$smtp_port,$errcode,$errmsg,$timeout);
if (!$socket)
{
***************
*** 398,400 ****
return True;
}
! } /* end of class */
\ No newline at end of file
--- 399,401 ----
return True;
}
! } /* end of class */
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Phpgroupware-cvs] CVS: phpgwapi/inc class.send.inc.php,1.13.2.2,1.13.2.3,
Ralf Becker <address@hidden> <=