roundcube-easy-unsubscribe/README.md

23 lines
748 B
Markdown
Raw Normal View History

2018-02-12 11:23:35 -05:00
# Roundcube Easy Unsubscribe
2023-11-29 12:44:05 -05:00
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.
2018-02-12 11:23:35 -05:00
2023-11-29 12:08:46 -05:00
## Demo Visual
2023-11-29 12:44:05 -05:00
![Demo SS](https://i.ibb.co/58B3P57/Screenshot-2023-11-29-at-12-42-46-PM.png)
2023-11-29 12:08:46 -05:00
## 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'
);
```