Skip to Content.
Sympa Menu

en - [sympa-users] Re: 6.1b7 auto_signoff link?

Subject: The mailing list for listmasters using Sympa

List archive

Chronological Thread  
  • From: Amos <address@concealed>
  • To: address@concealed
  • Subject: [sympa-users] Re: 6.1b7 auto_signoff link?
  • Date: Tue, 28 Sep 2010 15:09:41 -0500

On Thu, Sep 23, 2010 at 12:56 PM, Amos <address@concealed> wrote:
> I'm trying to set up the HTTP link so that folks can simply click it
> and unsubscribe from a 6.1b7 list as described here
> http://www.sympa.org/manual_6.1/message-handling .  I have the
> following in the footer for a list.

I got it to work. Looks like there's a bit of a typo in wwsympa.fcgi
with passing the list name. I made the following change to
do_auto_signoff and it now works. (The line numbers are not correct
due to other changes to this file.)

@@ -5016,7 +5025,7 @@
my $ticket =
&Auth::create_one_time_ticket($in{'email'},$robot,'signoff/'.$list->{'name'},$ip);

my $tt2_param = {
- 'list' => $list,
+ 'list' => $list->{'name'}, ### XXX ????
'type' => 'ticket_to_signoff',
'one_time_ticket' => $ticket,
'email' => $in{'email'},
@@ -5030,7 +5039,7 @@
}else{
return 'home';
}
- $param->{'signing_off_email'} = $in {'email'};
+ $param->{'signing_off_email'} = $in{'email'};
## If OK, return the page displaying the informations to the user.
return 1;




Archive powered by MHonArc 2.6.19+.

Top of Page