/**
 * Decide which output drivers you want to activate.
 * Right now, the choices are:
 *
 * php:          The internal PHP4 syntax highlighting engine
 * enscript:     GNU enscript
 * tgz:          Tarballs, including gzipped ones.
 * rar:          RAR archives
 * msword:       Microsoft Word files via wvHtml
 * msexcel:      Microsoft Excel files via xlhtml
 * mspowerpoint: Microsoft Powerpoint files via ppthtml
 * vcard:        vCards
 * zip:          Zip files
 * rpm:          RPM packages
 * deb:          Debian packages
 */

$mime_drivers_map['horde']['registered'] = array(
    'php', 'tgz', 'vcard', 'zip', 'rpm'
    // ,'msword', 'msexcel', 'mspowerpoint',
    // ,'enscript', 'rar', 'deb'
    );


/**
 * If you want to specifically override any MIME type to be
 * handled by a specific driver, then enter it here.  Normally,
 * this is safe to leave, but it's useful when multiple drivers
 * handle the same MIME type, and you want to specify exactly
 * which one should handle it.
 */

$mime_drivers_map['horde']['overrides'] = array();


/**
 * Driver specific settings.  Here, you have to configure each
 * driver which you chose to activate above.  Default settings have
 * been filled in for them, and if you haven't activated it, then
 * just leave it as it is - it won't get loaded.
 *
 * The 'handles' setting below shouldn't be changed in most 
 * circumstances.  It registers a set of MIME type that the driver
 * can handle.  The 'x-extension' MIME type is a special one to
 * Horde that maps a file extension to a MIME type.  It's useful
 * when you know that all files ending in '.c' are C files, for
 * example.
 *
 * The 'icons' entry is for the driver to register various icons
 * for the MIME types it handles.  The array consists of a 
 * 'default' icon for that driver, and can also include specific
 * MIME-types which can have their own icons.
 *
 */

/**
 * Default driver settings
 */

$mime_drivers['horde']['default']['icons'] = array(
        'default'                       => 'text.gif',
        'application/x-gzip'            => 'compressed.gif',
        'application/pdf'               => 'pdf.gif',
        'application/pgp-signature'     => 'encryption.gif',
        'application/x-pkcs7-signature' => 'encryption.gif',
        'application/octet-stream'      => 'binary.gif',
        'audio/basic'                   => 'audio.gif',
        'audio/x-sun'                   => 'audio.gif',
        'image/bmp'                     => 'image.gif',
        'image/gif'                     => 'image.gif',
        'image/jpeg'                    => 'image.gif',
        'image/pjpeg'                   => 'image.gif',
        'image/pbm'                     => 'image.gif',
        'image/pgm'                     => 'image.gif',
        'image/png'                     => 'image.gif',
        'image/tiff'                    => 'image.gif',
        'image/x-png'                   => 'image.gif',
        'message/delivery-status'       => 'mail.gif',
        'message/rfc822'                => 'mail.gif',
        'unknown/octet-stream'          => 'binary.gif');

