diff --git a/hMollom.cabal b/hMollom.cabal
--- a/hMollom.cabal
+++ b/hMollom.cabal
@@ -1,6 +1,6 @@
 name:                hMollom
-version:             0.1
-cabal-version:       >= 1.2
+version:             0.1.1
+cabal-version:       >= 1.6
 stability:           experimental
 synopsis:            Library to interact with the Mollom anti-spam service
 description:         Library to interact with the Mollom anti-spam service
diff --git a/src/Network/Mollom.hs b/src/Network/Mollom.hs
--- a/src/Network/Mollom.hs
+++ b/src/Network/Mollom.hs
@@ -96,9 +96,10 @@
       requestStruct = [("public_key", publicKey), ("time", timeStamp), ("hash", hash), ("nonce", nonce)] ++ fields
   response <- remote (mollomFallbackServer ++ mollomApiVersion ++ "/") function requestStruct
   return response
-
+{-
 -- | make the actual XML-RPC call to the Mollom server returning
 --   the raw XML response, for debug purposes
+--   This requires that haxr exports the post function!
 service__ :: MollomConn    -- ^connection to the Mollom service
           -> String        -- ^remote function name
           -> MollomRequest -- ^request specific data
@@ -111,6 +112,7 @@
       hash = authenticate publicKey privateKey timeStamp nonce
   response <- post (mollomFallbackServer ++ mollomApiVersion ++ "/") (renderCall $ MethodCall function [toValue ([("public_key", publicKey), ("time", timeStamp), ("hash", hash), ("nonce", nonce)] ++ fields)] )
   return response
+  -}
 
 
 -- | request a list of Mollom servers that can handle a site's calls.
