523ade7bf60396376065c94376a1692a6980493c
4 * SquirrelMail NewMail plugin
6 * Default configuration file
7 * @copyright © 2005-2006 The SquirrelMail Project Team
8 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
15 * Set $newmail_allowsound to false if you don't want sound files available
16 * @global boolean $newmail_allowsound
18 global $newmail_allowsound;
19 $newmail_allowsound = true;
22 * Set $newmail_uploadsounds to false if you don't want to allow uploading
23 * of custom sound files.
24 * @global boolean $newmail_uploadsounds
26 global $newmail_uploadsounds;
27 $newmail_uploadsounds = true;
30 * controls insertion of embed tags
31 * @global boolean $newmail_mediacompat_mode
33 global $newmail_mediacompat_mode;
34 $newmail_mediacompat_mode=false;
37 * List of available multimedia files.
40 * $newmail_mmedia['notify']['types'] = array(SM_NEWMAIL_FILETYPE_SWF,SM_NEWMAIL_FILETYPE_MP3,SM_NEWMAIL_FILETYPE_WAV);
41 * $newmail_mmedia['notify']['args'] = array('width'=>0,'height'=>0);
43 * These two entries say that media/ directory contains notify.swf, notify.mp3 and notify.wav files
44 * Object elements for these files should use zero width and height attributes
45 * @global array $newmail_mmedia
47 global $newmail_mmedia;
48 $newmail_mmedia=array();