作者 邓超

x

@@ -59,8 +59,10 @@ class syncMail { @@ -59,8 +59,10 @@ class syncMail {
59 } 59 }
60 }else{ 60 }else{
61 if($f == 's'){ 61 if($f == 's'){
  62 + // mimecast@wsa.aero
  63 + $filterEmail = ['mimecast@wsa.aero'];
62 // 邮件过滤 这些邮箱都是系统邮箱 64 // 邮件过滤 这些邮箱都是系统邮箱
63 - if(!preg_match("/^((no-?reply)|(postmaster)|(mailer-daemon)|(email-notifications)|(googleplay-noreply))@/i",$data['from'])){ 65 + if(!in_array($data['from'],$filterEmail) || !preg_match("/^((no-?reply)|(postmaster)|(mailer-daemon)|(email-notifications)|(googleplay-noreply))@/i",$data['from'])){
64 // 通知黑格 2024-08-22 新上 这个是异步的不会阻塞当前进程 66 // 通知黑格 2024-08-22 新上 这个是异步的不会阻塞当前进程
65 SaberGM::post('https://fob.ai.cc/api/email_new_push',[ 67 SaberGM::post('https://fob.ai.cc/api/email_new_push',[
66 'sign' => md5(date('ymd').'fob.ai.cc.email'), 68 'sign' => md5(date('ymd').'fob.ai.cc.email'),