diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-02-17 15:18:37 +0300 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-02-17 15:18:37 +0300 |
commit | a5899a828367d0ff16534771c561e44ae7af632d (patch) | |
tree | bb1a051c7023664db90fcec9f8ea3de918d6690f /src/url.c | |
parent | 0c53751a9afce121ec5da230d942e722b6f8f460 (diff) | |
download | rspamd-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) { |