aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiam McLoughlin <hexxeh@hexxeh.net>2011-08-06 00:37:00 +0100
committerLiam McLoughlin <hexxeh@hexxeh.net>2011-08-06 00:37:00 +0100
commitee02363d07131379c1e2537cffa20c453f596cad (patch)
tree4f770efa72aee4a7daa9f1b80f8c8a4ba7a43c8a /config.php
parentFix simultaneous build detection, fix sorting on keyboard layouts (diff)
downloadgentoaster-ee02363d07131379c1e2537cffa20c453f596cad.tar.gz
gentoaster-ee02363d07131379c1e2537cffa20c453f596cad.tar.bz2
gentoaster-ee02363d07131379c1e2537cffa20c453f596cad.zip
Add email notification support
Diffstat (limited to 'config.php')
-rw-r--r--config.php12
1 files changed, 11 insertions, 1 deletions
diff --git a/config.php b/config.php
index 760c1e2..c1807fa 100644
--- a/config.php
+++ b/config.php
@@ -3,6 +3,9 @@
// Gentoaster build daemon settings
// Licensed under GPL v3, see COPYING file
+ // Set the publically viewable URL for this Gentoaster instance
+ define("GENTOASTER_URL", "http://192.168.2.169");
+
// Set the path that completed images should be stored at
define("CONFIGURATIONS_PATH", "/var/www/gentoaster/images");
@@ -26,4 +29,11 @@
define("MYSQL_HOSTNAME", "localhost");
define("MYSQL_USERNAME", "gentoaster");
define("MYSQL_PASSWORD", "");
- define("MYSQL_DATABASE", "gentoaster"); \ No newline at end of file
+ define("MYSQL_DATABASE", "gentoaster");
+
+ // Set the SMTP details that should be used for notifications
+ define("SMTP_ENABLED", false);
+ define("SMTP_HOST", "");
+ define("SMTP_USERNAME", "");
+ define("SMTP_PASSWORD", "");
+ define("SMTP_EMAIL", ""); \ No newline at end of file