{
    my $status = $modDeflate{status} || 'disabled';
    my $compression = $modDeflate{level} || '5';

    if ( $status eq "enabled" )
	{
		$OUT .= qq(
		SetOutputFilter DEFLATE

                BrowserMatch ^Mozilla/4 gzip-only-text/html
                BrowserMatch ^Mozilla/4\\.0[678] no-gzip
                BrowserMatch \\bMSIE !no-gzip !gzip-only-text/html

		DeflateCompressionLevel $compression
		SetOutputFilter DEFLATE 
		SetEnvIfNoCase Request_URI \\.(?:gif|jpe?g|png)\$ \\
			no-gzip dont-vary 
		SetEnvIfNoCase Request_URI \\
			\\.(?:exe|t?gz|zip|bz2|sit|rar|rpm)\$ \\
			no-gzip dont-vary 
		SetEnvIfNoCase Request_URI \\.pdf\$ no-gzip dont-vary
                );
	}
}
