作者 邓超

x

@@ -59,15 +59,21 @@ class syncMail { @@ -59,15 +59,21 @@ class syncMail {
59 } 59 }
60 }else{ 60 }else{
61 if($f == 's'){ 61 if($f == 's'){
62 - // 通知黑格 2024-08-22 新上 这个是异步的不会阻塞当前进程  
63 - SaberGM::post('https://fob.ai.cc/api/email_new_push',[  
64 - 'sign' => md5(date('ymd').'fob.ai.cc.email'),  
65 - 'id' => $id,  
66 - 'subject' => $data['subject'],  
67 - 'udate' => $data['udate'],  
68 - 'from' => $data['from'],  
69 - 'tos' => array_column(json_decode($data['to_name'],1),'email')  
70 - ]); 62 + // 邮件过滤
  63 + if(!preg_match("/^((no-?reply)|(postmaster)|(mailer-daemon))@/i",$data['from'])){
  64 + // 通知黑格 2024-08-22 新上 这个是异步的不会阻塞当前进程
  65 + SaberGM::post('https://fob.ai.cc/api/email_new_push',[
  66 + 'sign' => md5(date('ymd').'fob.ai.cc.email'),
  67 + 'id' => $id,
  68 + 'subject' => $data['subject'],
  69 + 'udate' => $data['udate'],
  70 + 'from' => $data['from'],
  71 + 'tos' => array_column(json_decode($data['to_name'],1),'email')
  72 + ]);
  73 + }
  74 +
  75 +
  76 +
71 } 77 }
72 } 78 }
73 79