On 01/16/2017 04:24 PM, Brian Carpenter wrote: > > Meanwhile I get the following when I run " python -c "import > dns.resolver": > > Traceback (most recent call last): > File "<string>", line 1, in <module> > ImportError: No module named dns.resolver > > Do I need to run that command in a certain directory?
This is the problem. Assuming 'python' invokes the same python interpreter that Mailman is using, the required dnspython module is not installed, at least not where it is accessible to Mailman's python. This is almost certainly a cPanel issue. I.e. they released an update which neglected to include that. It was there previously. I don't know enough about cPanel to know if this will work, but assuming you have pip, sudo pip install dnspython should fix it. -- Mark Sapiro <[email protected]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] https://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Security Policy: http://wiki.list.org/x/QIA9 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: https://mail.python.org/mailman/options/mailman-users/archive%40jab.org
