<div dir="ltr"><div><div><div><div>Hello. I have installed the msrprelay sources using  darcs, installed it it using "python setup.py install". I also installed the python-gnutls, python-sqlobject, python-mysqldb , python-application, python-twisted. The problem is, if i do uncomment the option "backend' in the config.ini, i get:<br><br>msrprelay --no-fork --config-file=./config.ini<br><br>Starting MSRP Relay 1.0.8<br>fatal error: failed to create MSRP Relay: No module named database<br>fatal error: log_level = debug<br>Traceback (most recent call last):<br>  File "/usr/local/bin/msrprelay", line 63, in <module><br>    relay = Relay()<br>  File "/usr/lib/python2.7/dist-packages/application/python/types.py", line 37, in __call__<br>    return cls._instance_creator(*args, **kw)<br>  File "<string>", line 1, in __init__<br>  File "/usr/lib/python2.7/dist-packages/application/python/types.py", line 31, in instance_creator<br>    cls._instances[key] = super(Singleton, cls).__call__(*args, **kwargs)<br>  File "/usr/local/lib/python2.7/dist-packages/msrp/relay.py", line 71, in __init__<br>    self._do_init()<br>  File "/usr/local/lib/python2.7/dist-packages/msrp/relay.py", line 76, in _do_init<br>    self.backend = __import__("msrp.backend.%s" % RelayConfig.backend.lower(), globals(), locals(), [""]).Checker()<br>ImportError: No module named database<br>log_level = debug<br><br><br></div>The config file look like this:<br><br><br>[Relay]<br><br><br>certificate = ./tls/msrprelay.crt<br><br><br>key = ./tls/msrprelay.key<br><br><br>address = <a href="http://0.0.0.0:2855">0.0.0.0:2855</a><br><br><br>; allow_other_methods = No<br><br><br>; debug_notls = No<br><br><br> log_failed_auth = Yes<br>.<br>; max_auth_attempts = 3<br><br><br>backend = database<br><br>log_level = DEBUG<br><br>[Database]<br><br></div>;here goes my db settings etc<br><br></div>If i comment the line 'backend = database', the msrprelay starts fine, but it seem not to use the database backend by default. If i do set backend = memory, i get the same error, just in the end:<br><br>RelayConfig.backend.lower(), globals(), locals(), [""]).Checker()<br>ImportError: No module named memory<br>log_level = debug<br><br></div>What can be wrong, please help!<br></div>