Bonobo Git SMTP Server Settings
I have Bonobo Git Server version 3.6 installed on my Windows 7 PC. Today I tried a forgotten password, but this error message is a pop-up message Unable to send email. Validate SMTP settings.
.
How and where can I set my SMTP settings?
+3
user1995781
source
to share
1 answer
Bonobo uses standard .NET smtp settings.
These can be specified in the web.config for your Bonobo installation.
You can read it here, but basically you have to add a group <mailSettings>
under config \ system.net
Below is a simple yet simple example. Any smtp server can be used and as you can read in the link many security options can also be provided.
<system.net>
<mailSettings>
<smtp deliveryMethod="network" from="bonobo@bonoserver.your.domain">
<network
host="accessible.smtp.host"
port="25"
/>
</smtp>
</mailSettings>
</system.net>
Learn more about NE here .
+3
faester
source
to share