Mercurial > hg > rc1
annotate plugins/newmail_notifier/config.inc.php.dist @ 35:05c4c32948af
.hgignore: add vendor tree
composer.json: new packages
plugins/thunderbird_labels/thunderbird_labels.php: change hook and RFC822 use wrt whitelisting to avoid deprecated stuff
index.php: commented debugging hooks
others: new releases of vendor packages?
author | Charlie Root |
---|---|
date | Thu, 30 Aug 2018 16:21:59 -0400 |
parents | 1e000243b222 |
children |
rev | line source |
---|---|
0 | 1 <?php |
2 | |
3 // Enables basic notification | |
4 $config['newmail_notifier_basic'] = false; | |
5 | |
6 // Enables sound notification | |
7 $config['newmail_notifier_sound'] = false; | |
8 | |
9 // Enables desktop notification | |
10 $config['newmail_notifier_desktop'] = false; | |
11 | |
12 // Desktop notification close timeout in seconds | |
13 $config['newmail_notifier_desktop_timeout'] = 10; | |
14 | |
15 ?> |