diff options
author | Erik Johnston <erik@matrix.org> | 2016-06-02 14:07:38 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-06-02 14:07:38 +0100 |
commit | 356f13c0696526032c211c103dad2f57d18473fa (patch) | |
tree | 8f29328009c0ad3c0d4fe526f6926a830b8957a0 /synapse/push | |
parent | Merge pull request #800 from matrix-org/erikj/sync_refactor (diff) | |
download | synapse-356f13c0696526032c211c103dad2f57d18473fa.tar.xz |
Disable INCLUDE_ALL_UNREAD_NOTIFS
Diffstat (limited to 'synapse/push')
-rw-r--r-- | synapse/push/emailpusher.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/push/emailpusher.py b/synapse/push/emailpusher.py index e38ed02006..2c21ed3088 100644 --- a/synapse/push/emailpusher.py +++ b/synapse/push/emailpusher.py @@ -44,7 +44,8 @@ THROTTLE_RESET_AFTER_MS = (12 * 60 * 60 * 1000) # does each email include all unread notifs, or just the ones which have happened # since the last mail? -INCLUDE_ALL_UNREAD_NOTIFS = True +# XXX: this is currently broken as it includes ones from parted rooms(!) +INCLUDE_ALL_UNREAD_NOTIFS = False class EmailPusher(object): |