diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-05-24 12:26:45 -0700 |
---|---|---|
committer | Elrond <elrond+mediagoblin.org@samba-tng.org> | 2013-05-27 23:29:39 +0200 |
commit | 97aebda7ded46181af1c5e9560be8251d4c56d36 (patch) | |
tree | d5913f0a0b0763b8628db2ef518f552efdafef99 /mediagoblin/auth/lib.py | |
parent | 41258916f28a2df28d3feb907ea358f227c65e21 (diff) | |
download | mediagoblin-97aebda7ded46181af1c5e9560be8251d4c56d36.tar.lz mediagoblin-97aebda7ded46181af1c5e9560be8251d4c56d36.tar.xz mediagoblin-97aebda7ded46181af1c5e9560be8251d4c56d36.zip |
moved send_verification_email to auth/tools
Diffstat (limited to 'mediagoblin/auth/lib.py')
-rw-r--r-- | mediagoblin/auth/lib.py | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/mediagoblin/auth/lib.py b/mediagoblin/auth/lib.py index 8829995a..bfc36b28 100644 --- a/mediagoblin/auth/lib.py +++ b/mediagoblin/auth/lib.py @@ -90,41 +90,6 @@ def fake_login_attempt(): randplus_stored_hash == randplus_hashed_pass -EMAIL_VERIFICATION_TEMPLATE = ( - u"http://{host}{uri}?" - u"userid={userid}&token={verification_key}") - - -def send_verification_email(user, request): - """ - Send the verification email to users to activate their accounts. - - Args: - - user: a user object - - request: the request - """ - rendered_email = render_template( - request, 'mediagoblin/auth/verification_email.txt', - {'username': user.username, - 'verification_url': EMAIL_VERIFICATION_TEMPLATE.format( - host=request.host, - uri=request.urlgen('mediagoblin.auth.verify_email'), - userid=unicode(user.id), - verification_key=user.verification_key)}) - - # TODO: There is no error handling in place - send_email( - mg_globals.app_config['email_sender_address'], - [user.email], - # TODO - # Due to the distributed nature of GNU MediaGoblin, we should - # find a way to send some additional information about the - # specific GNU MediaGoblin instance in the subject line. For - # example "GNU MediaGoblin @ Wandborg - [...]". - 'GNU MediaGoblin - Verify your email!', - rendered_email) - - EMAIL_FP_VERIFICATION_TEMPLATE = ( u"http://{host}{uri}?" u"userid={userid}&token={fp_verification_key}") |