diff --git a/app/config/core.php b/app/config/core.php index cd9d2ab4..4036635f 100644 --- a/app/config/core.php +++ b/app/config/core.php @@ -82,6 +82,19 @@ else { //Development config 'lock' => false, //[optional] use file locking 'serialize' => true, )); + + + + Configure::write('smtp_settings', array( + 'port' => '25', + 'timeout' => '30', + 'host' => 'mail.cmctechnologies.com.au', + 'username' => 'sales', + 'password' => '2seng33+02')); + + + + } diff --git a/cake/bootstrap.php b/cake/bootstrap.php index 0a28e555..5325b8c9 100755 --- a/cake/bootstrap.php +++ b/cake/bootstrap.php @@ -30,7 +30,7 @@ if (!defined('PHP5')) { if (!defined('E_DEPRECATED')) { define('E_DEPRECATED', 8192); } -error_reporting(E_ALL & ~E_DEPRECATED); +error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT); /** * Configuration, directory layout and standard libraries */ @@ -49,4 +49,4 @@ error_reporting(E_ALL & ~E_DEPRECATED); $url = null; App::import('Core', array('Dispatcher')); -?> \ No newline at end of file +?>