Patches from Michael Long
[squirrelmail.git] / plugins / newmail / config_sample.php
CommitLineData
dbc7cd0a 1<?php
4b4abf93 2
197562c9 3/**
4 * SquirrelMail NewMail plugin
5 *
6 * Sample configuration file
47ccfad4 7 * @copyright &copy; 2005-2006 The SquirrelMail Project Team
4b4abf93 8 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
197562c9 9 * @version $Id$
10 * @package plugins
fb883255 11 * @subpackage newmail
197562c9 12 */
13
f9710f76 14// Set $newmail_allowsound to false if you don't want sound files available
dbc7cd0a 15$newmail_allowsound = true;
16
f9710f76 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
dbc7cd0a 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);
36?>