config_sample.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * SquirrelMail NewMail plugin
  4. *
  5. * Sample configuration file
  6. * @copyright &copy; 2005-2007 The SquirrelMail Project Team
  7. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  8. * @version $Id$
  9. * @package plugins
  10. * @subpackage newmail
  11. */
  12. // Set $newmail_allowsound to false if you don't want sound files available
  13. $newmail_allowsound = true;
  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. // controls insertion of embed tags
  21. $newmail_mediacompat_mode=false;
  22. // List of enabled media files
  23. $newmail_mmedia['notify']['types'] = array(SM_NEWMAIL_FILETYPE_SWF,SM_NEWMAIL_FILETYPE_MP3,SM_NEWMAIL_FILETYPE_WAV);
  24. $newmail_mmedia['notify']['args'] = array('width'=>0,'height'=>0);
  25. $newmail_mmedia['got_a_message']['types'] = array(SM_NEWMAIL_FILETYPE_SWF,SM_NEWMAIL_FILETYPE_MP3,SM_NEWMAIL_FILETYPE_WAV);
  26. $newmail_mmedia['got_a_message']['args'] = array('width'=>0,'height'=>0);
  27. $newmail_mmedia['monty_message']['types'] = array(SM_NEWMAIL_FILETYPE_SWF,SM_NEWMAIL_FILETYPE_MP3,SM_NEWMAIL_FILETYPE_WAV);
  28. $newmail_mmedia['monty_message']['args'] = array('width'=>0,'height'=>0);
  29. $newmail_mmedia['austin_mail']['types'] = array(SM_NEWMAIL_FILETYPE_SWF,SM_NEWMAIL_FILETYPE_MP3,SM_NEWMAIL_FILETYPE_WAV);
  30. $newmail_mmedia['austin_mail']['args'] = array('width'=>0,'height'=>0);