diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-05-24 14:22:26 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-05-24 14:59:50 +0200 |
commit | 37b25fd88400df8cc726470b5d897111f2373b96 (patch) | |
tree | 1c76ce8afe0d788d137229f46e3b99bbed982a5f /src/leap/bitmask/mua | |
parent | 0bba2d84a584396e888d1f4cd0d0011f5137ab8b (diff) |
[refactor] simplify wrapper create and add_msg
- remove premature optimization for fast-notifies. blobs will cover
that, no point in maintaning the optimization at the price of creeping
complexity.
Diffstat (limited to 'src/leap/bitmask/mua')
-rw-r--r-- | src/leap/bitmask/mua/pixelizer.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/leap/bitmask/mua/pixelizer.py b/src/leap/bitmask/mua/pixelizer.py index 138774b..98333bd 100644 --- a/src/leap/bitmask/mua/pixelizer.py +++ b/src/leap/bitmask/mua/pixelizer.py @@ -78,8 +78,7 @@ try: flags = ['\\Recent'] if mailbox_name.lower() == 'sent': flags += '\\Seen' - message = yield mailbox.add_msg( - raw_msg, tuple(flags), notify_just_mdoc=False) + message = yield mailbox.add_msg(raw_msg, tuple(flags)) # this still needs the pixelated interface because it does stuff # like indexing the mail in whoosh, etc. |