Проблема издателя электронной почты CruiseControl.NET

Я хочу настроить ccnet для:

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

С каждой новой версией CCNet издатель электронной почты подвергается рефакторингу (и предположительно улучшается), но у меня все еще остается та же проблема:only the committers get notified - if the build breaks, other developers don't get the email message, Так что либо я не получаю систему, либо в издателе электронной почты есть давно нефиксированная ошибка.

Я использую версию 1.4.4.83. Мой пример конфигурации (я удалил ненужные вещи):

<code><email 
    includeDetails="true">
    <users>
        <user name="user1" address="[email protected]" group="developers" /> 
        <user name="user2" address="[email protected]" group="developers" /> 
    </users>
    <groups>
            <group name="developers">
                <notifications>
                    <notificationType>Failed</notificationType>
                    <notificationType>Fixed</notificationType>
                </notifications>
            </group>
    </groups>
    <modifierNotificationTypes>
        <NotificationType>Always</NotificationType>
    </modifierNotificationTypes>
</email>            
</code>

Ответы на вопрос(3)

Ваш ответ на вопрос