I gotten a few emails asking how I to setup email notifications for builds running under
CruiseControl.NET. Here is a section from one of the ccnet.config files I’m using on a CruiseControl.NET server:
1 <publishers>
2 <statistics />
3 <xmllogger />
4
5 <email from="fromaddr@here.com" mailhost="192.168.1.14"
6 mailhostPassword="pwd" mailhostUsername="username"
7 includeDetails="true">
8 <users>
9 <user name="Steve Trefethen" address="stevet@nospam.com"
10 group="NotifyGroup" />
11 </users>
12 <groups>
13 <group name="NotifyGroup" notification="failed" />
14 </groups>
15 </email>
16 </publishers>
Nothing unusual except of course for changing some of the more obvious details. :-)