I'm trying to configure CC.NET to send email notifications. I have googled a lot about it and found examples also but by using those examples I'm not able to figure out where the actual problem is occuring.
Below is the block of code I'm using it in config file:
<publishers>
<statistics />
<xmllogger logDir="c:\TestCC\buildlogs" />
<email from="mehul.makwana@mycompany.com" mailhost="smtp.gmail.com" mailport="587" useSSL="TRUE" mailhostUsername="mehul.makwana@mycompany.com" includeDetails="TRUE" >
<users>
<user name="Radha" group="buildmaster" address="radha.k@mycompany.com" />
<user name="Mehul" group="developers" address="mehul.makwana@mycompany.com" />
</users>
<groups>
<group name="developers" notifications="always" />
<group name="buildmaster" notifications="always" />
</groups>
</email>
</publishers>
The above config is passing in CC.NET config validator. How to configure it from scratch? I also want to show error logs in the Dashboard if the build is failing. I'm using nant script for building files.