Hi
All the users I talk of below are users (user id's) from the source control,
so it does not have to be equal with a windows user id.
Suppose user 'John' makes a change, does he get a mail?
I suppose not, correct me if I am wrong. But user BuildGuru does get a mail.
This BuildGuru seems to be mapped to your email address
If this is the case, you will have to map the user id's to an email adress.
now there are different ways on doing this :
° specify all source control users in the user block
<user name="John" address="[email protected] <[email protected]>"/>
° you can use a converter element, so no need to define all the users in the
userblock
except for the buildmaster for example
for example a regexconverter
<converters>
<regexConverter find="$" replace="@TheCompany.com" />
</converters>
this will make for the source control user John the email address
[email protected]
or you can use an LDAP converter
this will ask an ldap service for the email address of user John
it is best that the windows login is equal to the source control login for
this,
or you must play with the LDAP-fields (not advised if you need to demo
today)
<converters>
<ldapConverter domainName="TheCompany" />
</converters>
check out the docs for more info :
http://confluence.public.thoughtworks.org/display/CCNET/Email+Publisher
keep the modifierNotificationTypes block !
with kind regards
Ruben Willems
On Wed, Feb 4, 2009 at 10:40 AM, sam <[email protected]> wrote:
>
> I dont get what you mean. I want to send an email about the broken
> builds to the list of users in the users block. Currently it is
> sending an email only on success build, no notification on broken
> builds.
>
> Regards
> Sam