--- a
+++ b/rdpl2stream/lib/DummyMMSHandler.py
@@ -0,0 +1,26 @@
+##########################################################################
+# Copyright 2009 Carlos Ribeiro
+#
+# This file is part of Radio Tray
+#
+# Radio Tray is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 1 of the License, or
+# (at your option) any later version.
+#
+# Radio Tray is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Radio Tray.  If not, see <http://www.gnu.org/licenses/>.
+#
+##########################################################################
+import urllib2
+
+class DummyMMSHandler(urllib2.BaseHandler):
+        
+    def mms_open(self, request):
+        print request.get_full_url()
+        raise urllib2.URLError("MMS REDIRECT:"+request.get_full_url())