mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 06:44:03 +01:00
* fix phpstan "Implicit array creation" in plugin config files * update minimal "roundcube/plugin-installer" version
16 lines
347 B
Plaintext
16 lines
347 B
Plaintext
<?php
|
|
|
|
$config = [];
|
|
|
|
// Enables basic notification
|
|
$config['newmail_notifier_basic'] = false;
|
|
|
|
// Enables sound notification
|
|
$config['newmail_notifier_sound'] = false;
|
|
|
|
// Enables desktop notification
|
|
$config['newmail_notifier_desktop'] = false;
|
|
|
|
// Desktop notification close timeout in seconds
|
|
$config['newmail_notifier_desktop_timeout'] = 10;
|