First time here? Check out the FAQ!

eric's profile - activity

2016-02-16 01:58:08 -0500 received badge Notable Question (source)
2015-10-16 20:23:38 -0500 received badge Taxonomist
2013-10-08 18:21:54 -0500 received badge Good Answer ( source )
2013-10-08 18:21:54 -0500 received badge Enlightened ( source )
2013-01-17 00:37:02 -0500 received badge Popular Question (source)
2012-07-10 18:19:13 -0500 received badge Good Question (source)
2012-07-04 17:56:37 -0500 received badge Famous Question (source)
2012-07-04 10:25:59 -0500 received badge Nice Answer ( source )
2012-07-03 17:16:54 -0500 received badge Self-Learner ( source )
2012-07-03 17:16:54 -0500 received badge Teacher ( source )
2012-07-03 17:04:37 -0500 received badge Editor (source)
2012-07-03 17:04:07 -0500 received badge Scholar ( source )
2012-07-03 17:04:01 -0500 answered a question User registration control

Because we're using Google Apps and therefore have @mycompany.com emails, I just modified the django_authopenid backend to force it to a Google Apps login.

Changed www.google.com/08/id (or something) in util.py to www.google.com/o8/site-xrds?hd=mycompany.com and an openid patch from that adieu posted up.

After that, I just disabled all other logins (only allowing a Google login), and only allowed registered users to view site.

2012-06-29 16:18:47 -0500 commented answer User registration control

Thanks paulus_almighty, but I think what I'm looking for falls into what you describe in the second paragraph.

2012-06-23 14:10:23 -0500 received badge Nice Question (source)
2012-06-23 09:38:52 -0500 received badge Student (source)
2012-06-22 18:47:43 -0500 asked a question User registration control

How can I control who can register for my askbot? (i.e. only users with a @example.com email address, or must be admin approved)

EDIT: Found a solution and posted it below. Marked as best/correct answer.