use of com.zimbra.cs.mime.ParsedMessage in project zm-mailbox by Zimbra.
the class RejectTest method testNotemptyEnvelopeFromAndUsingVariables.
/*
* MDN should be sent to the envelope from (test2@zimbra.com)
*/
@Test
public void testNotemptyEnvelopeFromAndUsingVariables() {
try {
filterScript = "require [\"log\", \"variables\", \"envelope\" , \"reject\"];\n" + "if envelope :matches [\"To\"] \"*\" {" + "set \"rcptto\" \"hello\";}\n" + "if header :matches [\"From\"] \"*\" {" + "set \"fromheader\" \"test2@zimbra.com\";}\n" + "if header :matches [\"Subject\"] \"*\" {" + "set \"subjectheader\" \"New Subject\";}\n" + "set \"bodyparam\" text: # This is a comment\r\n" + "Message delivered to ${rcptto}\n" + "Sent : ${fromheader}\n" + "Subject : ${subjectheader} \n" + ".\r\n" + ";\n" + "log \"Subject: ${subjectheader}\"; \n" + "reject \"${bodyparam}\"; \n";
Account acct1 = Provisioning.getInstance().get(Key.AccountBy.name, "test@zimbra.com");
Account acct2 = Provisioning.getInstance().get(Key.AccountBy.name, "test2@zimbra.com");
Mailbox mbox1 = MailboxManager.getInstance().getMailboxByAccount(acct1);
Mailbox mbox2 = MailboxManager.getInstance().getMailboxByAccount(acct2);
RuleManager.clearCachedRules(acct1);
LmtpEnvelope env = new LmtpEnvelope();
LmtpAddress sender = new LmtpAddress("<test2@zimbra.com>", new String[] { "BODY", "SIZE" }, null);
LmtpAddress recipient = new LmtpAddress("<test@zimbra.com>", null, null);
env.setSender(sender);
env.addLocalRecipient(recipient);
String raw = "From: sender@in.telligent.com\n" + "To: coyote@ACME.Example.COM\n" + "Subject: test\n" + "\n" + "Hello World.";
acct1.setMailSieveScript(filterScript);
acct1.setMail("test@zimbra.com");
List<ItemId> ids = RuleManager.applyRulesToIncomingMessage(new OperationContext(mbox1), mbox1, new ParsedMessage(sampleBaseMsg.getBytes(), false), 0, acct1.getName(), env, new DeliveryContext(), Mailbox.ID_FOLDER_INBOX, true);
Assert.assertEquals(0, ids.size());
List<Integer> ll = mbox2.getItemIds(null, Mailbox.ID_FOLDER_INBOX).getIds(MailItem.Type.MESSAGE);
Integer item = mbox2.getItemIds(null, Mailbox.ID_FOLDER_INBOX).getIds(MailItem.Type.MESSAGE).get(0);
Message mdnMsg = mbox2.getMessageById(null, item);
String ctStr = mdnMsg.getMimeMessage().getContentType().toLowerCase();
boolean isReport = ctStr.startsWith("multipart/report;");
boolean isMdn = ctStr.indexOf("report-type=disposition-notification") < 0 ? false : true;
Assert.assertEquals(isReport & isMdn, true);
} catch (Exception e) {
e.printStackTrace();
fail("No exception should be thrown: " + e.getMessage());
}
}
use of com.zimbra.cs.mime.ParsedMessage in project zm-mailbox by Zimbra.
the class RejectTest method testNotemptyEnvelopeFrom.
/*
* MDN should be sent to the envelope from (test2@zimbra.com)
*/
@Test
public void testNotemptyEnvelopeFrom() {
try {
Account acct1 = Provisioning.getInstance().get(Key.AccountBy.name, "test@zimbra.com");
Account acct2 = Provisioning.getInstance().get(Key.AccountBy.name, "test2@zimbra.com");
Mailbox mbox1 = MailboxManager.getInstance().getMailboxByAccount(acct1);
Mailbox mbox2 = MailboxManager.getInstance().getMailboxByAccount(acct2);
RuleManager.clearCachedRules(acct1);
LmtpEnvelope env = new LmtpEnvelope();
LmtpAddress sender = new LmtpAddress("<test2@zimbra.com>", new String[] { "BODY", "SIZE" }, null);
LmtpAddress recipient = new LmtpAddress("<test@zimbra.com>", null, null);
env.setSender(sender);
env.addLocalRecipient(recipient);
acct1.setMailSieveScript(filterScript);
List<ItemId> ids = RuleManager.applyRulesToIncomingMessage(new OperationContext(mbox1), mbox1, new ParsedMessage(sampleBaseMsg.getBytes(), false), 0, acct1.getName(), env, new DeliveryContext(), Mailbox.ID_FOLDER_INBOX, true);
Assert.assertEquals(0, ids.size());
Integer item = mbox2.getItemIds(null, Mailbox.ID_FOLDER_INBOX).getIds(MailItem.Type.MESSAGE).get(0);
Message mdnMsg = mbox2.getMessageById(null, item);
String ctStr = mdnMsg.getMimeMessage().getContentType().toLowerCase();
boolean isReport = ctStr.startsWith("multipart/report;");
boolean isMdn = ctStr.indexOf("report-type=disposition-notification") < 0 ? false : true;
Assert.assertEquals(isReport & isMdn, true);
} catch (Exception e) {
fail("No exception should be thrown: " + e.getMessage());
}
}
use of com.zimbra.cs.mime.ParsedMessage in project zm-mailbox by Zimbra.
the class ReplyTest method testReplyMimeVariables.
@Test
public void testReplyMimeVariables() {
try {
String sampleMsg = "from: test2@zimbra.com\n" + "Return-Path: test2@zimbra.com\n" + "Subject: Hello\n" + "to: test@zimbra.com\n";
Account acct1 = Provisioning.getInstance().get(Key.AccountBy.name, "test@zimbra.com");
Account acct2 = Provisioning.getInstance().get(Key.AccountBy.name, "test2@zimbra.com");
Mailbox mbox1 = MailboxManager.getInstance().getMailboxByAccount(acct1);
Mailbox mbox2 = MailboxManager.getInstance().getMailboxByAccount(acct2);
RuleManager.clearCachedRules(acct1);
String filterScript = "set \"var\" \"World\";\n" + "if anyof (true) { reply \"${Subject} ${var}\"" + " stop;" + "}";
acct1.setMailSieveScript(filterScript);
List<ItemId> ids = RuleManager.applyRulesToIncomingMessage(new OperationContext(mbox1), mbox1, new ParsedMessage(sampleMsg.getBytes(), false), 0, acct1.getName(), new DeliveryContext(), Mailbox.ID_FOLDER_INBOX, true);
Assert.assertEquals(1, ids.size());
Integer item = mbox2.getItemIds(null, Mailbox.ID_FOLDER_INBOX).getIds(MailItem.Type.MESSAGE).get(0);
Message notifyMsg = mbox2.getMessageById(null, item);
Assert.assertEquals("Hello World", notifyMsg.getFragment());
} catch (Exception e) {
fail("No exception should be thrown");
}
}
use of com.zimbra.cs.mime.ParsedMessage in project zm-mailbox by Zimbra.
the class RuleManagerAdminFilterTest method stopAtAdminBefore.
/* @Test
public void variableAdminOnUserOn() throws Exception {
Account account = Provisioning.getInstance().getAccount(MockProvisioning.DEFAULT_ACCOUNT_ID);
RuleManager.clearCachedRules(account);
Map<String, Object> attrs = Maps.newHashMap();
attrs = Maps.newHashMap();
Provisioning.getInstance().getServer(account).modify(attrs);
Mailbox mbox = MailboxManager.getInstance().getMailboxByAccount(account);
account.unsetMailAdminSieveScriptBefore();
account.unsetMailSieveScript();
account.unsetMailAdminSieveScriptAfter();
account.setMailAdminSieveScriptBefore(variableScripts[0]);
account.setMailSieveScript(variableScripts[1]);
account.setMailAdminSieveScriptAfter(variableScripts[2]);
List<ItemId> ids = RuleManager.applyRulesToIncomingMessage(new OperationContext(mbox),
mbox, new ParsedMessage(message.getBytes(), false),
0, account.getName(), new DeliveryContext(), Mailbox.ID_FOLDER_INBOX, true);
Assert.assertEquals(1, ids.size());
Message msg = mbox.getMessageById(null, ids.get(0).getId());
String[] tags = msg.getTags();
Assert.assertEquals(3, tags.length);
Assert.assertEquals("before-foo", tags[0]); // ${var} is a valid variable
Assert.assertEquals("enduser-", tags[1]); // Variable feature is on but no definition of ${var}
Assert.assertEquals("after-", tags[2]); // Variable feature is on but no definition of ${var}
}
@Test
public void variableAdminOnUserOn2() throws Exception {
Account account = Provisioning.getInstance().getAccount(MockProvisioning.DEFAULT_ACCOUNT_ID);
RuleManager.clearCachedRules(account);
Map<String, Object> attrs = Maps.newHashMap();
attrs = Maps.newHashMap();
Provisioning.getInstance().getServer(account).modify(attrs);
Mailbox mbox = MailboxManager.getInstance().getMailboxByAccount(account);
account.unsetMailAdminSieveScriptBefore();
account.unsetMailSieveScript();
account.unsetMailAdminSieveScriptAfter();
String enduserScript = "require [\"tag\", \"log\", \"variables\"];"
+ "set \"var\" \"bar\";"
+ "tag \"enduser-${var}\";";
account.setMailAdminSieveScriptBefore(variableScripts[0]);
account.setMailSieveScript(enduserScript);
account.setMailAdminSieveScriptAfter(variableScripts[2]);
List<ItemId> ids = RuleManager.applyRulesToIncomingMessage(new OperationContext(mbox),
mbox, new ParsedMessage(message.getBytes(), false),
0, account.getName(), new DeliveryContext(), Mailbox.ID_FOLDER_INBOX, true);
Assert.assertEquals(1, ids.size());
Message msg = mbox.getMessageById(null, ids.get(0).getId());
String[] tags = msg.getTags();
Assert.assertEquals(3, tags.length);
Assert.assertEquals("before-foo", tags[0]); // "foo" is assigned in admin-defined filter
Assert.assertEquals("enduser-bar", tags[1]);// "bar" is assigned in user-defined filter
Assert.assertEquals("after-", tags[2]); // Variable feature is on but no definition of ${var}
}*/
@Test
public void stopAtAdminBefore() throws Exception {
String adminBefore = "tag \"before-admin\";" + "stop;";
String enduser = "tag \"enduser\";";
String adminAfter = "tag \"after\";";
Account account = Provisioning.getInstance().getAccount(MockProvisioning.DEFAULT_ACCOUNT_ID);
Mailbox mbox = MailboxManager.getInstance().getMailboxByAccount(account);
RuleManager.clearCachedRules(account);
account.unsetAdminSieveScriptBefore();
account.unsetMailSieveScript();
account.unsetAdminSieveScriptAfter();
account.setAdminSieveScriptBefore(adminBefore);
account.setMailSieveScript(enduser);
account.setAdminSieveScriptAfter(adminAfter);
List<ItemId> ids = RuleManager.applyRulesToIncomingMessage(new OperationContext(mbox), mbox, new ParsedMessage(message.getBytes(), false), 0, account.getName(), new DeliveryContext(), Mailbox.ID_FOLDER_INBOX, true);
Assert.assertEquals(1, ids.size());
Message msg = mbox.getMessageById(null, ids.get(0).getId());
String[] tags = msg.getTags();
Assert.assertEquals(1, tags.length);
Assert.assertEquals("before-admin", tags[0]);
}
use of com.zimbra.cs.mime.ParsedMessage in project zm-mailbox by Zimbra.
the class RuleManagerAdminFilterTest method stopInTheAdminRule.
@Test
public void stopInTheAdminRule() throws Exception {
Account account = Provisioning.getInstance().getAccount(MockProvisioning.DEFAULT_ACCOUNT_ID);
Mailbox mbox = MailboxManager.getInstance().getMailboxByAccount(account);
RuleManager.clearCachedRules(account);
account.unsetAdminSieveScriptBefore();
account.unsetMailSieveScript();
account.unsetAdminSieveScriptAfter();
account.setAdminSieveScriptBefore(scriptAdminBeforeStop);
account.setMailSieveScript(scriptUser);
account.setAdminSieveScriptAfter(scriptAdminAfter);
List<ItemId> ids = RuleManager.applyRulesToIncomingMessage(new OperationContext(mbox), mbox, new ParsedMessage(message.getBytes(), false), 0, account.getName(), new DeliveryContext(), Mailbox.ID_FOLDER_INBOX, true);
Assert.assertEquals(1, ids.size());
Message msg = mbox.getMessageById(null, ids.get(0).getId());
Assert.assertEquals("admin-defined-before", ArrayUtil.getFirstElement(msg.getTags()));
}
Aggregations