From a214e6553572eaba8bab16e4234c6b0e345a2de1 Mon Sep 17 00:00:00 2001 From: Antonio Gallo Date: Sat, 28 Jul 2012 10:06:52 +0000 Subject: improved the way the software sends e-mails and improved i18n --- h-source/README.txt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'h-source/README.txt') diff --git a/h-source/README.txt b/h-source/README.txt index e76b542..6aa1419 100644 --- a/h-source/README.txt +++ b/h-source/README.txt @@ -61,19 +61,20 @@ where DOMAIN_NAME is the domain name you have previously set (perhaps localhost) If you want that the system can send e-mails you have to specify the name of the SMTP server that has to be used. Open the file Application/Include/params.php and set the following constants: - $mailServer = ""; //set the mail server + $mailServer = ""; //set the mail server (only useful if $useSMTP = true) - $generalMail = ""; //set the username of your mail account + $generalMail = ""; //set the username of your mail account (always needed) - $mailPassword = ""; //set the password of your mail account + $mailPassword = ""; //set the password of your mail account (only useful if $useSMTP = true) + $useSMTP = true; //if you want to use a SMTP account. It can be true or false. Set $useSMTP to false if you want that the software rely on the mail() PHP function + You can also set these constants: $generalName = ""; //the string that you want to use inside the tag of your website - $projectName = ""; //the name of your project - - + $projectName = ""; //the name of your project + == Change the homepage == -- cgit v1.2.3