summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--alot/crypto.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/alot/crypto.py b/alot/crypto.py
index c73d792c..3c748162 100644
--- a/alot/crypto.py
+++ b/alot/crypto.py
@@ -176,7 +176,8 @@ def encrypt(plaintext_str, keys=None):
:rtype: str
"""
ctx = gpg.core.Context(armor=True)
- out = ctx.encrypt(plaintext_str, recipients=keys, always_trust=True)[0]
+ out = ctx.encrypt(plaintext_str, recipients=keys, sign=False,
+ always_trust=True)[0]
return out