You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-user@portals.apache.org by William Wong <ke...@verizon.net> on 2001/12/18 03:24:26 UTC

Email confirmation property value

Found a discrepancy with
JOA/jetspeed/modules/actions/CreateNewUserAndConfirm.java where
the following property could have been incorrectly spelled:

	newuser.confirm.email.enable

Should have been:

	newuser.confirm.enable

Attached is the patch if required. This will fix a bug where
email confirmation does not show a proper secret key to use.

-william

Re: Email confirmation property value

Posted by Paul Spencer <pa...@apache.org>.
William
Thank you for the patch. I will commit it shortly.

Paul Spencer

William Wong wrote:

> Found a discrepancy with
> JOA/jetspeed/modules/actions/CreateNewUserAndConfirm.java where
> the following property could have been incorrectly spelled:
> 
> 	newuser.confirm.email.enable
> 
> Should have been:
> 
> 	newuser.confirm.enable
> 
> Attached is the patch if required. This will fix a bug where
> email confirmation does not show a proper secret key to use.
> 
> -william
> 
> 
> ------------------------------------------------------------------------
> 
> Index: CreateNewUserAndConfirm.java
> ===================================================================
> RCS file: /home/cvspublic/jakarta-jetspeed/src/java/org/apache/jetspeed/modules/actions/CreateNewUserAndConfirm.java,v
> retrieving revision 1.26
> diff -u -r1.26 CreateNewUserAndConfirm.java
> --- CreateNewUserAndConfirm.java	2001/11/27 12:59:56	1.26
> +++ CreateNewUserAndConfirm.java	2001/12/18 02:12:39
> @@ -172,7 +172,7 @@
>                  // allow for disabling of email for configurations without a mail server
>                  boolean newUserNotification = JetspeedResources.getBoolean("newuser.notification.enable", false);
>                  boolean newUserApproval = JetspeedResources.getBoolean("newuser.approval.enable", false);
> -                boolean enableMail = JetspeedResources.getBoolean("newuser.confirm.email.enable", false);
> +                boolean enableMail = JetspeedResources.getBoolean("newuser.confirm.enable", false);
>                  if (false == enableMail)
>                      confirmValue = JetspeedResources.CONFIRM_VALUE;
>      
> 
> 
> 
> ------------------------------------------------------------------------
> 
> --
> To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
> For additional commands, e-mail: <ma...@jakarta.apache.org>
> 



--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>