summaryrefslogtreecommitdiff
path: root/alot/commands/envelope.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/commands/envelope.py')
-rw-r--r--alot/commands/envelope.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/alot/commands/envelope.py b/alot/commands/envelope.py
index cbff2808..535ce06c 100644
--- a/alot/commands/envelope.py
+++ b/alot/commands/envelope.py
@@ -416,12 +416,19 @@ class SetCommand(Command):
self.reset = not append
Command.__init__(self, **kwargs)
+ @inlineCallbacks
def apply(self, ui):
envelope = ui.current_buffer.envelope
if self.reset:
if self.key in envelope:
del envelope[self.key]
envelope.add(self.key, self.value)
+ # FIXME: handle BCC as well
+ # Currently we don't handle bcc because it creates a side channel leak,
+ # as the key of the person BCC'd will be available to other recievers,
+ # defeating the purpose of BCCing them
+ if self.key.lower() in ['to', 'from', 'cc']:
+ yield utils.set_encrypt(ui, ui.current_buffer.envelope)
ui.current_buffer.rebuild()
@@ -437,8 +444,15 @@ class UnsetCommand(Command):
self.key = key
Command.__init__(self, **kwargs)
+ @inlineCallbacks
def apply(self, ui):
del ui.current_buffer.envelope[self.key]
+ # FIXME: handle BCC as well
+ # Currently we don't handle bcc because it creates a side channel leak,
+ # as the key of the person BCC'd will be available to other recievers,
+ # defeating the purpose of BCCing them
+ if self.key.lower() in ['to', 'from', 'cc']:
+ yield utils.set_encrypt(ui, ui.current_buffer.envelope)
ui.current_buffer.rebuild()