Return-Path: Delivered-To: apmail-activemq-camel-dev-archive@locus.apache.org Received: (qmail 17321 invoked from network); 19 Sep 2008 19:55:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Sep 2008 19:55:13 -0000 Received: (qmail 57638 invoked by uid 500); 19 Sep 2008 19:55:10 -0000 Delivered-To: apmail-activemq-camel-dev-archive@activemq.apache.org Received: (qmail 57618 invoked by uid 500); 19 Sep 2008 19:55:10 -0000 Mailing-List: contact camel-dev-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: camel-dev@activemq.apache.org Delivered-To: mailing list camel-dev@activemq.apache.org Received: (qmail 57607 invoked by uid 99); 19 Sep 2008 19:55:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Sep 2008 12:55:10 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Sep 2008 19:54:19 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 94510234C1DD for ; Fri, 19 Sep 2008 12:54:52 -0700 (PDT) Message-ID: <617246157.1221854092593.JavaMail.jira@brutus> Date: Fri, 19 Sep 2008 12:54:52 -0700 (PDT) From: "Claus Ibsen (JIRA)" To: camel-dev@activemq.apache.org Subject: [jira] Commented: (CAMEL-869) A subject from message header is not copied to mailMessage In-Reply-To: <479035449.1220022052618.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/activemq/browse/CAMEL-869?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=45832#action_45832 ] Claus Ibsen commented on CAMEL-869: ----------------------------------- Adam are you still having problem with this one? Have you tried just setting the mail body as a simple String object? You can still have all the mail headers set as plain headers on the message. See the unit tests in camel-mail > A subject from message header is not copied to mailMessage > ----------------------------------------------------------- > > Key: CAMEL-869 > URL: https://issues.apache.org/activemq/browse/CAMEL-869 > Project: Apache Camel > Issue Type: Bug > Components: camel-mail > Affects Versions: 1.4.0, 1.5.0 > Reporter: Adam > Assignee: Hadrian Zbarcea > Fix For: 1.5.0 > > > The issue refers to sending emails on one of the stages in the messaging pipeline. I checked all the suggested solutions from the spec and none of the them resulted in an email message with a subject. > I have the following code: > ... > private static final String DIRECT_INFECTION_ALERT = "direct:infectionAlert"' > ... > from(DIRECT_INFECTION_ALERT) > .to("xslt:" + infectionAlertXsl) > .process(new Processor() { > public void process(Exchange exchange) throws Exception > { > Message m = exchange.getIn(); > Map headers = new HashMap(); > headers.put(TO_HEADER_KEY, recipients.toString()); > headers.put(FROM_HEADER_KEY, from); > headers.put(SUBJECT_HEADER_KEY, constant(INFECTION_ALERT_SUBJECT)); > m.setHeaders(headers); > m.setBody(exchange.getIn().getBody(), MailMessage.class); > MailMessage mail = new MailMessage(); > mail.copyFrom(m); > exchange.setIn(mail); > }}) > .to("log:debug","smtp://" + smtp_server + ":" + port); > and a simple and naive version -> > from(DIRECT_INFECTION_ALERT) > .to("xslt:" + infectionAlertXsl) > .process(new Processor() { > public void process(Exchange exchange) throws Exception > { > Message message = exchange.getIn(); > Map headers = new HashMap(); > headers.put(TO_HEADER_KEY, recipients.toString()); > headers.put(FROM_HEADER_KEY, from); > headers.put(SUBJECT_HEADER_KEY, constant(INFECTION_ALERT_SUBJECT)); > message.setHeaders(headers); > }}) > .to("log:debug","smtp://" + smtp_server + ":" + port); > I tried many other combinations, well all from the camel mail component spec. Upgraded camel to 1.5-SNAPSHOT (comes with fix for disabling authentication on missing username/password for mail server). I can receive email messages, no problem, but never managed to get one with a subject. On debugging, messages always have correct headers (subject, to, from, etc) but then the info is lost somewhere. > Thanks > Adam -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.