标签:技术分享 png php.ini www. zip inf 邮箱 send tip
dokuwiki 发送邮件有2种方式: 一是直接使用 PHP 自带发送功能,需要配置 PHP.ini 文件, 我没试过,可参考官网 https://www.dokuwiki.org/tips:mailconfig, 另一种是使用第三方邮件发送代理程序,而最常用的就是 sendmail。
. 服务器 windows server 2012
. dokuwiki 运行在 IIS7.5
. 下载 sendmail,http://www.glob.com.au/sendmail/sendmail.zip
. 解压到指定目录,注意目录中间最好不要有中文、空格等特殊字符
. sendmail 所在的目录需要配置 iis 访问权限,需要有执行权限,因为 dokuwiki 发送邮件需要调用 sendmail.exe
. 到 http://mail.163.com 注册邮箱: 注意在配置里勾选 “POP3/SMTP服务”和“ IMAP/SMTP服务” 来启用 smtp 协议
. 同时还要启用“客户端授权码”,记录下来,后面配置 sendmail.ini 的 password 要用到
smtp_server=smtp.163.com
smtp_port=465
smtp_ssl=ssl
auth_username=youremail@163.com
auth_password= 你的163邮箱授权码(参考上图)
force_sender=youremail@163.com
标签:技术分享 png php.ini www. zip inf 邮箱 send tip
原文地址:https://www.cnblogs.com/grissom007/p/8759074.html