renaming file. using underscore instead of hyphen.
[squirrelmail.git] / plugins / newmail / config_default.php
... / ...
CommitLineData
1<?php
2/**
3 * SquirrelMail NewMail plugin
4 *
5 * Default configuration file
6 * @version $Id$
7 * @package plugins
8 * @subpackage newmail
9 */
10
11/**
12 * Set $allowsound to false if you don't want sound files available
13 * @global boolean $newmail_allowsound
14 */
15global $newmail_allowsound;
16$newmail_allowsound = true;
17
18/**
19 * controls insertion of embed tags
20 * @global boolean $newmail_mediacompat_mode
21 */
22global $newmail_mediacompat_mode;
23$newmail_mediacompat_mode=false;
24
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;
37$newmail_mmedia=array();
38?>