gpt4 book ai didi

exception - play activator - runtimeException : smtp. 主机需要在 application.conf 中设置才能使用此插件(或将 smtp.mock 设置为 true)

转载 作者:行者123 更新时间:2023-12-04 20:41:26 26 4
gpt4 key购买 nike

我正在尝试运行名为“playStartApp”的 Play 激活器模板。
但是,它给了我以下运行时异常:

RuntimeException: smtp.host needs to be set in application.conf in order to use this plugin (or set smtp.mock to true)\

java.lang.RuntimeException: smtp.host needs to be set in application.conf in order to use this plugin (or set smtp.mock to true)
com.typesafe.plugin.CommonsMailerPlugin$$anonfun$4.apply(MailerPlugin.scala:329)
com.typesafe.plugin.CommonsMailerPlugin$$anonfun$4.apply(MailerPlugin.scala:329)
scala.Option.getOrElse(Option.scala:120)
com.typesafe.plugin.CommonsMailerPlugin.mailerInstance$lzycompute(MailerPlugin.scala:329)
com.typesafe.plugin.CommonsMailerPlugin.mailerInstance(MailerPlugin.scala:326)
com.typesafe.plugin.CommonsMailerPlugin.onStart(MailerPlugin.scala:343)
play.api.Play$$anonfun$start$1$$anonfun$apply$mcV$sp$1.apply(Play.scala:91)`


I tried both:
- set mail.smtp=mock

- mail.smtp.host=smtp.gmail.com
mail.smtp.user=yourGmailLogin
mail.smtp.pass=yourGmailPassword
mail.smtp.channel=ssl

pls suggest how to resolve this?

最佳答案

在“playStartApp”激活器模板中,您可以 -

  • 使用模拟邮件程序,在 conf/application.conf 中输入以下内容
    smtp.mock=true

  • 模拟选项会将电子邮件输出呈现到控制台。如果您使用的是 Activator UI,您将能够在“运行”选项卡上的日志中看到邮件输出。
  • 在 conf/application.conf 中提及 SMTP 服务器详细信息
    smtp.host=smtp.gmail.com
    smtp.port=587
    smtp.user="user@gmail.com"
    smtp.password="password"
    smtp.ssl=true
    mail.from="PlayStartApp@yourdomain.com"
    mail.sign=The PlayStartApp Team

  • 您也可以使用 gmail 服务器发送邮件,我在上面已经提到过。

    或者,在“playStartApp”中,只需将 conf/mail.conf.example 重命名为 conf/mail.conf 并将所有与 SMTP 相关的配置移至此处。请注意 .gitignore 中提到了 conf/mail.conf。

    资源( Play 文档):

    Mail configuration parameters

    SMTP Configuratoin

    关于exception - play activator - runtimeException : smtp. 主机需要在 application.conf 中设置才能使用此插件(或将 smtp.mock 设置为 true),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25772266/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com