partial project.inc
This part shows only the project.inc modifications which are used to have mails send on user creation
Size 1 kB - File type text/plainFile contents
<?php
// This is a sample project file.
// Modify it to suit your project.
// Put your version in html/project/project.inc
require_once("../inc/util.inc");
$master_url = parse_config(get_config(), "<master_url>");
define("PROJECT", "Test Project");
define("URL_BASE", $master_url);
define("IMAGE_PATH", "../user_profile/images/");
define("IMAGE_URL", "user_profile/images/");
define("PROFILE_PATH", "../user_profile/");
define("PROFILE_URL", "user_profile/");
define("LANGUAGE_FILE", "languages.txt");
define("STYLESHEET", "white.css");
define("COPYRIGHT_HOLDER", "Test Group");
define("SYS_ADMIN_EMAIL", "admin@$master_url");
define("UOTD_ADMIN_EMAIL", "admin@$master_url"); # who gets user of the day pool running low e-mails?
# added modifications
define("EMAIL_FROM","boinc@company.net");
define("EMAIL_FROM_NAME","boinc@company.net");
$USE_PHPMAILER=true;
$PHPMAILER_HOST="arthur.tudor.lu";
$PHPMAILER_MAILER="smtp";
....










