copyright update
[squirrelmail.git] / plugins / newmail / config_default.php
CommitLineData
dbc7cd0a 1<?php
4b4abf93 2
197562c9 3/**
4 * SquirrelMail NewMail plugin
5 *
6 * Default 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
fb883255 14/**
f9710f76 15 * Set $newmail_allowsound to false if you don't want sound files available
fb883255 16 * @global boolean $newmail_allowsound
17 */
dbc7cd0a 18global $newmail_allowsound;
19$newmail_allowsound = true;
20
f9710f76 21/**
22 * Set $newmail_uploadsounds to false if you don't want to allow uploading
23 * of custom sound files.
24 * @global boolean $newmail_uploadsounds
25 */
26global $newmail_uploadsounds;
27$newmail_uploadsounds = true;
28
fb883255 29/**
30 * controls insertion of embed tags
31 * @global boolean $newmail_mediacompat_mode
32 */
dbc7cd0a 33global $newmail_mediacompat_mode;
34$newmail_mediacompat_mode=false;
35
fb883255 36/**
37 * List of available multimedia files.
38 *
39 * For example.
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);
42 *
43 * These two entries say that media/ directory contains notify.swf, notify.mp3 and notify.wav files
f9710f76 44 * Object elements for these files should use zero width and height attributes
fb883255 45 * @global array $newmail_mmedia
46 */
f9710f76 47global $newmail_mmedia;
dbc7cd0a 48$newmail_mmedia=array();
49?>