summaryrefslogtreecommitdiff
path: root/alot/db/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/db/utils.py')
-rw-r--r--alot/db/utils.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/alot/db/utils.py b/alot/db/utils.py
index 9449f989..6861b39e 100644
--- a/alot/db/utils.py
+++ b/alot/db/utils.py
@@ -91,7 +91,11 @@ def message_from_file(handle):
malformed = 'expected Content-Type: {0}, got: {1}'.format(
want, ct)
- p = {k:v for k, v in m.get_params()}
+ # Get Content-Type parameters as dict. RFC 2045 specifies that
+ # parameter names are case-insensitive, so we normalize them
+ # here.
+ p = {k.lower():v for k, v in m.get_params()}
+
if p.get('protocol', 'nothing') != want:
malformed = 'expected protocol={0}, got: {1}'.format(
want, p.get('protocol', 'nothing'))