Index: trunk/thirds/otb2zcfg/otb2zcfg.cxx
===================================================================
--- trunk/thirds/otb2zcfg/otb2zcfg.cxx	(revision 562)
+++ trunk/thirds/otb2zcfg/otb2zcfg.cxx	(revision 563)
@@ -78,4 +78,12 @@
   std::cout << "     mimeType = image/png" << std::endl;
   std::cout << "    </Supported>" << std::endl;
+}
+
+void printKmz(){
+  std::cout << "    <Default>" << std::endl;
+  std::cout << "     mimeType = application/vnd.google-earth.kmz" << std::endl;
+  std::cout << "     encoding = utf-8" << std::endl;
+  std::cout << "     extension = kmz" << std::endl;
+  std::cout << "    </Default>" << std::endl;
 }
 
@@ -362,6 +370,12 @@
 			if(descr.find(dtype4)!= std::string::npos || descr.find(dtype5)!= std::string::npos)
 			  printVector();
-			else
-			  printUnknown();
+		       	else{
+			  std::string dtype6("kmz");
+			  std::string dtype7("Kmz");
+			  if(descr.find(dtype6)!= std::string::npos || descr.find(dtype6)!= std::string::npos)
+			    printKmz();
+			  else
+			    printUnknown();
+			}
 		      }
 		    }
