Ales Dolecek created CAMEL-6626:
-----------------------------------
Summary: Search critera for toSentDate throws NPE
Key: CAMEL-6626
URL: https://issues.apache.org/jira/browse/CAMEL-6626
Project: Camel
Issue Type: Bug
Components: camel-mail
Affects Versions: 2.11.1
Reporter: Ales Dolecek
Use of searchTerm.toSentDate=now-24h (to poll only mails older than 24 hours)
throws NPE. This is because MailConverters#toSearchTerm tries to build
"toSentDate" criteria from "fromSentDate" value:
if (simple.getToSentDate() != null) {
String s = simple.getFromSentDate();
if (s.startsWith("now")) {
The middle line should be:
String s = simple.getToSentDate();
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira