Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Found it out now. It doesn't has to do something with the connection string. For those who want to connect to Exchange, here some hints.</p> <p>Here's my config:</p> <pre><code>&lt;util:properties id="javaMailProperties"&gt; &lt;prop key="mail.imaps.socketFactory.class"&gt;javax.net.ssl.SSLSocketFactory&lt;/prop&gt; &lt;prop key="mail.imap.starttls.enable"&gt;true&lt;/prop&gt; &lt;prop key="mail.imaps.socketFactory.fallback"&gt;false&lt;/prop&gt; &lt;prop key="mail.store.protocol"&gt;imaps&lt;/prop&gt; &lt;prop key="mail.debug"&gt;true&lt;/prop&gt; &lt;/util:properties&gt; &lt;mail:inbound-channel-adapter id="imapAdapter" store-uri="imap://&lt;username&gt;:&lt;password&gt;@&lt;exchange-url&gt;/INBOX" channel="recieveEmailChannel" should-delete-messages="false" should-mark-messages-as-read="false" auto-startup="true" java-mail-properties="javaMailProperties"&gt; &lt;int:poller fixed-delay="5" time-unit="SECONDS" /&gt; &lt;/mail:inbound-channel-adapter&gt; &lt;int:channel id="recieveEmailChannel" /&gt; &lt;int:service-activator input-channel="recieveEmailChannel" ref="reviewMailService" method="receive" /&gt; </code></pre> <p>Typically Exchange uses Imaps with STARTTLS connection.</p> <p>To perform the SSL handshake, you can use the InstallCert Java program: <a href="http://code.google.com/p/java-use-examples/source/browse/trunk/src/com/aw/ad/util/InstallCert.java" rel="nofollow">http://code.google.com/p/java-use-examples/source/browse/trunk/src/com/aw/ad/util/InstallCert.java</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload