Compare commits

..

10 Commits

Author SHA1 Message Date
Steven Sullivan
4f84f7c31c
Merge pull request #9 from alichampi/master
Added Spanish localization
2024-04-17 07:47:16 -05:00
alichampi
0da7ce2a12 Added Spanish localization 2024-04-17 03:08:36 +02:00
Steven Sullivan
39483b56ef
Remove RC repo 2024-01-26 18:16:32 -05:00
Steven Sullivan
3970c082f6
Improve error handling 2024-01-21 12:15:09 -05:00
Steven Sullivan
6154d87a89
For 2023 2023-11-29 12:44:05 -05:00
Steven Sullivan
f783ff59ec
Updated 2023
Works in newer RC.
2023-11-29 12:41:51 -05:00
Steven Sullivan
3a10b296f3
Update README.md 2023-11-29 12:10:30 -05:00
Steven Sullivan
e50726b58a
Updated 2023-11-29 12:08:46 -05:00
Steven Sullivan
c3ae9edb7c
Merge pull request #4 from filinovs/master
added Russian localization
2023-11-29 12:05:13 -05:00
Sergei Filinov
9a72724a02 added Russian localization 2021-07-12 18:01:36 +07:00
6 changed files with 107 additions and 57 deletions

@ -1,4 +1,22 @@
# Roundcube Easy Unsubscribe # Roundcube Easy Unsubscribe
Displays a small icon after the subject line when viewing an email, so you can very quickly unsubscribe. Displays a small icon after the subject line when viewing an email, so you can very quickly unsubscribe. Multiple icons may show as the plugin is reliant upon the `List-Unsubscribe` header. Sometimes emails use multiple i.e. one mailto: and one URL.
![Image](https://i.imgur.com/pecWMhe.jpg)
## Demo Visual
![Demo SS](https://i.ibb.co/58B3P57/Screenshot-2023-11-29-at-12-42-46-PM.png)
## Deployment
Download a copy of this repo and upload the contents to:
```
/path/to/roundcube/plugins/easy_unsubscribe
```
Edit your `/path/to/roundcube/config/config.inc.php` file and add `easy_unsubscribe` to the `$config['plugins']` variable. It should look something like the following:
```
$config['plugins'] = array(
'password',
'easy_unsubscribe'
);
```

@ -5,12 +5,6 @@
"license": "GPL-3.0+", "license": "GPL-3.0+",
"keywords": ["unsubscribe","subscription", "newsletter", "mailer"], "keywords": ["unsubscribe","subscription", "newsletter", "mailer"],
"homepage": "https://github.com/SS88UK/roundcube-easy-unsubscribe", "homepage": "https://github.com/SS88UK/roundcube-easy-unsubscribe",
"repositories": [
{
"type": "composer",
"url": "https://plugins.roundcube.net"
}
],
"require": { "require": {
"roundcube/plugin-installer": ">=0.1.6" "roundcube/plugin-installer": ">=0.1.6"
} }

9
easy_unsubscribe.js Normal file

@ -0,0 +1,9 @@
function easy_unsubscribe_click(link) {
if(confirm(rcmail.get_label('confirm', 'easy_unsubscribe'))) {
if(link.dataset.href) window.open(link.dataset.href, '_blank');
}
}

@ -1,12 +1,13 @@
<?php <?php
class easy_unsubscribe extends rcube_plugin class easy_unsubscribe extends rcube_plugin {
{
public $task = 'mail';
private $message_headers_done = false; private $message_headers_done = false;
private $unsubscribe_img; private $unsubscribe_img;
function init() function init() {
{
$rcmail = rcmail::get_instance(); $rcmail = rcmail::get_instance();
$layout = $rcmail->config->get('layout'); $layout = $rcmail->config->get('layout');
@ -14,36 +15,50 @@ class easy_unsubscribe extends rcube_plugin
$this->add_hook('storage_init', array($this, 'storage_init')); $this->add_hook('storage_init', array($this, 'storage_init'));
$this->include_stylesheet('easy_unsubscribe.css'); $this->include_stylesheet('easy_unsubscribe.css');
$this->include_script('easy_unsubscribe.js');
$this->add_texts('localization/'); $this->add_texts('localization/');
$rcmail->output->add_label('easy_unsubscribe.confirm');
} }
public function storage_init($p) public function storage_init($p) {
{
$p['fetch_headers'] = trim($p['fetch_headers'] . ' ' . strtoupper('List-Unsubscribe')); $p['fetch_headers'] = trim($p['fetch_headers'] . ' ' . strtoupper('List-Unsubscribe'));
return $p; return $p;
} }
public function message_headers($p) public function message_headers($p) {
{
if($this->message_headers_done===false) if($this->message_headers_done===false) {
{
$this->message_headers_done = true; $this->message_headers_done = true;
if(!isset($p['headers']->others['list-unsubscribe'])) return $p;
$ListUnsubscribe = $p['headers']->others['list-unsubscribe']; $ListUnsubscribe = $p['headers']->others['list-unsubscribe'];
if ( preg_match_all('/<(.+)>/mU', $ListUnsubscribe, $items, PREG_PATTERN_ORDER) ) {
foreach ( $items[1] as $uri ) { if (preg_match_all('/<(.+)>/mU', $ListUnsubscribe, $items, PREG_PATTERN_ORDER)) {
$this->unsubscribe_img .= '<a class="easy_unsubscribe_link tooltip-right" data-tooltip="' . $this->gettext('click_to_unsubscribe') . '" href="'. htmlentities($uri) .'" target="_blank" onclick="return confirm(\'' . $this->gettext('confirm') . '\');"><img src="plugins/easy_unsubscribe/icon.png" alt="' . $this->gettext('unsubscribe') . '" /></a>';
} foreach ( $items[1] as $uri ) {
}
$this->unsubscribe_img .= '<a class="easy_unsubscribe_link tooltip-right" data-tooltip="' . $this->gettext('click_to_unsubscribe') . '" data-href="'. htmlentities($uri) .'" target="_blank" onclick="easy_unsubscribe_click(this);"><img src="plugins/easy_unsubscribe/icon.png" alt="' . $this->gettext('unsubscribe') . '" /></a>';
}
}
} }
if(isset($p['output']['subject'])) if(isset($p['output']['subject'])) {
{
$p['output']['subject']['value'] = $p['output']['subject']['value'] . $this->unsubscribe_img; $p['output']['subject']['value'] = $p['output']['subject']['value'] . $this->unsubscribe_img;
$p['output']['subject']['html'] = 1; $p['output']['subject']['html'] = 1;
} }
return $p; return $p;
} }
} }

7
localization/es_ES.inc Normal file

@ -0,0 +1,7 @@
<?php
$labels = array();
$labels['click_to_unsubscribe'] = "Haz click para anular la suscripción";
$labels['confirm'] = "¿Estás seguro de que deseas anular la suscripción?";
$labels['unsubscribe'] = "Anular suscripción";

7
localization/ru_RU.inc Normal file

@ -0,0 +1,7 @@
<?php
$labels = array();
$labels['click_to_unsubscribe'] = "Нажмите, чтобы отписаться";
$labels['confirm'] = "Вы уверены, что хотите отказаться от подписки?";
$labels['unsubscribe'] = "Отписаться";