-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from mailgun/sergey/12
fixes #12
- Loading branch information
Showing
3 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -148,7 +148,9 @@ | |
re.compile("\d{4}-\d{2}-\d{2}\s+\d{2}:\d{2}\s+GMT.*@", re.S), | ||
# Thu, 26 Jun 2014 14:00:51 +0400 Bob <[email protected]>: | ||
re.compile('\S{3,10}, \d\d? \S{3,10} 20\d\d,? \d\d?:\d\d(:\d\d)?' | ||
'( \S+){3,6}@\S+:') | ||
'( \S+){3,6}@\S+:'), | ||
# Sent from Samsung MobileName <[email protected]> wrote: | ||
re.compile('Sent from Samsung .*@.*> wrote') | ||
] | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,19 @@ def test_pattern_on_date_somebody_wrote(): | |
eq_("Test reply", quotations.extract_from_plain(msg_body)) | ||
|
||
|
||
def test_pattern_sent_from_samsung_smb_wrote(): | ||
msg_body = """Test reply | ||
Sent from Samsung MobileName <[email protected]> wrote: | ||
> | ||
> Test | ||
> | ||
> Roman""" | ||
|
||
eq_("Test reply", quotations.extract_from_plain(msg_body)) | ||
|
||
|
||
def test_pattern_on_date_wrote_somebody(): | ||
eq_('Lorem', quotations.extract_from_plain( | ||
"""Lorem | ||
|