Bonobo Git Server SMTP Settings

你。 提交于 2019-12-06 00:57:19

Bonobo uses standard .NET smtp settings.

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

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

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>

More details about the network element here.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!