diff --git a/app/config/core.php b/app/config/core.php index 7887f500..697aed6b 100644 --- a/app/config/core.php +++ b/app/config/core.php @@ -56,11 +56,20 @@ $host = $_SERVER['HTTP_HOST']; )); */ + Configure::write('smtp_settings', array( 'port' => '25', 'timeout' => '30', 'host' => '172.17.0.1')); + +// Mailhog SMTP settings for local development +// Configure::write('smtp_settings', array( +// 'port' => '1025', +// 'timeout' => '30', +// 'host' => 'host.docker.internal' +// )); + //Production/Staging Config $production_hosts = array('cmc.lan', '192.168.0.7', 'cmcbeta.lan', 'office.cmctechnologies.com.au:5000');