Roundcube/Plugin/newmail notifier: Unterschied zwischen den Versionen

Aus Foxwiki
Die Seite wurde neu angelegt: „== New mail notifier == <blockquote>Supports three methods of notification: # Basic - focus browser window and change favicon # Sound - play wav file # Desktop - display desktop notification (using webkitNotifications feature, supported by Chrome and Firefox with 'HTML5 Notifications' plugin) </blockquote> * Shipped by Roundcube * Plugin name: ''newmail_notifier'' You can enable it simply renaming the config file... cd plugins/newmail_notifier cp con…“
 
Keine Bearbeitungszusammenfassung
 
(2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
== New mail notifier ==
== New mail notifier ==
<blockquote>Supports three methods of notification:
Supports three methods of notification:


# Basic - focus browser window and change favicon
# Basic - focus browser window and change favicon
# Sound - play wav file
# Sound - play wav file
# Desktop - display desktop notification (using webkitNotifications feature, supported by Chrome and Firefox with 'HTML5 Notifications' plugin)
# Desktop - display desktop notification (using webkitNotifications feature, supported by Chrome and Firefox with 'HTML5 Notifications' plugin)
</blockquote>
 


* Shipped by Roundcube
* Shipped by Roundcube
Zeile 22: Zeile 22:
  // Enables desktop notification
  // Enables desktop notification
  $config['newmail_notifier_desktop'] = false;
  $config['newmail_notifier_desktop'] = false;
[[Kategorie:Roundcube/Plugin]]

Aktuelle Version vom 27. August 2023, 15:27 Uhr

New mail notifier

Supports three methods of notification:

  1. Basic - focus browser window and change favicon
  2. Sound - play wav file
  3. Desktop - display desktop notification (using webkitNotifications feature, supported by Chrome and Firefox with 'HTML5 Notifications' plugin)


  • Shipped by Roundcube
  • Plugin name: newmail_notifier

You can enable it simply renaming the config file...

cd plugins/newmail_notifier
cp config.inc.php.dist config.inc.php

...and choosing the notification method you like:

// Enables basic notification
$config['newmail_notifier_basic'] = true;

// Enables sound notification
$config['newmail_notifier_sound'] = true;

// Enables desktop notification
$config['newmail_notifier_desktop'] = false;