我正在使用 Protonmail,正在寻找 Sieve 规则示例。我想添加一条 Sieve 过滤规则,如果邮件来自[email protected]
并且邮件正文包含“这是正文”,则将其移动到过滤器“Test1”。
我已经搜索过示例,但找不到一个好的示例,因此,如果我能有一个例子,我将不胜感激。
答案1
您在找这个吗?
require ["fileinto", "body"];
if allof(address :is "From" "[email protected]", body :contains "this is the body") { fileinto "Test1"; }
测试地点https://www.fastmail.com/cgi-bin/sievetest.pl测试数据如下。
From: some person <[email protected]>
To: another guy <[email protected]>
Subject: this is not the body
This is a test, where this is the body and some other text.
我的理解是 Sieve 扩展依赖于站点;我还没有探究 Protonmail 是否支持这些精确的扩展。事实上,他们的筛页没有提及扩展"body"
(RFC 5173),因此可能不可用。