CommuniMail - subscribe without confirmation

Message
Author
Buyaphoto
Posts: 7
Joined: Jul 01, 2008 3:58 am

subscribe without confirmation

#1 Postby Buyaphoto » Nov 18, 2008 7:00 am

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

admin
Site Admin
Posts: 1839
Joined: Mar 22, 2006 12:32 pm

Re: subscribe without confirmation

#2 Postby admin » Nov 18, 2008 9:36 am

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'.

Digital Entertainment
Posts: 5
Joined: Aug 09, 2009 5:10 pm

Re: subscribe without confirmation

#3 Postby Digital Entertainment » Aug 09, 2009 5:23 pm

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.

admin
Site Admin
Posts: 1839
Joined: Mar 22, 2006 12:32 pm

Re: subscribe without confirmation

#4 Postby admin » Aug 11, 2009 4:41 am

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

Digital Entertainment
Posts: 5
Joined: Aug 09, 2009 5:10 pm

Re: subscribe without confirmation

#5 Postby Digital Entertainment » Aug 11, 2009 4:48 am

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 -

admin
Site Admin
Posts: 1839
Joined: Mar 22, 2006 12:32 pm

Re: subscribe without confirmation

#6 Postby admin » Aug 11, 2009 4:52 am

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');
      }

Digital Entertainment
Posts: 5
Joined: Aug 09, 2009 5:10 pm

Re: subscribe without confirmation

#7 Postby Digital Entertainment » Aug 11, 2009 5:01 am

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!