Adds email count in massmailer and displays it in the axletter notification email.
[platal.git] / bin / lists.rpc.py
index 4e47470..3b53148 100755 (executable)
@@ -105,9 +105,10 @@ class BasicAuthXMLRPCRequestHandler(SimpleXMLRPCRequestHandler):
         except:
             raise Exception('method "%s" is not supported' % method)
 
+    def is_rpc_path_valid(self):
+        return True
 
     def _dispatch(self, method, params):
-        new_params = list(params)
         return list_call_dispatcher(self._get_function(method), self.data[0], self.data[1], self.data[2], *params)
 
     def do_POST(self):
@@ -385,7 +386,7 @@ def subscribe(userdesc, perms, mlist):
     return result
 
 def unsubscribe(userdesc, perms, mlist):
-    "" Unsubscribe from a list
+    """ Unsubscribe from a list
             @mlist
             @edit
     """