aboutsummaryrefslogtreecommitdiff
path: root/h-source/README.txt
diff options
context:
space:
mode:
Diffstat (limited to 'h-source/README.txt')
-rw-r--r--h-source/README.txt13
1 files changed, 7 insertions, 6 deletions
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 <title> tag of your website
- $projectName = ""; //the name of your project
-
-
+ $projectName = ""; //the name of your project
+
== Change the homepage ==