use of com.zimbra.cs.lmtpserver.LmtpEnvelope in project zm-mailbox by Zimbra.
the class RelationalExtensionTest method setEnvelopeInfo.
private LmtpEnvelope setEnvelopeInfo() {
LmtpEnvelope env = new LmtpEnvelope();
LmtpAddress sender = new LmtpAddress("<abc@zimbra.com>", new String[] { "BODY", "SIZE" }, null);
LmtpAddress recipient1 = new LmtpAddress("<xyz@zimbra.com>", null, null);
LmtpAddress recipient2 = new LmtpAddress("<uvw@zimbra.com>", null, null);
env.setSender(sender);
env.addLocalRecipient(recipient1);
env.addLocalRecipient(recipient2);
return env;
}
use of com.zimbra.cs.lmtpserver.LmtpEnvelope in project zm-mailbox by Zimbra.
the class ErejectTest method test.
/*
* applyRulesToIncomingMessage() should throw an exception to cancel the message delivery.
* No message is delivered.
*
* The following error will be logged:
* ERROR - Evaluation failed. Reason: 'ereject' action refuses delivery of a message. Sieve rule evaluation is cancelled
*/
@Test
public void test() {
Account acct1 = null;
Mailbox mbox1 = null;
boolean isPassed = false;
try {
acct1 = Provisioning.getInstance().get(Key.AccountBy.name, "test@zimbra.com");
mbox1 = MailboxManager.getInstance().getMailboxByAccount(acct1);
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);
RuleManager.applyRulesToIncomingMessage(new OperationContext(mbox1), mbox1, new ParsedMessage(sampleBaseMsg.getBytes(), false), 0, acct1.getName(), env, new DeliveryContext(), Mailbox.ID_FOLDER_INBOX, true);
} catch (DeliveryServiceException e) {
if (e.getCause() instanceof ErejectException) {
try {
List<Integer> items = mbox1.getItemIds(null, Mailbox.ID_FOLDER_INBOX).getIds(MailItem.Type.MESSAGE);
Assert.assertEquals(null, items);
isPassed = true;
} catch (Exception ex) {
fail("No exception should be thrown: " + ex.getMessage());
}
} else {
fail("No exception other than DeliveryServiceException/ErejectException should be thrown: " + e.getMessage());
}
} catch (Exception e) {
fail("No exception should be thrown: " + e.getMessage());
}
if (!isPassed) {
fail("DeliveryServiceException/ErejectException should have been thrown, but no exception is thrown");
}
}
use of com.zimbra.cs.lmtpserver.LmtpEnvelope in project zm-mailbox by Zimbra.
the class EnvelopeTest method testMailFromDot.
@Test
public void testMailFromDot() {
String filterScript = "require \"envelope\";\n" + "if envelope :all :is \"from\" \"ti.m@example.com\" {\n" + " tag \"From\";\n" + "}";
LmtpEnvelope env = new LmtpEnvelope();
LmtpAddress sender = new LmtpAddress("<ti.m@example.com>", new String[] { "BODY", "SIZE" }, null);
LmtpAddress recipient = new LmtpAddress("<xyz@zimbra.com>", null, null);
env.setSender(sender);
env.addLocalRecipient(recipient);
try {
Account account = Provisioning.getInstance().getAccountByName("testEnv@zimbra.com");
RuleManager.clearCachedRules(account);
Mailbox mbox = MailboxManager.getInstance().getMailboxByAccount(account);
account.setMailSieveScript(filterScript);
List<ItemId> ids = RuleManager.applyRulesToIncomingMessage(new OperationContext(mbox), mbox, new ParsedMessage(sampleMsg.getBytes(), false), 0, account.getName(), env, new DeliveryContext(), Mailbox.ID_FOLDER_INBOX, true);
Assert.assertEquals(1, ids.size());
Message msg = mbox.getMessageById(null, ids.get(0).getId());
Assert.assertEquals("From", ArrayUtil.getFirstElement(msg.getTags()));
} catch (Exception e) {
fail("No exception should be thrown");
}
}
use of com.zimbra.cs.lmtpserver.LmtpEnvelope in project zm-mailbox by Zimbra.
the class EscapeSequencesTest method doTestEnvelopeEscapePattern.
public void doTestEnvelopeEscapePattern(String filterScript) {
String sampleMsg = "from: tim@example.com\n" + "to: test@zimbra.com\n" + "Subject: Example\n";
LmtpEnvelope env = new LmtpEnvelope();
LmtpAddress sender = new LmtpAddress("<user123@example.com>", new String[] { "BODY", "SIZE" }, null);
LmtpAddress recipient = new LmtpAddress("<test1@zimbra.com>", null, null);
env.setSender(sender);
env.addLocalRecipient(recipient);
try {
Account account = Provisioning.getInstance().get(Key.AccountBy.name, "test1@zimbra.com");
RuleManager.clearCachedRules(account);
Mailbox mbox = MailboxManager.getInstance().getMailboxByAccount(account);
account.setMailSieveScript(filterScript);
List<ItemId> ids = RuleManager.applyRulesToIncomingMessage(new OperationContext(mbox), mbox, new ParsedMessage(triggeringMsg.getBytes(), false), 0, account.getName(), env, new DeliveryContext(), Mailbox.ID_FOLDER_INBOX, true);
Assert.assertEquals(0, ids.size());
} catch (Exception e) {
fail("No exception should be thrown " + e);
}
}
use of com.zimbra.cs.lmtpserver.LmtpEnvelope in project zm-mailbox by Zimbra.
the class EscapeSequencesTest method doTestNotifyEscape.
public void doTestNotifyEscape(String filterScript, String expectedString) {
try {
Account acct1 = Provisioning.getInstance().get(Key.AccountBy.name, "test1@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("<>", new String[] { "BODY", "SIZE" }, null);
LmtpAddress recipient = new LmtpAddress("<xyz@zimbra.com>", null, null);
env.setSender(sender);
env.addLocalRecipient(recipient);
acct1.setMailSieveScript(filterScript);
RuleManager.applyRulesToIncomingMessage(new OperationContext(mbox1), mbox1, new ParsedMessage(triggeringMsg.getBytes(), false), 0, acct1.getName(), env, new DeliveryContext(), Mailbox.ID_FOLDER_INBOX, true);
Integer item = mbox2.getItemIds(null, Mailbox.ID_FOLDER_INBOX).getIds(MailItem.Type.MESSAGE).get(0);
Message notifyMsg = mbox2.getMessageById(null, item);
// Subject header in the notification message
Assert.assertEquals(expectedString, notifyMsg.getSubject());
} catch (Exception e) {
fail("No exception should be thrown " + e);
}
}
Aggregations