diff options
author | Liam McLoughlin <hexxeh@hexxeh.net> | 2011-08-06 00:37:00 +0100 |
---|---|---|
committer | Liam McLoughlin <hexxeh@hexxeh.net> | 2011-08-06 00:37:00 +0100 |
commit | ee02363d07131379c1e2537cffa20c453f596cad (patch) | |
tree | 4f770efa72aee4a7daa9f1b80f8c8a4ba7a43c8a /config.php | |
parent | Fix simultaneous build detection, fix sorting on keyboard layouts (diff) | |
download | gentoaster-ee02363d07131379c1e2537cffa20c453f596cad.tar.gz gentoaster-ee02363d07131379c1e2537cffa20c453f596cad.tar.bz2 gentoaster-ee02363d07131379c1e2537cffa20c453f596cad.zip |
Add email notification support
Diffstat (limited to 'config.php')
-rw-r--r-- | config.php | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -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 |