打开/关闭搜索
搜索
打开/关闭菜单
通知
打开/关闭个人菜单
查看“Mediawiki/SMTP”的源代码
来自OSSmedia
查看
阅读
查看源代码
查看历史
associated-pages
页面
讨论
更多操作
←
Mediawiki/SMTP
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
添加如下配置,记得username要与前面的password sender 一样<syntaxhighlight lang="php"> $wgSMTP = [ 'host' => 'mail.example.com', // could also be an IP address. Where the SMTP server is located. If using SSL or TLS, add the prefix "ssl://" or "tls://". 'IDHost' => 'example.com', // Generally this will be the domain name of your website (aka mywiki.org) 'localhost' => 'example.com', // Same as IDHost above; required by some mail servers 'port' => 587, // Port to use when connecting to the SMTP server 'auth' => true, // Should we use SMTP authentication (true or false) 'username' => 'my_user_name', // Username to use for SMTP authentication (if being used) 'password' => 'my_password' // Password to use for SMTP authentication (if being used) ]; </syntaxhighlight>
返回
Mediawiki/SMTP
。