summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2018-04-03Bump to version 0.6.1Kartikaya Gupta
2018-04-03Update quoted_printable and base64 dependenciesKartikaya Gupta
2017-12-22Add maintenance badgeKartikaya Gupta
2017-10-14Add missing function docKartikaya Gupta
2017-10-14Regenerate documentation for 0.6.0Kartikaya Gupta
2017-10-14Bump to version 0.6.0Kartikaya Gupta
2017-10-14Don't expose the function to convert disposition typeKartikaya Gupta
2017-10-14Update documentation and doc-tests for new content-disposition changesKartikaya Gupta
2017-10-12rustfmtYoung Wu
2017-10-12Store all params of Content-Type into BTreeMap<String, String>Young Wu
2017-10-12Add Content-Disposition to mailYoung Wu
2017-10-06Update docsKartikaya Gupta
2017-07-18Add gitattributes for github linguistKartikaya Gupta
2017-01-26Minor updates to metadata in Cargo.tomlKartikaya Gupta
2016-12-26Fix documentation betterKartikaya Gupta
2016-12-26Version bumpKartikaya Gupta
2016-12-26Update documentationKartikaya Gupta
2016-12-26rustfmtKartikaya Gupta
2016-12-26add `get_body_raw`Wu Young
2016-12-23add name field to ParsedContentTypeWu Young
2016-12-04Version bump to 0.4.2Kartikaya Gupta
2016-12-04Update documentationKartikaya Gupta
2016-12-04Followup to 9f8013c2 (fix for issue #7) - deal with empty messagesKartikaya Gupta
2016-12-04Version bump to 0.4.1Kartikaya Gupta
2016-12-04Update documentationKartikaya Gupta
2016-12-04Fix for issue #7 - deal with lack of headersKartikaya Gupta
2016-12-04Less allocation by using case insensitive string comparisonJos van den Oever
2016-12-04Rename test and check for body as wellKartikaya Gupta
2016-12-03Fix panic when the mail body is missingJos van den Oever
2016-11-11Version bumpKartikaya Gupta
2016-11-11Update documentationKartikaya Gupta
2016-11-11Drop the redundant get_*_ci methods from MailHeaderMapBruce Guenter
2016-11-11Make MailHeaderMap perform case-insensitive searchesBruce Guenter
The trait MailHeaderMap has two methods for searching headers, normal and case-insensitive. This documentation says: > According to the spec the mail headers are supposed to be > case-sensitive, but in real-world scenarios that's not always the > case. Actually, the spec says nothing that headers supposed to case-sensitive, and historical precedent is to be case-insensitive. Certainly, all the mail processing software I am familiar with (Thunderbird, qmail, ezmlm, and mutt) treat headers as case insensitive. RFC 822 section 3.4.7 says: > When matching any other syntactic unit, case is to be ignored. For > example, the field-names "From", "FROM", "from", and even "FroM" are > semantically equal and should all be treated identically. While RFC 2822 did drop that section (and RFC 5322 didn't restore it), others interpret other parts to indicate case insensitivity. https://stackoverflow.com/a/6143644 > RFC 5322 does actually specify this, but it is very indirect. https://www.gnu.org/software/emacs/manual/html_node/emacs/Mail-Headers.html > Upper and lower case are equivalent in field names. https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi.processors.email.ExtractEmailHeaders/index.html > NOTE the header key is case insensitive This change makes all header searches case insensitive.
2016-10-02Version bumpKartikaya Gupta
2016-10-02Update docKartikaya Gupta
2016-10-02rustfmtKartikaya Gupta
2016-10-02Update main examples to include a dateparse usageKartikaya Gupta
2016-10-02Add dateparse documentationKartikaya Gupta
2016-10-02Add list of textual timezones from RFC 822Kartikaya Gupta
2016-10-02Expose the dateparse module from mailparseKartikaya Gupta
2016-10-02Fix dateparse to not overflow on larger timezonesKartikaya Gupta
2016-09-27Update dateparse to convert to epoch timestampsKartikaya Gupta
2016-09-25Add initial dateparse codeKartikaya Gupta
2016-09-02Disable travis email notificationsKartikaya Gupta
2016-09-02Add travis conf and crates.io badgeKartikaya Gupta
2016-06-22Reduce number of keywords to max of 5Kartikaya Gupta
2016-06-22Update documentationKartikaya Gupta
2016-06-22Add case-insensitive accessors for headersKartikaya Gupta
2016-06-22Handle case where an encoded-word has trailing whitespace inside the encodingKartikaya Gupta
2016-06-22Recognize encoded words in more placesKartikaya Gupta