Hi Jeff,
You cannot change this behavior with a configuration setting but you can try
the following.
At line 103 in the file app/models/notifier.rb there is the following line
of code:
@body['wikis'] = @body['wikis'].uniq
If you add the following line above this line the behaviour will change and
only the administrator will receive an email
@bcc = User.find_central_admin.email if items == []
you can also try
@bcc = nil if items == []
but I'm not sure that this will work as this will try to send an email
without any to or bcc address.

After you make these changes you have to restart the web server of course.

I haven't had time to test this enhancement but I'm pretty sure this will
work.
Best Regards,
Onno




On Mon, Apr 4, 2011 at 8:23 PM, Jeffrey Isaacs <[email protected]>wrote:

>
> Is it possible to restrict the emails from the EPF wiki if there is no
> content to report?
>
> Thanks,
>
> Jeff
>
> Please consider the environment before printing this email.
>
> This message should be regarded as confidential. If you have received this 
> email in error please notify the sender and destroy it immediately.
> Statements of intent shall only become binding when confirmed in hard copy by 
> an authorised signatory.  The contents of this email may relate to dealings 
> with other companies within the Detica Limited group of companies.
>
> Detica Limited is registered in England under No: 1337451.
>
> Registered offices: Surrey Research Park, Guildford, Surrey, GU2 7YP, England.
>
>
>
> _______________________________________________
> epf-dev mailing list
> [email protected]
> https://dev.eclipse.org/mailman/listinfo/epf-dev
>
>
_______________________________________________
epf-dev mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/epf-dev

Reply via email to