summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--alot/db/utils.py5
-rw-r--r--tests/db/utils_test.py1
2 files changed, 0 insertions, 6 deletions
diff --git a/alot/db/utils.py b/alot/db/utils.py
index 994e85b2..8f71f20a 100644
--- a/alot/db/utils.py
+++ b/alot/db/utils.py
@@ -203,11 +203,6 @@ def message_from_file(handle):
for k in (X_SIGNATURE_VALID_HEADER,
X_SIGNATURE_MESSAGE_HEADER):
m[k] = n[k]
- else:
- # an encrypted message without signatures
- # should arouse some suspicion, better warn
- # the user
- add_signature_headers(m, [], 'no signature found')
else:
# 'Combined method', the signatures are returned
# by the decrypt_verify function.
diff --git a/tests/db/utils_test.py b/tests/db/utils_test.py
index 7c95f27d..b18bbd82 100644
--- a/tests/db/utils_test.py
+++ b/tests/db/utils_test.py
@@ -554,7 +554,6 @@ class TestMessageFromFile(TestCaseClassCleanup):
# existence.
self.assertIn('This is some text', [n.get_payload() for n in m.walk()])
- @unittest.expectedFailure
def test_encrypted_unsigned_doesnt_add_signed_headers(self):
"""Since the message isn't signed, it shouldn't have headers saying
that there is a signature.