mailstrip is a Go library that parses email text and strips it of signatures and reply quotes. It is a port of email_reply_parser, GitHub's library for parsing email replies.
Most of mailstrip is a line-by-line port of email_reply_parser and it passes all tests from the email_reply_parser test suite. However, it also implements a few improvements that are not part of email_reply_parser:
- Forwarded fragments are detected and considered to be visible text, see d321c1.
- Replies from Yahoo! which lack ">" quote indicators are handled correctly, see e844d.
- Alternative quote headers used by gmail are handled correctly, see 7ecb6
- Replies from Google inbox / gmail that has a quoute header in swedish(and possibly other languages) are handled. See 4128d.
The API documentation can be found here: http://godoc.org/github.com/kvannotten/mailstrip
MIT License. See LICENSE file.