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 Tate Jones <ta...@pisoftware.com> on 2001/04/05 07:23:52 UTC

Confirmation Email not correct

We are running Jetspeed (current cvs) with Postgresql.  Have applied the 
fixes for Postgresql.   When a confirmation email is sent it contains NULL 
for the secret key and next action.

Welcome to Jetspeed

Your new account has been created.

Your secret key is:

null

You can go to the following URL to confirm your account:

<http://kildall:8081/jetspeed/portal/screen/ConfirmRegistration/username/1021612/secretkey/null/nextscreen/null>

> can anyone make sense of this?

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org


Re: AW: Confirmation Email not correct

Posted by Tate Jones <ta...@pisoftware.com>.
Yes it does

Jochen Berger wrote:

> Hi there,
> 
> I suggest to check the table TURBINE_ROLE if it contains an entry for the
> role 'authenticated_user'.
> 
> 
> J. Berger
> 
> -----Ursprüngliche Nachricht-----
> Von: Edward M. Goldberg [mailto:emg@EdwardMGoldberg.com]
> Gesendet: Donnerstag, 5. April 2001 08:04
> An: jetspeed-user@jakarta.apache.org
> Betreff: Re: Confirmation Email not correct
> 
> 
> This question has now been asked three times with
> no reply.  Join the club...
> 
> e.m.g.
> 
> 
> 
> ------- snip ------
> 
> I had the same problem a while back.  I asked the list
> and have no reply to date.
> 
> What I did was to re-install the turbine code from
> the tar and reload a new jetspeed from the war.
> 
> This made the problem go away for me.  I never found
> out why the DB was damaged.   The code does not check
> for a key of null returned from the DB query.  So I
> have to assume that the DB returned null for that account
> and the code passed it on to the e-mail..
> 
> e.m.g.
> 
> 
> Dave Carlson wrote:
> 
> The confirmation email for new accounts is working, but the email contains
> a secret key "null".  If I look in the user database and get the actual
> secret key value, then I can confirm successfully.  Does anyone else have
> this problem?
> 
> Thanks!
>    Dave
> 
> 
> Tate Jones wrote:
> 
>> We are running Jetspeed (current cvs) with Postgresql.  Have applied the
>> fixes for Postgresql.   When a confirmation email is sent it contains
>> NULL for the secret key and next action.
>>
>> Welcome to Jetspeed
>>
>> Your new account has been created.
>>
>> Your secret key is:
>>
>> null
>>
>> You can go to the following URL to confirm your account:
>>
>>
> 
<http://kildall:8081/jetspeed/portal/screen/ConfirmRegistration/username/102
> 1612/secretkey/null/nextscreen/null>
>>
>>> can anyone make sense of this?
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
>> For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org
> 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org


Null secret key in confirmation email

Posted by Tom Adams <to...@PIsoftware.com>.
A fix for the null secret key in a confirmation email has been added to cvs. 
Thanks to David for the commit! 

Cheers,

Tom

-- 
Tom Adams            | Plugged In Software
Software Engineer    |     +61 7 3876 2188
tom@PIsoftware.com   |

Fingerprint: 7B49 AB1D 852C A251 787A  5979 12C9 3ADB DD07 A6DC
---------------------------------------------------------------

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org


RE: Confirmation Email not correct

Posted by John Menke <jo...@eagleinfosystems.com>.
I think there is a new version of jetspeed.script that is needed.  Two
things have to be in this script.

A TABLE TURBINE_ROLE must be created
A row must be inserted into TURBINE_ROLE
---INSERT INTO TURBINE_ROLE VALUES (1, 'authenticated_user', NULL)---

If you just add the code to insert into the table it will not work...
(because some scripts don't create the table.... find a script that creates
the table from the CVS)

Also, ensure that your mail entries are good in the TR.p
You need all of these entries:

mail.server=localhost
corfirm.email.from=postmaster@yourserver.com   // use a real account :)
corfirm.email.name=YourName
corfirm.email.subject=Jetspeed Registration

This should get you up and running:)

-----Original Message-----
From: Jochen Berger [mailto:jochen.berger@t-systems.de]
Sent: Thursday, April 05, 2001 2:21 AM
To: jetspeed-user@jakarta.apache.org; emg@EdwardMGoldberg.com
Subject: AW: Confirmation Email not correct


Hi there,

I suggest to check the table TURBINE_ROLE if it contains an entry for the
role 'authenticated_user'.


J. Berger

