haplousframework/system/engine/config-default.php
Nathan Adams a7c962462d Adding template engine
Adding error handling
Adding basic SMTP class
core routing is working
2014-04-19 15:11:53 -05:00

14 lines
361 B
PHP

<?php
$config["DEFAULT_ROUTE"] = "main";
$config["USE_H20_TPL"] = true;
$config["SMTP_SERVER"] = "localhost";
$config["SMTP_USER"] = "";
$config["SMTP_PASS"] = "";
$config["SMTP_PORT"] = 25;
$config["SMTP_FROM"] = "HF-noreply@yoursite.com";
$config["DEBUG"] = true;
$config["USE_HF_SMTP"] = true;
$config["SITE_NAME"] = "default";
return $config;