The copyright message should be consistent.
[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/**
12 * Set $allowsound to false if you don't want sound files available
13 * @global boolean $newmail_allowsound
14 */
dbc7cd0a 15global $newmail_allowsound;
16$newmail_allowsound = true;
17
fb883255 18/**
19 * controls insertion of embed tags
20 * @global boolean $newmail_mediacompat_mode
21 */
dbc7cd0a 22global $newmail_mediacompat_mode;
23$newmail_mediacompat_mode=false;
24
fb883255 25/**
26 * List of available multimedia files.
27 *
28 * For example.
29 * $newmail_mmedia['notify']['types'] = array(SM_NEWMAIL_FILETYPE_SWF,SM_NEWMAIL_FILETYPE_MP3,SM_NEWMAIL_FILETYPE_WAV);
30 * $newmail_mmedia['notify']['args'] = array('width'=>0,'height'=>0);
31 *
32 * These two entries say that media/ directory contains notify.swf, notify.mp3 and notify.wav files
33 * Object entities for these files should be use zero width and height attributes
34 * @global array $newmail_mmedia
35 */
36 global $newmail_mmedia;
dbc7cd0a 37$newmail_mmedia=array();
38?>