Configure mail functionalities

From ClarolineDoc

The mail functionnalities have to be set from the PHP tier, not from the Claroline one. The way mail works with PHP is set in the php.ini file.

  • On Linux/Unix you have to rely on Mail transport agent hosted on the same server than your web server. This agent is provided on most Linux distribution.
  • On Windows, you have to install the agent yourself or change the php.ini file to point to another SMTP server.
 [mail function]
 ; For Win32 only.
 SMTP = smtp.yourdomain.tld
 
 ; For Win32 only.
 sendmail_from = webmaster@yourdomain.tld
 
 ; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
 sendmail_path =

forum