[
https://issues.apache.org/jira/browse/CAMEL-7254?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Willem Jiang resolved CAMEL-7254.
---------------------------------
Resolution: Fixed
Fix Version/s: 2.11.5
2.13.0
2.12.4
Applied the patch with thanks to Matt into master, camel-2.12.x and
camel-2.11.x branches.
> MailComponent 'peek' doesn't work due to programming error
> ----------------------------------------------------------
>
> Key: CAMEL-7254
> URL: https://issues.apache.org/jira/browse/CAMEL-7254
> Project: Camel
> Issue Type: Bug
> Components: camel-mail
> Affects Versions: 2.12.2
> Reporter: Matt Nathan
> Assignee: Willem Jiang
> Priority: Critical
> Fix For: 2.12.4, 2.13.0, 2.11.5
>
>
> The MailComponent peek setting doesn't work due to the following line:
> {code:java}
> private void peekMessage(Message mail) {
> // this only applies to IMAP messages which has a setPeek method
> if (mail.getClass().getName().startsWith("IMAP")) {
> try {
> LOG.trace("Calling setPeek(true) on mail message {}", mail);
> IntrospectionSupport.setProperty(mail, "peek", true);
> } catch (Throwable e) {
> // ignore
> LOG.trace("Error setting peak property to true on: " + mail +
> ". This exception is ignored.", e);
> }
> }
> }
> {code}
> The line that checks the class name for IMAP should be using getSimpleName.
> Otherwise it's checking the package name instead.
> This effectively means that rollback of processing in camel mail is not
> supported.
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)