X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;ds=sidebyside;f=bin%2Flists.rpc.py;h=8484af0b5cbf0248509baef57a12c78b4ecdca2f;hb=eb4ef1cb69fe7baa27d950643f037f24f5ca1cc4;hp=3540e48f1b51b828adfdfa421ea9a364c6119582;hpb=d0edeb70f254ed642b59c7c3636b7802266bcfe4;p=platal.git diff --git a/bin/lists.rpc.py b/bin/lists.rpc.py index 3540e48..8484af0 100755 --- a/bin/lists.rpc.py +++ b/bin/lists.rpc.py @@ -1,6 +1,6 @@ #!/usr/bin/env python #*************************************************************************** -#* Copyright (C) 2004 polytechnique.org * +#* Copyright (C) 2004-2008 polytechnique.org * #* http://opensource.polytechnique.org/ * #* * #* This program is free software; you can redistribute it and/or modify * @@ -74,6 +74,9 @@ PLATAL_DOMAIN2 = get_config('Mail', 'domain2', '') VHOST_SEP = get_config('Lists', 'vhost_sep', '_') ON_CREATE_CMD = get_config('Lists', 'on_create', '') +SRV_HOST = get_config('Lists', 'rpchost', 'localhost') +SRV_PORT = int(get_config('Lists', 'rpcport', '4949')) + ################################################################################ # # CLASSES @@ -968,7 +971,7 @@ lock = Lock() #------------------------------------------------------------------------------- # server # -server = FastXMLRPCServer(("localhost", 4949), BasicAuthXMLRPCRequestHandler) +server = FastXMLRPCServer((SRV_HOST, SRV_PORT), BasicAuthXMLRPCRequestHandler) # index.php server.register_function(get_lists)