From 586d268c72f79c4fd4e06ca64e675168f08225ec Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Sat, 23 Jul 2005 13:50:38 +0000 Subject: [PATCH] do not detect abc@doremi.org: with : in it --- src/gajim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gajim.py b/src/gajim.py index 9c48b36ef..ac59f085f 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -806,7 +806,7 @@ class Interface: sre.IGNORECASE) # at least one character in 3 parts (before @, after @, after .) - self.sth_at_sth_dot_sth_re = sre.compile(r'\S+@\S+\.\S*[^\s)?]') + self.sth_at_sth_dot_sth_re = sre.compile(r'\S+@\S+\.\S*[^\s)?:]') def on_launch_browser_mailer(self, widget, url, kind): self.launch_browser_mailer(kind, url)