summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Expand)Author
2019-11-27Impl DerefMut on the MailAddrList as wellKartikaya Gupta
2019-11-27Expose MailAddrList as wellKartikaya Gupta
2019-11-27Implement the Display trait on addrparse result types. Fixes #46Kartikaya Gupta
2019-11-10Add Clone implementation to addr typesKartikaya Gupta
2019-11-10Add documentationKartikaya Gupta
2019-11-09Add the addrparse module, to help parse address/mailbox listsKartikaya Gupta
2019-11-09Fix compiler warningKartikaya Gupta
2019-08-05Prevent possible underflowKartikaya Gupta
2019-07-31Skip past unterminated =? escape stringKartikaya Gupta
2019-06-04Allow access to encoded bodyufoscout
2019-06-04Run rustfmt and add it to travis checksKartikaya Gupta
2019-05-23Stop using deprecated trim_left/rightKartikaya Gupta
2019-05-23Test UTF-7 in bodyHenri Sivonen
2019-05-23Test UTF-7 in headersHenri Sivonen
2019-05-23Test ISO-2022-JP in headersHenri Sivonen
2019-05-23Use the charset crate instead of the encoding crateHenri Sivonen
2019-02-10Fix panic when encountering param content with new lineLewis Diamond
2018-09-12Implement MailHeaderMap for [MailHeader] instead of Vec<MailHeader>Jos van den Oever
2018-09-12key.len() > 0 -> !key.is_empty()Jos van den Oever
2018-09-07Prefer map_err(|e| e.into()) over explicit errorThomas Hurst
2018-09-07Replace try_none! with ?Thomas Hurst
2018-09-07Tidy get_body_raw()Thomas Hurst
2018-09-07Tidy get_body_raw() with is_ascii_whitespace()Thomas Hurst
2018-09-07Tidy parse_param_contentThomas Hurst
2018-09-07Convert try! to ?Thomas Hurst
2018-09-07Tidy is_boundary()Thomas Hurst
2018-09-07Tidy MailHeader::get_keyThomas Hurst
2018-09-05Use i64::from(x) over x as i64Thomas Hurst
2018-09-05Use if let Ok() over single-armed match { .. }Thomas Hurst
2018-09-05Use while let Some(..) over loop { match { .. }}Thomas Hurst
2018-09-05map(|x| Some(x)) -> map(Some)Thomas Hurst
2018-09-05Use foo[] instead of .get().unwrap()Thomas Hurst
2018-09-05Use unwrap_or_else() and unwrap_or_default()Thomas Hurst
2018-09-05Use Struct { foo } over Struct { foo: foo }Thomas Hurst
2018-09-05Use a char rather than a &str for single-char find()Thomas Hurst
2018-09-05Use foo += bar over foo = foo + barThomas Hurst
2018-09-04Fix #26: Incorrect unwrap() guard in is_boundary()Thomas Hurst
2018-05-23Fix indentationKartikaya Gupta
2018-05-23parse_mail: Handle missing terminating boundaries in multipart emails.Darius Jahandarie
2018-04-18MailHeader::get_value: do not add space if special char parsedRomain Porte
2018-04-03Update quoted_printable and base64 dependenciesKartikaya Gupta
2017-10-14Add missing function docKartikaya 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
2016-12-26rustfmtKartikaya Gupta
2016-12-26add `get_body_raw`Wu Young
2016-12-23add name field to ParsedContentTypeWu Young