summaryrefslogtreecommitdiff
path: root/alot/mail/headers.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/mail/headers.py')
-rw-r--r--alot/mail/headers.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/alot/mail/headers.py b/alot/mail/headers.py
new file mode 100644
index 00000000..de301b99
--- /dev/null
+++ b/alot/mail/headers.py
@@ -0,0 +1,18 @@
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
+
+FROM = 'From'
+TO = 'To'
+CC = 'Cc'
+BCC = 'Bcc'
+REPLY_TO = 'Reply-To'
+MAIL_REPLY_TO = 'Mail-Reply-To'
+MAIL_FOLLOWUP_TO = 'Mail-Followup-To'
+
+SUBJECT = 'Subject'
+
+IN_REPLY_TO = 'In-Reply-To'
+REFERENCES = 'references'
+
+X_BEEN_THERE = 'X-Been-There'
+X_MAILING_LIST = 'X-Mailing-List'