-----Ursprüngliche Nachricht-----
Von: Edward M. Goldberg [mailto:emg@EdwardMGoldberg.com]
Gesendet: Donnerstag, 5. April 2001 08:04
An: jetspeed-user@jakarta.apache.org
Betreff: Re: Confirmation Email not correct


This question has now been asked three times with
no reply.  Join the club...

e.m.g.



------- snip ------

I had the same problem a while back.  I asked the list
and have no reply to date.

What I did was to re-install the turbine code from
the tar and reload a new jetspeed from the war.

This made the problem go away for me.  I never found
out why the DB was damaged.   The code does not check
for a key of null returned from the DB query.  So I
have to assume that the DB returned null for that account
and the code passed it on to the e-mail..

e.m.g.


Dave Carlson wrote:

The confirmation email for new accounts is working, but the email contains
a secret key "null".  If I look in the user database and get the actual
secret key value, then I can confirm successfully.  Does anyone else have
this problem?

Thanks!
   Dave


Tate Jones wrote:

> We are running Jetspeed (current cvs) with Postgresql.  Have applied the
> fixes for Postgresql.   When a confirmation email is sent it contains NULL
> for the secret key and next action.
>
> Welcome to Jetspeed
>
> Your new account has been created.
>
> Your secret key is:
>
> null
>
> You can go to the following URL to confirm your account:
>
>
<http://kildall:8081/jetspeed/portal/screen/ConfirmRegistration/username/102
1612/secretkey/null/nextscreen/null>
>
>> can anyone make sense of this?
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org


AW: Confirmation Email not correct

Posted by Jochen Berger <jo...@t-systems.de>.
Hi there,

I suggest to check the table TURBINE_ROLE if it contains an entry for the
role 'authenticated_user'.


J. Berger

-----Ursprüngliche Nachricht-----
Von: Edward M. Goldberg [mailto:emg@EdwardMGoldberg.com]
Gesendet: Donnerstag, 5. April 2001 08:04
An: jetspeed-user@jakarta.apache.org
Betreff: Re: Confirmation Email not correct


This question has now been asked three times with
no reply.  Join the club...

e.m.g.



------- snip ------

I had the same problem a while back.  I asked the list
and have no reply to date.

What I did was to re-install the turbine code from
the tar and reload a new jetspeed from the war.

This made the problem go away for me.  I never found
out why the DB was damaged.   The code does not check
for a key of null returned from the DB query.  So I
have to assume that the DB returned null for that account
and the code passed it on to the e-mail..

e.m.g.


Dave Carlson wrote:

The confirmation email for new accounts is working, but the email contains
a secret key "null".  If I look in the user database and get the actual
secret key value, then I can confirm successfully.  Does anyone else have
this problem?

Thanks!
   Dave


Tate Jones wrote:

> We are running Jetspeed (current cvs) with Postgresql.  Have applied the
> fixes for Postgresql.   When a confirmation email is sent it contains NULL
> for the secret key and next action.
>
> Welcome to Jetspeed
>
> Your new account has been created.
>
> Your secret key is:
>
> null
>
> You can go to the following URL to confirm your account:
>
>
<http://kildall:8081/jetspeed/portal/screen/ConfirmRegistration/username/102
1612/secretkey/null/nextscreen/null>
>
>> can anyone make sense of this?
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org


Re: Confirmation Email not correct

Posted by "Edward M. Goldberg" <em...@EdwardMGoldberg.com>.
This question has now been asked three times with
no reply.  Join the club...

e.m.g.



------- snip ------

I had the same problem a while back.  I asked the list
and have no reply to date.

What I did was to re-install the turbine code from
the tar and reload a new jetspeed from the war.

This made the problem go away for me.  I never found
out why the DB was damaged.   The code does not check
for a key of null returned from the DB query.  So I
have to assume that the DB returned null for that account
and the code passed it on to the e-mail..

e.m.g.


Dave Carlson wrote:

The confirmation email for new accounts is working, but the email contains
a secret key "null".  If I look in the user database and get the actual
secret key value, then I can confirm successfully.  Does anyone else have
this problem?

Thanks!
   Dave


Tate Jones wrote:

> We are running Jetspeed (current cvs) with Postgresql.  Have applied the 
> fixes for Postgresql.   When a confirmation email is sent it contains NULL 
> for the secret key and next action.
> 
> Welcome to Jetspeed
> 
> Your new account has been created.
> 
> Your secret key is:
> 
> null
> 
> You can go to the following URL to confirm your account:
> 
> <http://kildall:8081/jetspeed/portal/screen/ConfirmRegistration/username/1021612/secretkey/null/nextscreen/null>
> 
>> can anyone make sense of this?
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-user-help@jakarta.apache.org