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