if 'js' => TRUE, javascript support is checked by src/options.php
[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 $allowsound to false if you don't want sound files available
12 $newmail_allowsound = true;
13
14 // controls insertion of embed tags
15 $newmail_mediacompat_mode=false;
16
17 // List of enabled media files
18 $newmail_mmedia['notify']['types'] = array(SM_NEWMAIL_FILETYPE_SWF,SM_NEWMAIL_FILETYPE_MP3,SM_NEWMAIL_FILETYPE_WAV);
19 $newmail_mmedia['notify']['args'] = array('width'=>0,'height'=>0);
20 $newmail_mmedia['got_a_message']['types'] = array(SM_NEWMAIL_FILETYPE_SWF,SM_NEWMAIL_FILETYPE_MP3,SM_NEWMAIL_FILETYPE_WAV);
21 $newmail_mmedia['got_a_message']['args'] = array('width'=>0,'height'=>0);
22 $newmail_mmedia['monty_message']['types'] = array(SM_NEWMAIL_FILETYPE_SWF,SM_NEWMAIL_FILETYPE_MP3,SM_NEWMAIL_FILETYPE_WAV);
23 $newmail_mmedia['monty_message']['args'] = array('width'=>0,'height'=>0);
24 $newmail_mmedia['austin_mail']['types'] = array(SM_NEWMAIL_FILETYPE_SWF,SM_NEWMAIL_FILETYPE_MP3,SM_NEWMAIL_FILETYPE_WAV);
25 $newmail_mmedia['austin_mail']['args'] = array('width'=>0,'height'=>0);
26 ?>