# list of regular expressions which we will view as being indicative
# of an attachment
-attachment_regexes = [ r'(?im)\battach(ed|ment|ing)?\b',
- r'(?im)\balleg(o|at[oaie]|ando)' ]
+attachment_regexes = [ r'\battach(ed|ment|ing)?\b',
+ r'\balleg(o|at[oaie]|ando)' ]
# ignore quoted text (which might refer to attachments in previous emails)
-attachment_regexes = [ r'(^|^[^\n>].*)' + x for x in attachment_regexes ]
+attachment_regexes = [ r'(?im)(^|^[^\n>].*)' + x for x in attachment_regexes ]
### No Edit Below This Line
###########################################