aboutsummaryrefslogtreecommitdiff
path: root/app/shares.php
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2022-11-14 14:54:57 +0100
committerGravatar GitHub <noreply@github.com> 2022-11-14 14:54:57 +0100
commit1f86aae415951b3a5c83d092765fa92337fc29ee (patch)
treeb610bdcd18bffefead261ff6e2bda09d608a7e1d /app/shares.php
parent37cc854d1275b28fca8104477fa1e6558e6516ba (diff)
fix: sharing service for mailto links for web mail services (#4680)
* fix * Update main.js * Update app/i18n/fr/gen.php Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'app/shares.php')
-rw-r--r--app/shares.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/shares.php b/app/shares.php
index 8685dba5d..490f97ab5 100644
--- a/app/shares.php
+++ b/app/shares.php
@@ -61,6 +61,12 @@ return array(
'form' => 'simple',
'method' => 'GET',
),
+ 'email-webmail-firefox-fix' => array( // see https://github.com/FreshRSS/FreshRSS/issues/2666
+ 'url' => 'mailto:?subject=~TITLE~&amp;body=~LINK~',
+ 'transform' => array('rawurlencode'),
+ 'form' => 'simple',
+ 'method' => 'GET',
+ ),
'facebook' => array(
'url' => 'https://www.facebook.com/sharer.php?u=~LINK~&amp;t=~TITLE~',
'transform' => array('rawurlencode'),