Is there a good way to add new users to a default group when they are
created (e.g. via django-registration)? I just tried binding the
post_save signal for User, and adding the group in the signal handler
(if "created" is true). However, I haven't found a good place (file)
to put the connect() call, so the signal will be caught: i.e. some
file that will consistently be loaded before a User is created.
I'm currently thinking I will override the django-registration
activate url, and add the code there, before calling
registration.views.activate. Obviously this isn't the most general
solution.