One more. I wasn't done.
[squirrelmail.git] / plugins / newmail / config_sample.php
1 <?php
2
3 /**
4 * SquirrelMail NewMail plugin
5 *
6 * Sample configuration file
7 * @copyright &copy; 2005-2007 The SquirrelMail Project Team
8 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
9 * @version $Id$
10 * @package plugins
11 * @subpackage newmail
12 */
13
14 // Set $newmail_allowsound to false if you don't want sound files available
15 $newmail_allowsound = true;
16
17 /**
18 * Don't allow custom sounds
19 * prefs are stored in DB and data directory is not shared between
20 * web cluster hosts.
21 */
22 $newmail_uploadsounds = false;
23
24 // controls insertion of embed tags
25 $newmail_mediacompat_mode=false;
26
27 // List of enabled media files
28 $newmail_mmedia['notify']['types'] = array(SM_NEWMAIL_FILETYPE_SWF,SM_NEWMAIL_FILETYPE_MP3,SM_NEWMAIL_FILETYPE_WAV);
29 $newmail_mmedia['notify']['args'] = array('width'=>0,'height'=>0);
30 $newmail_mmedia['got_a_message']['types'] = array(SM_NEWMAIL_FILETYPE_SWF,SM_NEWMAIL_FILETYPE_MP3,SM_NEWMAIL_FILETYPE_WAV);
31 $newmail_mmedia['got_a_message']['args'] = array('width'=>0,'height'=>0);
32 $newmail_mmedia['monty_message']['types'] = array(SM_NEWMAIL_FILETYPE_SWF,SM_NEWMAIL_FILETYPE_MP3,SM_NEWMAIL_FILETYPE_WAV);
33 $newmail_mmedia['monty_message']['args'] = array('width'=>0,'height'=>0);
34 $newmail_mmedia['austin_mail']['types'] = array(SM_NEWMAIL_FILETYPE_SWF,SM_NEWMAIL_FILETYPE_MP3,SM_NEWMAIL_FILETYPE_WAV);
35 $newmail_mmedia['austin_mail']['args'] = array('width'=>0,'height'=>0);