You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lib/DigestSender.php is fetching users via $this->config->getUsersForUserValue('activity', 'notify_setting_activity_digest', '1');. This does not exclude disabled users on either side. Is this an oversight, or is the assumption that notify_setting_activity_digest should be disabled for disabled users?
(this is with Nextcloud 27.1.4, Activity 2.19.0)
The text was updated successfully, but these errors were encountered:
raboof
changed the title
Digests are sent even for disabled users
Digests recipient selection
Sep 4, 2024
// User is disabled so do not send the email but update last sent since after enabling avoid flooding
$this->updateLastSentForUser($userObject, $now);
continue;
But just noticed that someone else (Hi @yemkareems!) happens to have fixed this (via #1803) shortly after your original report so that's where that code comes from. :)
lib/DigestSender.php
is fetching users via$this->config->getUsersForUserValue('activity', 'notify_setting_activity_digest', '1');
. This does not exclude disabled users on either side. Is this an oversight, or is the assumption thatnotify_setting_activity_digest
should be disabled for disabled users?(this is with Nextcloud 27.1.4, Activity 2.19.0)
The text was updated successfully, but these errors were encountered: