Bonobo Git服务器SMTP设置 [英] Bonobo Git Server SMTP Settings

查看:339
本文介绍了Bonobo Git服务器SMTP设置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的Win 7 PC上安装了Bonobo Git Server 3.6版。今天,我尝试了忘记密码,但是弹出错误消息说无法发送电子邮件。验证SMTP设置。

I have Bonobo Git Server version 3.6 installed on my Win 7 PC. Today, I tried on forgotten password, but it popup error message saying Unable to send email. Validate SMTP settings..

如何&我在哪里可以设置SMTP设置?

How & where can I set the SMTP settings?

推荐答案

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

Bonobo uses standard .NET smtp settings.

可以在web.config中为Bonobo安装指定。

These can be specified in the web.config for your Bonobo-installation.

您可以阅读详细信息,但基本上你应该在configuration\system.net下添加< mailSettings>

You can read the details here , but basically you should add a <mailSettings> group under configuration\system.net

以下是一个虽然简单的例子。可以使用任何smtp服务器,并且您可以在链接中阅读,也可以提供各种安全设置。

The following is a working albeit simple example. It is possible to use any smtp server and as you can read in the link, it is also possible to provide a variety of security settings.

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

此处有关网络元素的更多详细信息

这篇关于Bonobo Git服务器SMTP设置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