我希望为 Apache James 创建一些不同复杂度的过滤器。我的问题是:James jSieve 有多大用处?使用它有什么好处?它的当前/积极开发程度如何?
我已经看过标准匹配器和邮件。我尝试并喜欢自定义匹配器,例如:
import org.apache.mailet.GenericMatcher;
import org.apache.mailet.Mail;
import javax.mail.MessagingException;
import java.util.Collection;
public class oooMatcher extends GenericMatcher{
public void init() throws javax.mail.MessagingException { }
private String outOfOffice = "out of office";
private String autoReply = "autoreply";
@SuppressWarnings("rawtypes")
public Collection match(Mail mail) {
try {
String subj = mail.getMessage().getSubject().toLowerCase();
if (subj.contains(outOfOffice)||subj.contains(autoReply)){
return mail.getRecipients();
} else {
return null;
}
} catch (MessagingException e) {
e.printStackTrace();
return null;
}
}
}
我很想知道上面代码的 jSieve 类比是什么。