Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.0-beta-1
-
Fix Version/s: 1.0
-
Component/s: None
-
Labels:None
-
Complexity:Intermediate
-
Number of attachments :
Description
I record two email notifiers on the same project with differents recipients.
The email is sending twice time with the differents recipients.
I am experiencing this as well. When I have the following in my pom I get five emails each address to all five recipients. I am going to set up a single mailing list and refer to this one address in the pom (which is a better approach anyway) but this still seems like an issue that should be fixed anyway.
<ciManagement>
<system>continuum</system>
<notifiers>
<notifier>
<type>mail</type>
<configuration>
<address>jdoe1@nowhere.com</address>
</configuration>
</notifier>
<notifier>
<type>mail</type>
<configuration>
<address>jdoe2@nowhere.com</address>
</configuration>
</notifier>
<notifier>
<type>mail</type>
<configuration>
<address>jdoe3@nowhere.com</address>
</configuration>
</notifier>
<notifier>
<type>mail</type>
<configuration>
<address>jdoe4@nowhere.com</address>
</configuration>
</notifier>
<notifier>
<type>mail</type>
<configuration>
<address>jdoe5@nowhere.com</address>
</configuration>
</notifier>
</notifiers>
</ciManagement>