腾讯企业邮箱配置图文教程
账号注册
官方主页:https://exmail.qq.com/
免费版:https://exmail.qq.com/signupfree#signup/free
登陆:https://exmail.qq.com/login
域名解析
以阿里云为例,添加两个MX记录,记录值分别为 “mxbiz1.qq.com.” 和 “mxbiz2.qq.com.”,优先级分别为5和10
在这里顺便再添加一条A记录,下一步域名跳转要用到。这里主机记录填写 mail,记录值就是云服务器的公网IP。
域名跳转
腾讯企业邮箱免费版后面不再支持直接使用域名“mail.域名”的个性化登陆地址的方式打开,我们可以采用页面跳转的方式实现,使用PHP中的header函数。
注意,该方法的前提是您的域名已经备案,否则国内的云服务器一般不会将您在虚拟主机绑定的域名加入白名单。
# cd /data/www/
# mkdir mail
# chown -R www /data/www
# vim /data/server/nginx/conf/vhosts/mail.conf
server {
listen 80;
server_name mail.appblog.cn;
index index.html index.htm index.php;
root /data/www/mail;
server_name_in_redirect off;
location ~ .+\.php($|/)
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}
#伪静态规则
#include /data/server/nginx/conf/rewrite/default.conf;
error_log /data/www/logs/mail-error.log;
access_log /data/www/logs/mail-access.log;
}
# sbin/nginx -s reload //使Nginx配置重新生效
通过FTP上传PHP页面跳转文件index.php至mail目录下,内容为:
<?php
//$url = $_SERVER['SERVER_NAME'];
$url = $_SERVER['HTTP_HOST'];
$domain = substr($url, 5); //mail.appblog.cn
$location = "http://exmail.qq.com/cgi-bin/loginpage?t=logindomain¶m=@" . $domain;
header('Location: ' . $location);
?>
好了,现在只要我们在浏览器输入 mail.appblog.cn,则直接跳转登陆页面
http://exmail.qq.com/cgi-bin/loginpage?t=logindomain¶m=@appblog.cn
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/02/24/tencent-enterprise-email-configuration-tutorial/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
共有 0 条评论