Re: Cannot get Camel to work with Dovecot IMAP

2010-05-02 Thread Willem Jiang
Hi Vilito, I'm sorry I know nothing about the IMAP and POP3 protocol details. Did you compare the page that your mail client send and Camel mail component send ? Can you send a mail to the Dovecot user mailing list about this issue? Maybe they can help you with the TCP dump files. Willem Vili

Re: Cannot get Camel to work with Dovecot IMAP

2010-05-02 Thread Vilito Exquisitus
80 IP 10.10.100.1.40909 > eserver00.local.imaps: Flags [P.], seq 79:86, ack 565, win 55, options [nop,nop,TS val 363706 ecr 176689685], length 7 06:19:35.238524 IP 10.10.100.1.40909 > eserver00.local.imaps: Flags [F.], seq 86, ack 565, win 55, options [nop,nop,TS val 363706 ecr 176689685], l

Re: Cannot get Camel to work with Dovecot IMAP

2010-05-01 Thread Vilito Exquisitus
Hi Willem, Thanks. I will capture some data and get it to you. Basically a tcpdump should is what you are looking for, right? .v -- View this message in context: http://old.nabble.com/Cannot-get-Camel-to-work-with-Dovecot-IMAP-tp28381349p28420276.html Sent from the Camel - Users mailing

Re: Cannot get Camel to work with Dovecot IMAP

2010-04-29 Thread Willem Jiang
Hi Vilito, Please see my comments in the mail. Vilito Exquisitus wrote: Hi Willem Thanks for all the great feedback and information. First off, I am having some difficulties getting my hands on Camel 2.3. More on that later. Using the camel 2.2 jars, I place only the ones you specified i

Re: Cannot get Camel to work with Dovecot IMAP

2010-04-29 Thread Willem Jiang
Hi Vilito, Thanks for sharing this. Can you try to catch the TCP messages when your mail client talk to your Devecot server. It will save some time to figure which data format your Dovecot server would like. Willem Vilito Exquisitus wrote: Hi Willem, I did some more digging and found out

Re: Cannot get Camel to work with Dovecot IMAP

2010-04-29 Thread Vilito Exquisitus
ext: http://old.nabble.com/Cannot-get-Camel-to-work-with-Dovecot-IMAP-tp28381349p28404014.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Cannot get Camel to work with Dovecot IMAP

2010-04-29 Thread Vilito Exquisitus
er.delay=2") does not. The error message is something about not being able to create endpoint when those options are provided. Thanks again for everything. .v -- View this message in context: http://old.nabble.com/Cannot-get-Camel-to-work-with-Dovecot-IMAP-tp28381349p28402071.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Cannot get Camel to work with Dovecot IMAP

2010-04-28 Thread Willem Jiang
Hi, You just put these jars into your classpath (replace the camel* jar with your version) aopalliance:aopalliance:jar:1.0:compile com.sun.xml.bind:jaxb-impl:jar:2.1.12:compile commons-logging:commons-logging:jar:1.1.1:test commons-logging:commons-logging-api:jar:1.1:compile javax.activation:act

Re: Cannot get Camel to work with Dovecot IMAP

2010-04-28 Thread Vilito Exquisitus
import org.apache.camel.Exchange; >> import org.apache.camel.Message; >> >> class MyProcessor implements org.apache.camel.Processor{ >> public void process(Exchange exchng) throws Exception { >> println("MyProcessor.process(): ${exchng}"); >> Message inMesg = exchng.getIn(); >> println("->In Message: ${inMesg}"); >> } >> } >> > > > -- View this message in context: http://old.nabble.com/Cannot-get-Camel-to-work-with-Dovecot-IMAP-tp28381349p28392140.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Cannot get Camel to work with Dovecot IMAP

2010-04-27 Thread Willem Jiang
Hi, Which version of Camel are you using? Which version of Mail jar are you using? There are some bugs with the Geronimo mail jar, so we switch to javax.mail last year, please make sure you are using the javax.mail.jar. Willem Vilito Exquisitus wrote: Hi all, I am having a problem doing s

Cannot get Camel to work with Dovecot IMAP

2010-04-27 Thread Vilito Exquisitus
blic void process(Exchange exchng) throws Exception { println("MyProcessor.process(): ${exchng}"); Message inMesg = exchng.getIn(); println("->In Message: ${inMesg}"); } } -- View this message in context: http://old.nabble.com/Cannot-get-Camel-to-work-with-Dove