| View previous topic :: View next topic |
| Author |
Message |
Buyaphoto
Joined: 01 Jul 2008 Posts: 7
|
Posted: Nov 18, 2008 7:00 am Post subject: subscribe without confirmation |
|
|
Hi
I have set up my first signup form and it is sending out an email requesting confirmation. How do I set it up so that confirmation is not needed?
Thanks
Dean |
|
| Back to top |
|
 |
admin Site Admin

Joined: 22 Mar 2006 Posts: 1287
|
Posted: Nov 18, 2008 9:36 am Post subject: Re: subscribe without confirmation |
|
|
| Buyaphoto wrote: | Hi
I have set up my first signup form and it is sending out an email requesting confirmation. How do I set it up so that confirmation is not needed?
Thanks
Dean |
In signup.cgi on line 144 you need to change 'OFF' to 'ON'. |
|
| Back to top |
|
 |
Digital Entertainment
Joined: 09 Aug 2009 Posts: 5 Location: USA
|
Posted: Aug 09, 2009 5:23 pm Post subject: Re: subscribe without confirmation |
|
|
| admin wrote: | | Buyaphoto wrote: | Hi
I have set up my first signup form and it is sending out an email requesting confirmation. How do I set it up so that confirmation is not needed?
Thanks
Dean |
In signup.cgi on line 144 you need to change 'OFF' to 'ON'. |
I'm not seeing anything for line 144, nor do I see anything around that line that would allow me to change 'OFF' to 'ON'... Please assist, thanks. |
|
| Back to top |
|
 |
admin Site Admin

Joined: 22 Mar 2006 Posts: 1287
|
Posted: Aug 11, 2009 4:41 am Post subject: Re: subscribe without confirmation |
|
|
| Digital Entertainment wrote: |
I'm not seeing anything for line 144, nor do I see anything around that line that would allow me to change 'OFF' to 'ON'... Please assist, thanks. |
Hello,
in signup.cgi find line 114:
my $l2c = $c->addL2CLinks($id, $list, 'OFF' );
replace with following:
my $l2c = $c->addL2CLinks($id, $list, 'ON' );
That should help.
Thanks |
|
| Back to top |
|
 |
Digital Entertainment
Joined: 09 Aug 2009 Posts: 5 Location: USA
|
Posted: Aug 11, 2009 4:48 am Post subject: Re: subscribe without confirmation |
|
|
| admin wrote: | | Digital Entertainment wrote: |
I'm not seeing anything for line 144, nor do I see anything around that line that would allow me to change 'OFF' to 'ON'... Please assist, thanks. |
Hello,
in signup.cgi find line 114:
my $l2c = $c->addL2CLinks($id, $list, 'OFF' );
replace with following:
my $l2c = $c->addL2CLinks($id, $list, 'ON' );
That should help.
Thanks |
It was line 110 on my end: I just did that and I'm still getting:
Subscription Confirmation
Please click the link below to activate your subscription to the list mysite.com
- Activate subscription - |
|
| Back to top |
|
 |
admin Site Admin

Joined: 22 Mar 2006 Posts: 1287
|
Posted: Aug 11, 2009 4:52 am Post subject: Re: subscribe without confirmation |
|
|
| Digital Entertainment wrote: |
Just did that and I'm still getting:
Subscription Confirmation
Please click the link below to activate your subscription to the list mysite.com
- Activate subscription - |
Yes, you still getting confirmations (however, accounts already confirmed).
In order to turn off confirmations, in signup.cgi on line 132, comment with # or completely remove this code:
| Code: |
if ($CFG{ sendmail_type } eq 'unix' ) {
&sendmail_unix($$contact{ EMAIL }, $CFG{'admin_email'},$CFG{'admin_email'}, "Confirm your subscription for list ".$$curr_list{TITLE},$ft->output(),'','0');
}else {
&sendmail_perl($$contact{ EMAIL }, $CFG{'admin_email'},$CFG{'admin_email'}, "Confirm your subscription for list ".$$curr_list{TITLE},$ft->output(),'','0');
}
|
|
|
| Back to top |
|
 |
Digital Entertainment
Joined: 09 Aug 2009 Posts: 5 Location: USA
|
Posted: Aug 11, 2009 5:01 am Post subject: Re: subscribe without confirmation |
|
|
| admin wrote: | | Digital Entertainment wrote: |
Just did that and I'm still getting:
Subscription Confirmation
Please click the link below to activate your subscription to the list mysite.com
- Activate subscription - |
Yes, you still getting confirmations (however, accounts already confirmed).
In order to turn off confirmations, in signup.cgi on line 132, comment with # or completely remove this code:
| Code: |
if ($CFG{ sendmail_type } eq 'unix' ) {
&sendmail_unix($$contact{ EMAIL }, $CFG{'admin_email'},$CFG{'admin_email'}, "Confirm your subscription for list ".$$curr_list{TITLE},$ft->output(),'','0');
}else {
&sendmail_perl($$contact{ EMAIL }, $CFG{'admin_email'},$CFG{'admin_email'}, "Confirm your subscription for list ".$$curr_list{TITLE},$ft->output(),'','0');
}
|
|
Cool, that did the job... Thanks much! |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|