On Fri, Mar 31, 2017 at 9:29 AM, Simon Hanna <simon.hanna@serve-me.info> wrote:
On 03/31/2017 08:10 AM, David Krantz wrote:
I think that would correspond to this line in urls.py
url(r'^$', RedirectView.as_view(url=reverse_lazy('hyperkitty.views.index.index'))),
Yes, that's the culprit. Replace it with the following:
url(r'^$', RedirectView.as_view(url=reverse_lazy('hk_root'))),
You can also update whatever guide you were using...
Great, will try that! I don't know whether I can update the guide. It's the one referenced earlier in this thread named something like setup experience of mailman 3 in production.
Then I of course have things to do on getting social logins to work. I currently get "DoesNotExist: SocialApp matching query does not exist." if trying to connect an account to google (which I started with). Not a showstopper as passwords do work. Did you follow django-allauth's guide on setting them up?
No, I haven't found that yet, I just followed the config examples as those seemed reasonable (although my knowledge of Django is quite limited so I am not a good judge of that of course). Will try that as well. Any particular known to work nice with the django setup used for mailman applications?
// David