Hi All,
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 that examples also im not able to figure out where the actual problem is occuring. Below is the block of code im using it in config file,
<publishers>
<statistics />
<xmllogger logDir="c:\TestCC\buildlogs" />
<email from="[email protected]" mailhost="smtp.gmail.com" mailport="587" useSSL="TRUE" mailhostUsername="[email protected]" includeDetails="TRUE" >
<users>
<user name="Radha" group="buildmaster" address="[email protected]" />
<user name="Mehul" group="developers" address="[email protected]" />
</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. Can any one please help on this or suggest me 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
Mehul Makwana