Gossamer Forum
Home : Products : Gossamer Mail : Discussion :

Re: [steger] validationcode does not work ? / version 2.0.5

Quote Reply
Re: [steger] validationcode does not work ? / version 2.0.5 In reply to
Hi,

The "official" fix is to edit admin/GMail/NoAuth/Join.pm and change:

Code:
# Send the validation key
if ($CFG->{join}->{verify_email}) {
GMail::NoAuth::Join->send_key($id->{'userid'}, $cgi) or return;
}
to:

Code:
# Send the validation key
my $p = GT::SQL->prefix;
if ($CFG->{join}->{verify_email}) {
GMail::NoAuth::Join->send_key($id->{$p . 'users.userid'}, $cgi) or return;
}
We'll update Gossamer Mail shortly.

Cheers,

Alex
--
Gossamer Threads Inc.
Subject Author Views Date
Thread validationcode does not work ? / version 2.0.5 steger 3648 Sep 29, 2001, 8:39 AM
Thread Re: [steger] validationcode does not work ? / version 2.0.5
Chaz 3566 Sep 29, 2001, 11:59 AM
Thread Re: [CP] validationcode does not work ? / version 2.0.5
steger 3544 Sep 30, 2001, 1:14 AM
Thread Re: [steger] validationcode does not work ? / version 2.0.5
avery 3520 Oct 1, 2001, 8:38 AM
Thread Re: [avery] validationcode does not work ? / version 2.0.5
Chaz 3536 Oct 1, 2001, 8:42 AM
Thread Re: [CP] validationcode does not work ? / version 2.0.5
avery 3535 Oct 1, 2001, 9:42 AM
Post Re: [avery] validationcode does not work ? / version 2.0.5
Chaz 3504 Oct 1, 2001, 9:50 AM
Post Re: [CP] validationcode does not work ? / version 2.0.5
avery 3509 Oct 1, 2001, 9:47 AM
Post Re: [steger] validationcode does not work ? / version 2.0.5
Alex 3487 Oct 2, 2001, 2:30 PM