邮箱服务bug修复
This commit is contained in:
parent
230b696cb7
commit
ed2448a15e
@ -7,8 +7,8 @@
|
|||||||
* 后台:http://adm.aieok.com:888
|
* 后台:http://adm.aieok.com:888
|
||||||
* 账号:test
|
* 账号:test
|
||||||
* 密码:test123
|
* 密码:test123
|
||||||
* 版本:TaoLer 1.8.2
|
* 版本:TaoLer 1.8.18
|
||||||
* 日期:2021.8.5
|
* 日期:2021.10.11
|
||||||
|
|
||||||
#### 项目地址
|
#### 项目地址
|
||||||
|
|
||||||
|
@ -170,6 +170,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{//邮箱发送测试}
|
{//邮箱发送测试}
|
||||||
|
{if $mailserver.active !== 1}
|
||||||
<div class="layui-form" wid100 >
|
<div class="layui-form" wid100 >
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item">
|
||||||
<label class="layui-form-label">测试邮箱</label>
|
<label class="layui-form-label">测试邮箱</label>
|
||||||
@ -188,6 +189,7 @@
|
|||||||
<button class="layui-btn" lay-submit lay-filter="active_system_email">确认激活</button>
|
<button class="layui-btn" lay-submit lay-filter="active_system_email">确认激活</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-tab-item">
|
<div class="layui-tab-item">
|
||||||
<div class="layui-form" wid100 lay-filter="config">
|
<div class="layui-form" wid100 lay-filter="config">
|
||||||
|
@ -376,9 +376,10 @@ CREATE TABLE `tao_mail_server` (
|
|||||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
`mail` varchar(50) NOT NULL COMMENT '邮箱设置',
|
`mail` varchar(50) NOT NULL COMMENT '邮箱设置',
|
||||||
`host` varchar(50) NOT NULL COMMENT '邮箱服务地址',
|
`host` varchar(50) NOT NULL COMMENT '邮箱服务地址',
|
||||||
`port` tinyint(2) NOT NULL COMMENT '邮箱端口',
|
`port` smallint(3) NOT NULL COMMENT '邮箱端口',
|
||||||
`nickname` varchar(20) NOT NULL DEFAULT '' COMMENT '昵称',
|
`nickname` varchar(20) NOT NULL DEFAULT '' COMMENT '昵称',
|
||||||
`password` varchar(16) NOT NULL COMMENT '邮箱密码',
|
`password` varchar(16) NOT NULL COMMENT '邮箱密码',
|
||||||
|
`active` tinyint(1) NOT NULL DEFAULT '0' COMMENT '邮箱服务1激活0未激活',
|
||||||
`create_time` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
`create_time` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
||||||
@ -386,7 +387,7 @@ CREATE TABLE `tao_mail_server` (
|
|||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
-- Records of tao_mail_server
|
-- Records of tao_mail_server
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
INSERT INTO `tao_mail_server` VALUES ('1', 'xxxx@aliyun.com', 'smtp.aliyun.com', '25', 'user', '123456', '0');
|
INSERT INTO `tao_mail_server` VALUES ('1', 'xxxx@aliyun.com', 'smtp.aliyun.com', '25', 'user', '123456', '0', '0');
|
||||||
|
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
-- Table structure for tao_message
|
-- Table structure for tao_message
|
||||||
|
@ -7,7 +7,7 @@ return [
|
|||||||
//应用名,此项不可更改
|
//应用名,此项不可更改
|
||||||
'appname' => 'TaoLer',
|
'appname' => 'TaoLer',
|
||||||
//版本配置
|
//版本配置
|
||||||
'version' => '1.8.3',
|
'version' => '1.8.18',
|
||||||
//加盐
|
//加盐
|
||||||
'salt' => 'taoler',
|
'salt' => 'taoler',
|
||||||
//数据库备份目录
|
//数据库备份目录
|
||||||
|
Loading…
Reference in New Issue
Block a user