git Bonobo无法发送电子邮件,请验证SMTP设置

iqxoj9l9  于 2022-12-17  发布在  Git
关注(0)|答案(1)|浏览(319)

我已经安装了倭黑猩猩版本6.3.0,我很难恢复密码,它给我这个错误“无法发送电子邮件。验证SMTP设置”。
我已经在webconfig中设置了邮件设置

<system.net>
    <mailSettings>
      <smtp deliveryMethod="Network">
        <network host="smtp.gmail.com" port="587" userName="user name" password="password" enableSsl="true" />
      </smtp>
    </mailSettings>
 </system.net>

这仍然不起作用,我以为问题出在我的远程机器上,我的倭黑猩猩服务器在那里,然后我在我的本地机器上创建了一个,我得到了同样的错误。
有人知道吗?

x6h2sr28

x6h2sr281#

我知道你是gmail的要求,但为了帮助人们与默认托管服务,我在这里添加细节。
进入你的Bonobo Git安装程序,打开Web.config。下面是我的工作配置:

<configuration>
  <system.net>  
    <mailSettings>  
      <smtp deliveryMethod="Network" from="noreply@yourdomain.com">  
        <network  
          defaultCredentials="false"  
          enableSsl="false"  
          host="server.hosting.ch"
          password="secretpassword#123"  
          port="587"
          userName="noreply@yourdomain.com" 
        />  
      </smtp>  
    </mailSettings>  
  </system.net>   
</configuration>

这基于Microsoft的web.config文档:Network settings
现在要使用Gmail,您可以解锁您的客户端系统如下所述:Gmail setup SMTP and POP3 for Mailclient

相关问题