aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorRodney Dawes <dobey@novell.com>2004-06-18 05:29:54 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-06-18 05:29:54 +0800
commitb5c3d6571fd0354a36984f85aa159f377d3f8c74 (patch)
treefd212953447520339810a741e344a1b64e74ece4 /camel
parent1a662e1588642f53d7dd3ad47551e75a1b1f5772 (diff)
downloadgsoc2013-evolution-b5c3d6571fd0354a36984f85aa159f377d3f8c74.tar
gsoc2013-evolution-b5c3d6571fd0354a36984f85aa159f377d3f8c74.tar.gz
gsoc2013-evolution-b5c3d6571fd0354a36984f85aa159f377d3f8c74.tar.bz2
gsoc2013-evolution-b5c3d6571fd0354a36984f85aa159f377d3f8c74.tar.lz
gsoc2013-evolution-b5c3d6571fd0354a36984f85aa159f377d3f8c74.tar.xz
gsoc2013-evolution-b5c3d6571fd0354a36984f85aa159f377d3f8c74.tar.zst
gsoc2013-evolution-b5c3d6571fd0354a36984f85aa159f377d3f8c74.zip
Add support for the webcal, callto, and h323 URIs when we get them in
2004-06-17 Rodney Dawes <dobey@novell.com> * camel-mime-filter-tohtml.c: Add support for the webcal, callto, and h323 URIs when we get them in mails svn path=/trunk/; revision=26401
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/camel-mime-filter-tohtml.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index d8e8f92b07..fcd2738376 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+2004-06-17 Rodney Dawes <dobey@novell.com>
+
+ * camel-mime-filter-tohtml.c: Add support for the webcal, callto, and
+ h323 URIs when we get them in mails
+
2004-06-17 Jeffrey Stedfast <fejj@novell.com>
* camel-mime-filter-tohtml.c: Don't foolishly unmunge From_
diff --git a/camel/camel-mime-filter-tohtml.c b/camel/camel-mime-filter-tohtml.c
index b2e61e6b26..522c6062cd 100644
--- a/camel/camel-mime-filter-tohtml.c
+++ b/camel/camel-mime-filter-tohtml.c
@@ -58,6 +58,9 @@ static struct {
{ CONVERT_WEB_URLS, { "news://", "", camel_url_web_start, camel_url_web_end } },
{ CONVERT_WEB_URLS, { "nntp://", "", camel_url_web_start, camel_url_web_end } },
{ CONVERT_WEB_URLS, { "telnet://", "", camel_url_web_start, camel_url_web_end } },
+ { CONVERT_WEB_URLS, { "webcal://", "", camel_url_web_start, camel_url_web_end } },
+ { CONVERT_WEB_URLS, { "callto://", "", camel_url_web_start, camel_url_web_end } },
+ { CONVERT_WEB_URLS, { "h323://", "", camel_url_web_start, camel_url_web_end } },
{ CONVERT_WEB_URLS, { "www.", "http://", camel_url_web_start, camel_url_web_end } },
{ CONVERT_WEB_URLS, { "ftp.", "ftp://", camel_url_web_start, camel_url_web_end } },
{ CONVERT_ADDRSPEC, { "@", "mailto:", camel_url_addrspec_start, camel_url_addrspec_end } },