aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--embed/ephy-embed-utils.c1
-rw-r--r--src/ephy-window.c8
2 files changed, 9 insertions, 0 deletions
diff --git a/embed/ephy-embed-utils.c b/embed/ephy-embed-utils.c
index d937d2e4b..eb7c434c2 100644
--- a/embed/ephy-embed-utils.c
+++ b/embed/ephy-embed-utils.c
@@ -92,6 +92,7 @@ ephy_embed_utils_address_has_web_scheme (const char *address)
g_str_has_prefix (address, "data:") ||
g_str_has_prefix (address, "about:") ||
g_str_has_prefix (address, "javascript:") ||
+ g_str_has_prefix (address, "mailto:") ||
g_str_has_prefix (address, "gopher:"));
return has_web_scheme;
diff --git a/src/ephy-window.c b/src/ephy-window.c
index 59a06c72d..61cc17c8c 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -2529,10 +2529,18 @@ policy_decision_required_cb (WebKitWebView *web_view,
WebKitWebNavigationReason reason;
gint button;
gint state;
+ const char *uri;
reason = webkit_web_navigation_action_get_reason (action);
button = webkit_web_navigation_action_get_button (action);
state = webkit_web_navigation_action_get_modifier_state (action);
+ uri = webkit_network_request_get_uri (request);
+
+ if (g_str_has_prefix (uri, "mailto:")) {
+ webkit_web_policy_decision_ignore (decision);
+ gtk_show_uri (NULL, uri, GDK_CURRENT_TIME, NULL);
+ return TRUE;
+ }
/* Open in new tab for middle click or ctrl+click */
if (reason == WEBKIT_WEB_NAVIGATION_REASON_LINK_CLICKED &&