Spring XD - 邮件源配置 - 如何提供密码

时间:2014-05-23 04:10:05

标签: email configuration spring-xd

我使用以下命令-------

创建了一个邮件流
stream create --name mailstream --definition "mail --host=imap.gmail.com --username=yyyyyyyy12@gmail.com --password=my password | file --dir=/tmp/gmailData" --deploy

参考 - http://docs.spring.io/spring-xd/docs/1.0.0.BUILD-SNAPSHOT/reference/html/#modules

但是在xd-singletone控制台中我得到了 -

Caused by: javax.mail.AuthenticationFailedException: failed to connect, no password specified?

如何解决此问题。

另外--password = secret - 如何在XD shell中保持我的密码不可见或秘密

/ shankha

2 个答案:

答案 0 :(得分:3)

你需要逃避" @"用"%40"用户名和密码,并为gmail指定--port=993。此外,可能无法使用默认设置,因为GMail需要为imap配置SSL,这也需要配置。

所以,我建议如下(基本上,创建一个新的源模块):

  1. 转到spring-xd-1.0.0.M6\xd\modules\source并制作mail文件夹的副本,并将此副本命名为gmail
  2. 转到spring-xd-1.0.0.M6\xd\modules\source\gmail\config并将mail.propertiesmail.xml分别重命名为gmail.propertiesgmail.xml
  3. gmail.xml里面用以下内容替换所有内容:
  4. <?xml version="1.0" encoding="UTF-8"?>
    <beans:beans xmlns="http://www.springframework.org/schema/integration"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans"
        xmlns:file="http://www.springframework.org/schema/integration/file"
        xmlns:int-mail="http://www.springframework.org/schema/integration/mail"
        xmlns:context="http://www.springframework.org/schema/context"
        xmlns:util="http://www.springframework.org/schema/util"
        xsi:schemaLocation="http://www.springframework.org/schema/integration/mail http://www.springframework.org/schema/integration/mail/spring-integration-mail.xsd
            http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration.xsd
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
        <channel id="output" />
    
        <int-mail:mail-to-string-transformer
            charset="${charset}" input-channel="transform" output-channel="output" />
    
        <beans:beans profile="use-polling">
            <int-mail:inbound-channel-adapter
                store-uri="${protocol}://${username:}:${password:}@${host}:${port}/${folder}"
                channel="transform" should-mark-messages-as-read="${markAsRead}"
                should-delete-messages="${delete}" java-mail-properties="javaMailProperties">
                <poller fixed-delay="${fixedDelay}" time-unit="SECONDS">
                    <advice-chain>
                        <beans:bean
                            class="org.springframework.xd.dirt.module.support.ThreadContextClassLoaderSetterAdvice" />
                    </advice-chain>
                </poller>
            </int-mail:inbound-channel-adapter>
        </beans:beans>
    
        <beans:beans profile="use-idle">
            <int-mail:imap-idle-channel-adapter
                store-uri="${protocol}://${username:}:${password:}@${host}:${port}/${folder}"
                channel="transform" auto-startup="true" mail-filter-expression="${expression}"
                should-mark-messages-as-read="${markAsRead}"
                should-delete-messages="${delete}"  java-mail-properties="javaMailProperties">
            </int-mail:imap-idle-channel-adapter>
        </beans:beans>
    
        <beans:beans profile="default">
            <util:properties id="javaMailProperties">
                <beans:prop key="mail.imap.socketFactory.class">javax.net.ssl.SSLSocketFactory</beans:prop>
                <beans:prop key="mail.imap.socketFactory.fallback">false</beans:prop>
                <beans:prop key="mail.store.protocol">imaps</beans:prop>
                <beans:prop key="mail.debug">false</beans:prop>
            </util:properties>
        </beans:beans>
    </beans:beans>
    

    4。现在,在XD shell中,您将使用以下内容创建流:

    stream create --name myGmailStream --definition "gmail --host=imap.gmail.com --username=yyyyyyyy12%40gmail.com --password=my_password --port=993 | file --dir=/tmp/gmailData" --deploy
    

    请注意以下事项:

    • 我添加了--port=993
    • 用户名包含&#34;%40&#34;而不是&#34; @&#34;
    • 流的定义以"gmail
    • 开头
    • 如果您的密码包含&#34; @&#34;你需要用&#34;%40&#34;以及

    我上面所做的基本上是创建一个新的自定义模块(源代码),这很简单(有关详细信息,请参阅documentation)。 XD单节点或XD Shell甚至不需要重新启动。试一试,让我知道它是怎么回事。

答案 1 :(得分:1)

关于您不希望作为流定义的一部分显示的密码,您可以将其作为邮件模块选项的一部分提供,如下所述:http://docs.spring.io/spring-xd/docs/1.0.0.BUILD-SNAPSHOT/reference/html/#_module_configuration

<xd_home>/config/modules/source/mail/mail.properties:

password: yourpassword