procourse / discourse-mlm-daily-summary

GNU General Public License v2.0
4 stars 11 forks source link

No summary emails received #4

Open lpmagnuson opened 5 years ago

lpmagnuson commented 5 years ago

Hi, I've got an up-to-date version of this plugin installed on Discourse, and I've set my own profile to receive the summary emails ("Activity Summary" is unchecked; "Send Daily Email Summaries" is checked). However, no summaries are received by my account's email address. Can I get some tips on how to diagnose why the plugin isn't working? In my admin/update screen, I see that the plugin is up to date. Where would I find logging related to what this plugin does?

Thanks for making the plugin!

EtA: I've had the plugin installed and the settings set in my profile for over a week, so I don't think it's an issue of needing to wait for the plugin to send based on my account's sign-up hour.

user4223 commented 5 years ago

Hi, i'm absolutely not sure, but it could be the same issue as described here: https://meta.discourse.org/t/restore-mailing-list-mode-daily-summary/64761/25

You could check if the database field 'value' in table 'user_custom_fields' do contain 't' or 'true' to confirm if it is the same issue. See https://meta.discourse.org/t/restore-mailing-list-mode-daily-summary/64761/33

When it is the same issue and you do require a workaround, you could do something like this in your db as long as there is no fix: update user_custom_fields set value = 'true' where value = 't'; update user_custom_fields set value = 'false' where value = 'f';

Regards