Ticket #6733 (closed Bug: worksforme)
/portal/join_form: reversed action from "send a mail with the password"
| Reported by: | kleist | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 3.0 |
| Component: | Infrastructure | Keywords: | |
| Cc: |
Description
svn trunk, firefox 2.0.0.4/linux
logged in as plone manager, using "/portal/join_form" to add a new user
leaving "send a mail with the password" unchecked: a mail _is_ sent
checkmarking it: _no_ mail is sent
Change History
comment:2 Changed 5 years ago by siebo
- Status changed from new to closed
- Resolution set to worksforme
I was just testing this and it appears to be resolved by changeset:16022
Anyone else care to confirm this?
Note: See
TracTickets for help on using
tickets.

I'm having a different behavior:
It sends the email if the "mail_me" checkbox is set to true OR if site property "validate_email" is true. If I disable the property "validate_email" it respects the "mail_me" checkbox.
from CMFPlone/skins/plone_login/register.py:
if site_properties.validate_email or REQUEST.get('mail_me', 0): try: portal_registration.registeredNotify(username)So, maybe the best solution would be to hide "mail_me" from join_form when "validate_email" is activated.