diff --git a/phone-push.cabal b/phone-push.cabal
--- a/phone-push.cabal
+++ b/phone-push.cabal
@@ -1,5 +1,5 @@
 name:             phone-push
-version:          0.1.0
+version:          0.1.1
 copyright:        (c) 2013 David Fendrich
 license:          BSD3
 license-file:     LICENSE
diff --git a/src/IOS.hs b/src/IOS.hs
--- a/src/IOS.hs
+++ b/src/IOS.hs
@@ -23,7 +23,7 @@
 Sandbox choice
 -}
   
-pushMess:: FilePath -> FilePath -> BL.ByteString -> [B.ByteString] -> IO ()  
+pushMess :: FilePath -> FilePath -> BL.ByteString -> [B.ByteString] -> IO ()  
 pushMess keyfile certfile payload tokens = withOpenSSL $ do
   -- Prepare SSL context
   ssl <- context
@@ -34,7 +34,7 @@
 
   -- Open socket
   proto <- (getProtocolNumber "tcp")
-  he <- getHostByName "gateway.sandbox.push.apple.com"
+  he <- getHostByName "gateway.push.apple.com"
   sock <- socket AF_INET Stream proto
   Network.Socket.connect sock (SockAddrInet 2195 (hostAddress he))
 
