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
CommuniMail - subscribe without confirmation
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'.
-
- Posts: 5
- Joined: Aug 09, 2009 5:10 pm
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.
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
-
- Posts: 5
- Joined: Aug 09, 2009 5:10 pm
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 -
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: Select all
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');
}
-
- Posts: 5
- Joined: Aug 09, 2009 5:10 pm
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: Select all
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!