clicking on email addr sends you to compose screen
[squirrelmail.git] / functions / url_parser.php
index 560c837d0363ae73abf0ab4471409281a03020ed..ff1df525dfc5f4c6d0213710d96fe3a8fc1079c7 100644 (file)
@@ -11,7 +11,7 @@
    }
 
    function parseEmail ($body) {
-      $body = eregi_replace ("([a-z]|[0-9]|_|\.)+\@([a-z]|[0-9]|_)+(.([a-z]|[0-9]|_)+)*", "<a href=\"mailto:\\0\">\\0</a>", $body);
+      $body = eregi_replace ("([a-z]|[0-9]|_|\.|-)+\@([a-z]|[0-9]|_)+(\.([a-z]|[0-9]|_)+)*", "<a href=\"../src/compose.php?send_to=\\0\">\\0</a>", $body);
       return $body;
    }