Re: extract header from camel-mail component

2012-03-30 Thread hangstl
> Is it possible ? Sure it is possible. If you give me a little bit more details I can show you what to do. -- View this message in context: http://camel.465427.n5.nabble.com/extract-header-from-camel-mail-component-tp5605751p5606151.html Sent from the Camel - Users mailing list archive

Re: extract header from camel-mail component

2012-03-30 Thread Claus Ibsen
On Fri, Mar 30, 2012 at 3:09 PM, Filippo Balicchia wrote: > Thanks for the suggestion but does not address my question of how to > instruct the mail component in a manner that does >  not regard the 'headers'. > The headers ought to be preserved by the mail component, as sending an email does not

Re: extract header from camel-mail component

2012-03-30 Thread Filippo Balicchia
Thanks for the suggestion but does not address my question of how to instruct the mail component in a manner that does not regard the 'headers'. Cheers --Filippo Il 30 marzo 2012 10:04, Taariq Levack ha scritto: > Hi > Instead of the 1st "process" unless there's more going on there, use > set

Re: extract header from camel-mail component

2012-03-30 Thread Taariq Levack
Hi Instead of the 1st "process" unless there's more going on there, use setHeader [1] , and instead of the 2nd "process", use header[2]. [1] http://camel.apache.org/constant.html [2] http://camel.apache.org/header.html Taariq On 30 Mar 2012, at 7:52, Filippo Balicchia wrote: > Hello All, > I

extract header from camel-mail component

2012-03-29 Thread Filippo Balicchia
Hello All, I need to extract one header from exchange when i try to send an email with camel-mail: For example from(blal).process("here i put my header") .to("smtps:/gmailcdjicjd") //at this point I' d like to filter my headers without delete it .process("Here i need to use my header"). Is it pos