diff options
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 138774b0..98333bd2 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. |