mirror of
https://github.com/shmilylty/OneForAll.git
synced 2026-08-26 04:47:48 +08:00
16 lines
702 B
JSON
16 lines
702 B
JSON
{
|
|
"name": "Email",
|
|
"author": "Andrew Horton",
|
|
"version": "0.6",
|
|
"description": "Extract email addresses. Find valid email address and syntactically invalid email addresses from mailto: link tags. We match syntactically invalid links containing mailto: to catch anti-spam email addresses, eg. bob at gmail.com. This uses the simplified email regular expression from http://www.regular-expressions.info/email.html for valid email address matching.",
|
|
"website": null,
|
|
"matches": [
|
|
{
|
|
"regexp": "(?i-mx:[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,4})"
|
|
},
|
|
{
|
|
"regexp": "(?i-mx:<[^>]+href=[^>]*mailto:([^\\'\\\"\\?>]+)[^>]*>)"
|
|
}
|
|
]
|
|
}
|