正在显示
3 个修改的文件
包含
4 行增加
和
1 行删除
@@ -254,6 +254,7 @@ function sync_body($id,$worker_id){ | @@ -254,6 +254,7 @@ function sync_body($id,$worker_id){ | ||
254 | if(!$mailServer->login()){ | 254 | if(!$mailServer->login()){ |
255 | return 2; | 255 | return 2; |
256 | } | 256 | } |
257 | + $mailServer->client->debug(true,LOG_PATH.'/'.$id.'body/'); | ||
257 | 258 | ||
258 | // 同步 body | 259 | // 同步 body |
259 | $mailServer->syncBody($id['folder'],$id['uid'],$id['lists_id'],db()); | 260 | $mailServer->syncBody($id['folder'],$id['uid'],$id['lists_id'],db()); |
@@ -291,6 +292,7 @@ function sync($email_id,$worker_id){ | @@ -291,6 +292,7 @@ function sync($email_id,$worker_id){ | ||
291 | return 2; | 292 | return 2; |
292 | } | 293 | } |
293 | 294 | ||
295 | + $mailServer->client->debug(true,LOG_PATH.'/'.$email_id.'/'); | ||
294 | 296 | ||
295 | // 同步文件夹 | 297 | // 同步文件夹 |
296 | $mailServer->syncFolder($email_id,db()); | 298 | $mailServer->syncFolder($email_id,db()); |
@@ -319,6 +319,7 @@ function folderAliasMap():array { | @@ -319,6 +319,7 @@ function folderAliasMap():array { | ||
319 | 319 | ||
320 | '垃圾邮件' => '垃圾箱', | 320 | '垃圾邮件' => '垃圾箱', |
321 | '已删除' => '回收站', | 321 | '已删除' => '回收站', |
322 | + '已删除邮件' => '回收站', | ||
322 | '已发送' => '发件箱', | 323 | '已发送' => '发件箱', |
323 | 324 | ||
324 | '垃圾桶' => '回收站', | 325 | '垃圾桶' => '回收站', |
@@ -959,7 +959,7 @@ class Imap { | @@ -959,7 +959,7 @@ class Imap { | ||
959 | */ | 959 | */ |
960 | public function debug($debug=true,$logPath=''){ | 960 | public function debug($debug=true,$logPath=''){ |
961 | $this->debug = $debug; | 961 | $this->debug = $debug; |
962 | - $this->debugWritePath = $logPath ? $logPath : storage_path('logs'); | 962 | + $this->debugWritePath = $logPath ? $logPath : LOG_PATH; |
963 | } | 963 | } |
964 | 964 | ||
965 | /** | 965 | /** |
-
请 注册 或 登录 后发表评论