don't use full URL in sounds media preferences.
[squirrelmail.git] / plugins / newmail / config_default.php
1 <?php
2 /**
3 * SquirrelMail NewMail plugin
4 *
5 * Default configuration file
6 * @version $Id$
7 * @package plugins
8 * @subpackage newmail
9 */
10
11 /**
12 * Set $newmail_allowsound to false if you don't want sound files available
13 * @global boolean $newmail_allowsound
14 */
15 global $newmail_allowsound;
16 $newmail_allowsound = true;
17
18 /**
19 * Set $newmail_uploadsounds to false if you don't want to allow uploading
20 * of custom sound files.
21 * @global boolean $newmail_uploadsounds
22 */
23 global $newmail_uploadsounds;
24 $newmail_uploadsounds = true;
25
26 /**
27 * controls insertion of embed tags
28 * @global boolean $newmail_mediacompat_mode
29 */
30 global $newmail_mediacompat_mode;
31 $newmail_mediacompat_mode=false;
32
33 /**
34 * List of available multimedia files.
35 *
36 * For example.
37 * $newmail_mmedia['notify']['types'] = array(SM_NEWMAIL_FILETYPE_SWF,SM_NEWMAIL_FILETYPE_MP3,SM_NEWMAIL_FILETYPE_WAV);
38 * $newmail_mmedia['notify']['args'] = array('width'=>0,'height'=>0);
39 *
40 * These two entries say that media/ directory contains notify.swf, notify.mp3 and notify.wav files
41 * Object elements for these files should use zero width and height attributes
42 * @global array $newmail_mmedia
43 */
44 global $newmail_mmedia;
45 $newmail_mmedia=array();
46 ?>