我正在使用谷歌应用程序域处理我的个人电子邮件。我配置了以下过滤器:
Matches: to:(username@example.com)
Do this: Skip Inbox, Mark as read, Delete it下面是导出的筛选器XML:
<entry>
<category term='filter'></category>
<title>Mail Filter</title>
<id>tag:mail.google.com,2008:filter:1348992826412</id>
<updated>2012-09-30T08:16:38Z</updated>
<content></content>
<apps:property name='to' value='username@example.com'/>
<apps:property name='shouldMarkAsRead' value='true'/>
<apps:property name='shouldArchive' value='true'/>
<apps:property name='shouldTrash' value='true'/>
</entry>尽管如此,邮件到username@example.com地址的邮件并不是由过滤器匹配的。下面是一个未被筛选器捕获的邮件头示例:
Delivered-To: username@example.com
Received: by 10.49.35.178 with SMTP id i18csp10155qej;
Sun, 30 Sep 2012 02:09:09 -0700 (PDT)
Received: by 10.68.225.68 with SMTP id ri4mr32446176pbc.115.1348996149371;
Sun, 30 Sep 2012 02:09:09 -0700 (PDT)
Return-Path: <b730@mail.tbb.com.tw>
Received: from mail.tbb.com.tw ([210.202.75.124])
by mx.google.com with SMTP id c5si10659paz.41.2012.09.30.02.09.07;
Sun, 30 Sep 2012 02:09:08 -0700 (PDT)
Received-SPF: neutral (google.com: 210.202.75.124 is neither permitted nor denied by best guess record for domain of b730@mail.tbb.com.tw) client-ip=210.202.75.124;
Authentication-Results: mx.google.com; spf=neutral (google.com: 210.202.75.124 is neither permitted nor denied by best guess record for domain of b730@mail.tbb.com.tw) smtp.mail=b730@mail.tbb.com.tw
Received: By OpenMail Mailer;Sun, 30 Sep 2012 16:05:41 +0800 (CST)
From: "Loan Financial Private Company" <b730@mail.tbb.com.tw>
Reply-To: micheajoh@w.cn
Subject: Loan Financial Private Company
Message-ID: <1348992338.5369.b730@mail.tbb.com.tw>
Date: Sun, 30 Sep 2012 16:05:41 +0800 (CST)
MIME-Version: 1.0
Return-Path: b730@mail.tbb.com.tw
Content-Type: text/plain; charset=big5
Content-Transfer-Encoding: quoted-printable请注意,我有其他几十个类似的过滤器,可以正确匹配每个地址的邮件。只有这一个地址/筛选器组合无法匹配邮件。
积极主动地解决明显的红斑鱼问题,并确保讨论保持重点:我意识到公开发布一个实时电子邮件地址的危险。我知道Gmail的优秀垃圾邮件过滤器。我知道反对所有邮件地址的论点。
发布于 2013-03-12 14:00:37
Gmail帮助说:
*搜索密件:无法检索盲文复制的邮件
您需要使用deliveredto:操作符。
在邮件标题示例的传递到行中搜索特定电子邮件地址中的消息: deliveredto:username@gmail.com,意思是:消息头的传递到:字段中有username@gmail.com的任何消息(这可以帮助您找到从另一个帐户转发的消息或发送到别名的邮件)。
发布于 2013-03-12 13:28:48
您需要匹配已传递到SMTP头,检查下面的链接如何配置它。
SMTP头上的GMail过滤
发布于 2018-01-16 09:02:11
要添加已经很好的答案,您也可以使用负面过滤器。例如,要筛选仅在密件抄送中的消息:
from:you@domain.com -cc:you@domain.com -to:you@domain.com 很好地选择你是密件的邮件,因为这是唯一的选择。
但是,当您在同一个Gmail帐户内以密件抄送方式发送邮件给自己时,Gmail搜索不起作用,Gmail搜索包含在" to :“字段中??
无论如何,我发现这对过滤邮件非常有用,我在Gmail帐户上添加了一个密件抄送:复制到我自己。
https://webapps.stackexchange.com/questions/31746
复制相似问题