Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bonobo Git Server SMTP Settings

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..

How & where can I set the SMTP settings?

like image 997
user1995781 Avatar asked Dec 20 '25 23:12

user1995781


1 Answers

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="[email protected]">
            <network 
                host="accessible.smtp.host"
                port="25"
                />
        </smtp>
    </mailSettings>
</system.net>

More details about the network element here.

like image 68
faester Avatar answered Dec 24 '25 12:12

faester



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!