1

我使用以下命令创建了一个邮件流--------

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 中不可见或保密

/香卡

4

2 回答 2

3

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

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

  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替换为:
<?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
  • 用户名包含“%40”而不是“@”
  • 流的定义以"gmail
  • 如果您的密码包含“@”,您还需要将其替换为“%40”

我上面所做的基本上是创建一个新的自定义模块(源),这很容易(有关此的更多详细信息,您可以在文档中找到)。XD 单节点或 XD Shell 甚至不需要重新启动。试一试,让我知道它是怎么回事。

于 2014-05-23T07:56:41.370 回答
1

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

IE

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

password: yourpassword
于 2014-05-23T15:33:54.533 回答