vote up 1 vote down star

I want to set up ccnet to:

  1. Send mail to committers after each build (regardless of the status)
  2. Send mail to all other developers when the build breaks or is fixed

With every new version of CCNet the email publisher gets refactored (and supposedly improved), but I still have the same problem: only the committers get notified - if the build breaks, other developers don't get the email message. So either I don't get the system, or there is a long-unfixed bug in the email publisher.

I'm using the v1.4.4.83. My example configuration (I removed the irrelevant stuff):

<email 
    includeDetails="true">
    <users>
    	<user name="user1" address="user1@mail.com" group="developers" /> 
    	<user name="user2" address="user2@mail.com" group="developers" /> 
    </users>
    <groups>
    		<group name="developers">
    			<notifications>
    				<notificationType>Failed</notificationType>
    				<notificationType>Fixed</notificationType>
    			</notifications>
    		</group>
    </groups>
    <modifierNotificationTypes>
    	<NotificationType>Always</NotificationType>
    </modifierNotificationTypes>
</email>
flag

76% accept rate
This looks like a feature no one before needed, could you please post it to jira.public.thoughtworks.org/browse/CCNET ? – skolima Jun 24 at 8:25
The funny thing is - this was actually possible in previous versions of CCNet (1.3 from what I remember). – Igor Brejc Jun 24 at 9:42

1 Answer

vote up 0 vote down
<email from="CruiseControlBuild@xxxxxxxx.com" mailhost="xxxxxxxx.com" includeDetails="True">
			<users>
				<user name="Dev Staff" group="group1" address="xxxxxxxxxxx"/>
				<user name="QA Staff" group="group1" address="xxxxxxxxxxx"/>
			</users>
			<groups>
				<group name="group1" notification="always"/>
			</groups>
			<modifierNotificationTypes>
				<NotificationType>Always</NotificationType>
			</modifierNotificationTypes>
		</email>

This works, but be careful. Sending every developer an email for every build in a continuous system is begging to have your emails ignored. The only email I send to everyone is the nightly installer build.

link|flag
1  
Alex, I DON'T want to send an email for EVERY build to EVERY developer. I think I made that clear at the beginning of the question (see 1. and 2.). – Igor Brejc Jun 23 at 18:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.