A page in your DokuWiki was added or changed. Here are the details: Date : 2016/10/04 15:02 Browser : Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:49.0) Gecko/20100101 Firefox/49.0 IP-Address : 193.248.50.71 Hostname : LStLambert-656-1-262-71.w193-248.abo.wanadoo.fr Old Revision: http://ltb-project.org/wiki/documentation/self-service-password/1.0/config_mail?rev=1324285395 New Revision: http://ltb-project.org/wiki/documentation/self-service-password/1.0/config_mail Edit Summary: User : coudot
@@ -11,25 +11,45 @@ </file> <note>Only the first value of this attribute will be used to get the mail address.</note> - ===== SMTP ===== - - ==== Headers ==== + ===== Sender name ===== You can change the default ''From'' header: <file php> $mail_from = "[email protected]"; + $mail_from_name = "Self Service Password administrator"; </file> - - ==== Server ==== - - SMTP server configuration is managed by PHP. See [[http://www.php.net/manual/en/mail.configuration.php|this documentation]] to learn how to configure it. ===== Change password notification ===== Use this option to send a confirmation mail to the user, just after a successful mail change: <file php> $notify_on_change = true; </file> + + ===== PHPMailer ===== + + You can set all parameters for PHPMailer: + <file php> + $mail_sendmailpath = '/usr/sbin/sendmail'; + $mail_protocol = 'smtp'; + $mail_smtp_debug = 0; + $mail_debug_format = 'html'; + $mail_smtp_host = 'localhost'; + $mail_smtp_auth = false; + $mail_smtp_user = ''; + $mail_smtp_pass = ''; + $mail_smtp_port = 25; + $mail_smtp_timeout = 30; + $mail_smtp_keepalive = false; + $mail_smtp_secure = 'tls'; + $mail_contenttype = 'text/plain'; + $mail_charset = 'utf-8'; + $mail_priority = 3; + $mail_newline = PHP_EOL; + </file> + + <note tip>See [[https://github.com/PHPMailer/PHPMailer]] for more information</note> + -- This mail was generated by DokuWiki at http://ltb-project.org/wiki/
_______________________________________________ ltb-changes mailing list [email protected] http://lists.ltb-project.org/listinfo/ltb-changes
