From 81ab2fb438254d00a5dc4415f2271ad15894300d Mon Sep 17 00:00:00 2001 From: botanic Date: Tue, 9 Sep 2014 17:26:20 -0700 Subject: [PATCH] FIX #197 Added default config values that should work for mail config settings in case people are lazy --- code/web/private_php/ams/mail/placeholder | 0 code/web/private_php/setup/config/config.php | 10 +++++----- 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 code/web/private_php/ams/mail/placeholder diff --git a/code/web/private_php/ams/mail/placeholder b/code/web/private_php/ams/mail/placeholder new file mode 100644 index 000000000..e69de29bb diff --git a/code/web/private_php/setup/config/config.php b/code/web/private_php/setup/config/config.php index d0cb88faf..4ec62d551 100644 --- a/code/web/private_php/setup/config/config.php +++ b/code/web/private_php/setup/config/config.php @@ -71,11 +71,6 @@ $cfg['mail']['host'] = "ryzomcore.org"; $SUPPORT_GROUP_IMAP_CRYPTKEY = '%cryptKeyIMAP%'; $TICKET_MAILING_SUPPORT = false; -//You have to create this dir at first! -//The incoming emails will be backed up here and the log file keeps track of the mail_cron job. -$MAIL_DIR = "/home/username/mail"; -$MAIL_LOG_PATH = "/home/username/mail/cron_mail.log"; - //terms of service url location $TOS_URL ="http://www.gnu.org/licenses/agpl-3.0.html"; @@ -101,6 +96,11 @@ $AMS_TRANS = $AMS_LIB . '/translations'; $AMS_CACHEDIR = $AMS_LIB . '/cache'; $AMS_PLUGINS = $AMS_LIB . '/plugins'; $AMS_TMPDIR = $AMS_LIB . '/tmp'; + +//The incoming emails will be backed up here and the log file keeps track of the mail_cron job. +$MAIL_DIR = $AMS_LIB."/mail"; +$MAIL_LOG_PATH = $AMS_LIB."/mail/mail.log"; + // Here your inc and func resides $SITEBASE = $PUBLIC_PHP_PATH . '/ams/' ;