When someone adds a picture all administrators are notified by e-mail, how can I turn it off? Or specify only one address to send those notifications?
Offline
you're using the community plugin true ?
Offline
I guess flop25 is right, "user upload" is specific to [extension by plg] Community.
There is currently no way to configure who is notified: all users with status admin/webmaster are notified.
Offline
So if I wouldn't use community plugin than admins wouldn't be notified?
Offline
T00kie wrote:
So if I wouldn't use community plugin than admins wouldn't be notified?
If you don't activate Community you don't have the user upload feature.
Offline
ahem... if you turn off user upload, then you won't have any other user upload notification. Does it answer your question?
Offline
lol right :D But hey.. the problem is that even if one of admins uploads a picture than rest of them is notified ;/
Again.. it's probably about changing a variable into fixed one.. I'll look for it.
Offline
T00kie wrote:
lol right :D But hey.. the problem is that even if one of admins uploads a picture than rest of them is notified ;/.
Does the admin uploads the photo from the user upload form or from the upload form in the administration?
Offline
Hi,
I have the same problem. I am using the community plugin and users upload from the user upload form but have several administrators and do not want them all notified every time someone uploads an image. Is there any way I can change this so only the webmaster receives these notifications or disable them entirely?
Thanks
Bridget
Last edited by bmastino (2013-01-29 15:28:28)
Offline
*bump* Can anyone help me with this?
Offline
I have exactly the same problem - for our history society we have five volunteer admins to handle the management of albums. One added a series of photos today and all five received scores of emails.
There must be an easy way to turn off email notification - flooding people with unnecessary mail is a big turn off.
Offline
Is there still no easy answer to this? Everything else is great but the email notifications are driving us all crazy! There must be an easy way to turn it off in the code somewhere? Anyone?
Offline
*bump* Can anyone help me with this?
Offline
There isn't a configuration parameter to do this. But you can do what I did and comment out the notification lines in the file plugins/community/add_photos.php;
/* pwg_mail_notification_admins(
get_l10n_args('%d photos uploaded by %s', array(count($image_ids), $user['username'])),
$keyargs_content,
false
); */
the /* and */ are php comment indicators. This is at line 592. Be careful to get the comment markers in the right place.