removed local directory name used for testing.
[squirrelmail.git] / plugins / newmail / config_default.php
CommitLineData
dbc7cd0a 1<?php
197562c9 2/**
3 * SquirrelMail NewMail plugin
4 *
5 * Default configuration file
6 * @version $Id$
7 * @package plugins
fb883255 8 * @subpackage newmail
197562c9 9 */
10
fb883255 11/**
f9710f76 12 * Set $newmail_allowsound to false if you don't want sound files available
fb883255 13 * @global boolean $newmail_allowsound
14 */
dbc7cd0a 15global $newmail_allowsound;
16$newmail_allowsound = true;
17
f9710f76 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 */
23global $newmail_uploadsounds;
24$newmail_uploadsounds = true;
25
fb883255 26/**
27 * controls insertion of embed tags
28 * @global boolean $newmail_mediacompat_mode
29 */
dbc7cd0a 30global $newmail_mediacompat_mode;
31$newmail_mediacompat_mode=false;
32
fb883255 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
f9710f76 41 * Object elements for these files should use zero width and height attributes
fb883255 42 * @global array $newmail_mmedia
43 */
f9710f76 44global $newmail_mmedia;
dbc7cd0a 45$newmail_mmedia=array();
46?>