I am new to Mule and im trying to create a Mule configuration that pulls sent emails from a GMail account via imap and pushes them to a php script that processes and stores them in a custom CRM that i've built. For starters, i'm just trying to get the inbox emails dumped into a text files and i plan to work from there.

As new messages are received by the mailbox, Mule should pick up the new messages and process them automatically.

The Mule config looks like this so far:

<imaps:connector name="IMAP" mailboxFolder="INBOX" validateConnections="false" doc:name="IMAP" />
<flow name="flows1Flow1" doc:name="flows1Flow1">
    <imaps:inbound-endpoint host="imap.gmail.com" port="993" user="[[username]]%40gmail.com" password="[[password]]" connector-ref="IMAP" doc:name="IMAP"/>
   <file:outbound-endpoint path="D:\mailflow" outputPattern="msg_#[function:date].txt" doc:name="File"/>
</flow>

The program runs and gets to this point:

    INFO  2012-01-12 13:51:06,606 [main] org.mule.DefaultMuleContext: 
    **********************************************************************
    * Application: mailflow                                     *
    * OS encoding: Cp1252, Mule encoding: UTF-8                          *
    *                                                                    *
    * Agents Running:                                                    *
    *   JMX Agent                                                        *
    **********************************************************************
    INFO  2012-01-12 13:51:06,606 [main] org.mule.module.launcher.DeploymentService: 
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    + Started app 'mailflow'                          +
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

And then just sits there indefinitely, doing nothing?!

There is documentation suggesting that because i'm using IMAPS i need to add a TLS client and TLS key store to the imaps connector. I'm not sure what these are or how to use them though and the documentation is highly specialized and hard to understand. I'm also not sure that that's what the problem is in the first place as the app doesn't crash at any point.

Has anyone had success creating an imap flow with GMail? Please Help?!

link|improve this question
feedback

1 Answer

Just create the connector like this:

<imaps:connector name="IMAP">
   <imaps:tls-client/>
   <imaps:tls-trust-store/>
</imaps:connector>

And that should do the trick. Also, I'd remove the "@gmail" from the user's definition, since it's not necessary.

Bye!

German

link|improve this answer
Maybe i wasn't clear: the tls-client and tls-trust-store elements both require a path attribute and a storePassword. like this: <imaps:tls-client path="" storePassword="" /> <imaps:tls-trust-store storePassword="" path="" /> What is the path meant to point to and what/where is the password for/from? Is it my public key? or do i make it up?? its really not clear. – user1145598 Jan 14 at 18:39
Hi, AFAIK you don't need to declare the path for the tls-client and trust-store. By declaring it as I showed you it will use the default keystores of your JVM. Give it a try as it is and let us know the results :) – German Jan 16 at 20:49
Tx for your reply. I have been running the app without the client and trust store and it seems to run fine (ie. it doesn't crash) but it still just sits there.. it should be monitoring and pulling messages in from the mailbox, but it just sits there, with no activity.. – user1145598 Jan 22 at 21:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.