// 220tar
/**  
 * Tar driver settings
 * To access gzipped files, the zlib library must have been built into PHP
 * (with the --with-zlib option).
 */
$mime_drivers['horde']['tgz'] = array(
    'inline' => true,
    'handles' => array(
        'application/x-compressed-tar', 'application/x-tar',
        'application/x-tgz', 'application/x-gzip', 'application/x-gtar',
        'application/gzip', 'application/x-gzip-compressed'
    ),
    'icons' => array(
        'default' => 'compressed.png'
    )
);   

