removed local directory name used for testing.
[squirrelmail.git] / plugins / newmail / config_sample.php
CommitLineData
dbc7cd0a 1<?php
197562c9 2/**
3 * SquirrelMail NewMail plugin
4 *
5 * Sample configuration file
6 * @version $Id$
7 * @package plugins
fb883255 8 * @subpackage newmail
197562c9 9 */
10
f9710f76 11// Set $newmail_allowsound to false if you don't want sound files available
dbc7cd0a 12$newmail_allowsound = true;
13
f9710f76 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
dbc7cd0a 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?>