+REGISTRATION_OPEN = True
+TEMPLATE_CONTEXT_SETTINGS = ('REGISTRATION_OPEN',)
+
+ACCOUNT_EMAIL_VERIFICATION = None
+SOCIALACCOUNT_AUTO_SIGNUP = False
+SOCIALACCOUNT_AVATAR_SUPPORT = False
+SOCIALACCOUNT_ADAPTER = 'cas.social.LooseSocialAccountAdapter'
+
+SOCIALACCOUNT_PROVIDERS = {
+ 'openid': {
+ 'SERVERS': [
+ dict(id='google',
+ name='Google',
+ openid_url='https://www.google.com/accounts/o8/id')
+ ]
+ }
+}
+
+
+CONTRIB_LOCALE_APPS = [
+ 'allauth',
+ 'allauth.account',
+ 'allauth.socialaccount',
+ 'allauth.socialaccount.providers.facebook',
+ 'allauth.socialaccount.providers.openid',
+]