Roundcube/Plugin/swipe

Aus Foxwiki
Version vom 27. August 2023, 13:42 Uhr von Dirkwagner (Diskussion | Beiträge) (Textersetzung - „</blockquote>“ durch „“)

swipe

  • Installed via composer johndoh/swipe
  • Plugin name: swipe

This plugin adds left/right/down swipe actions to entries in the the message list on touch devices (tables/phones).Unfortunately this plugins does not have a config file of its own, so we have to add the configuration to the main RC config file.

This is how I configured it for myself. Look at the README file to find the list of all actions available. $config['swipe_actions'] = [  'messagelist' => [    'left'  => 'delete',    'right' => 'reply-all',    'down'  => 'checkmail'  ],  'contactlist' => [    'left'  => 'compose',    'right' => 'compose',    'down'  => 'vcard_attachments'  ] ];