On Mon, Apr 27, 2009 at 3:15 AM, Álvaro Justen [Turicas] <[email protected]> wrote: > > On Sun, Apr 26, 2009 at 3:50 PM, Alexei Vinidiktov > <[email protected]> wrote: >> Both on the local and remote server the user who's being registered >> gets an email with a broken link like this: >> >> """ >> Click on the link >> http://...verify_email/078f3dad-f248-4db6-8aee-603da176ad49 to verify >> your email >> """ >> >> It should look like this: >> >> http://domain.com/application/default/user/verify_email/078f3dad-f248-4db6-8aee-603da176ad49 >> > > web2py doesn't handle this automaticaly. You can change this message > with something like this: > > from gluon.tools import Auth > auth = Auth(...) > ... > auth.messages.verify_email = 'Click on the link > http://Your_site's_URL/verify_email/%(key)s to verify your email' > > It can be added in future to web2py handles that automaticaly, getting > data from request - but for this work we must implement a way to get > FULL URL requested by user - it is a routes.py feature that I > requested some time ago.
Thanks, Álvaro! Are there any hard to overcome obstacles to implementing your feature request? -- Alexei Vinidiktov --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~----------~----~----~----~------~----~------~--~---

