切换导航条
此项目
正在载入...
登录
周海龙
/
mail-serve
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
邓超
2023-03-29 09:07:19 +0800
提交
cb4f27885dbabce3badd72f7fac35742da161eeb
1 个父辈
6518ef04
1
显示空白字符变更
内嵌
并排对比
正在显示
4 个修改的文件
包含
17 行增加
和
2 行删除
controller/Home.php
controller/Login.php
model/emailSql.php
route.php
controller/Home.php
查看文件 @
cb4f278
...
...
@@ -97,6 +97,19 @@ class Home extends Base {
}
/**
* 检测邮箱状态
* @author:dc
* @time 2023/3/28 16:19
*/
public
function
check
(){
$lists
=
db
()
->
all
(
emailSql
::
getValues
([
'email'
=>
web_request_emails
()],
'`id`,`pwd_error`,`email`'
));
return
array_column
(
$lists
,
'pwd_error'
,
'email'
);
}
/**
* 发送邮件
...
...
controller/Login.php
查看文件 @
cb4f278
...
...
@@ -82,7 +82,7 @@ class Login {
if
(
$ret
){
app
()
->
_json
(
db
()
->
first
(
emailSql
::
first
(
$formData
[
'email'
]
,
'`id`,`email`,`last_sync_time`'
)));
app
()
->
_json
(
db
()
->
first
(
emailSql
::
first
(
$formData
[
'email'
])));
}
app
()
->
e
(
'login_error'
);
...
...
model/emailSql.php
查看文件 @
cb4f278
...
...
@@ -60,7 +60,7 @@ class emailSql {
* @author:dc
* @time 2023/3/10 10:46
*/
public
static
function
getValues
(
$where
,
$field
=
'`id`'
){
public
static
function
getValues
(
array
$where
,
$field
=
'`id`'
){
return
"select
{
$field
}
from `"
.
static
::
$table
.
"` where "
.
dbWhere
(
$where
);
}
...
...
route.php
查看文件 @
cb4f278
...
...
@@ -33,6 +33,8 @@ return [
'seen_2_unseen'
=>
[
\Controller\Home
::
class
,
'seen_2_unseen'
],
// 邮件移动文件夹
'move'
=>
[
\Controller\Home
::
class
,
'move'
],
// 检查邮箱状态
'check'
=>
[
\Controller\Home
::
class
,
'check'
]
...
...
请
注册
或
登录
后发表评论