Bonobo Git 服务器 SMTP 设置

Bonobo Git Server SMTP Settings

我在我的 Win 7 PC 上安装了 Bonobo Git 服务器版本 3.6。今天,我尝试忘记密码,但弹出错误消息说 Unable to send email. Validate SMTP settings..

如何以及在何处设置 SMTP 设置?

Bonobo 使用标准的 .NET smtp 设置。

这些可以在 web.config 中为您的 Bonobo 安装指定。

你可以阅读 details here ,但基本上你应该在 configuration\system.net

下添加一个 <mailSettings>

以下是一个有效但简单的示例。可以使用任何 smtp 服务器,正如您在 link 中所读到的,还可以提供各种安全设置。

<system.net>
    <mailSettings>
        <smtp deliveryMethod="network" from="bonobo@bonoserver.your.domain">
            <network 
                host="accessible.smtp.host"
                port="25"
                />
        </smtp>
    </mailSettings>
</system.net>

More details about the network element here