aboutsummaryrefslogtreecommitdiffstats
path: root/src/url.c
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2011-02-17 15:18:37 +0300
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2011-02-17 15:18:37 +0300
commita5899a828367d0ff16534771c561e44ae7af632d (patch)
treebb1a051c7023664db90fcec9f8ea3de918d6690f /src/url.c
parent0c53751a9afce121ec5da230d942e722b6f8f460 (diff)
downloadrspamd-a5899a828367d0ff16534771c561e44ae7af632d.tar.gz
rspamd-a5899a828367d0ff16534771c561e44ae7af632d.zip
Fix parsing emails with '_' symbol.
Fix adding metric symbol.
Diffstat (limited to 'src/url.c')
-rw-r--r--src/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/url.c b/src/url.c
index 3db6b05b6..de916188f 100644
--- a/src/url.c
+++ b/src/url.c
@@ -1117,7 +1117,7 @@ url_email_start (const gchar *begin, const gchar *end, const gchar *pos, url_mat
if (pos > begin && *pos == '@') {
/* Try to extract it with username */
p = pos - 1;
- while (p > begin && (is_domain (*p) || *p == '.')) {
+ while (p > begin && (is_domain (*p) || *p == '.' || *p == '_')) {
p --;
}
if (!is_domain (*p)) {