]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Unsubscribe.pm
rename {pi_config} fields to {pi_cfg}
[public-inbox.git] / lib / PublicInbox / Unsubscribe.pm
index 79234aa170aeb20a6cae3b5eff03b4e7d475cae7..b0d3220c3b51f6b80ee80dcffedc401ac282510c 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2016 all contributors <meta@public-inbox.org>
+# Copyright (C) 2016-2020 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 #
 # Standalone PSGI app to handle HTTP(s) unsubscribe links generated
@@ -12,7 +12,7 @@ use warnings;
 use Crypt::CBC;
 use Plack::Util;
 use MIME::Base64 qw(decode_base64url);
-my $CODE_URL = 'git://80x24.org/public-inbox.git';
+my $CODE_URL = 'https://public-inbox.org/public-inbox.git';
 my @CT_HTML = ('Content-Type', 'text/html; charset=UTF-8');
 
 sub new {
@@ -39,7 +39,7 @@ sub new {
                die "`unsubscribe' callback not given\n";
 
        bless {
-               pi_config => $opt{pi_config}, # PublicInbox::Config
+               pi_cfg => $opt{pi_config}, # PublicInbox::Config
                owner_email => $opt{owner_email},
                cipher => $cipher,
                unsubscribe => $unsubscribe,
@@ -136,7 +136,7 @@ sub r {
        my ($self, $code, $title, @body) = @_;
        [ $code, [ @CT_HTML ], [
                "<html><head><title>$title</title></head><body><pre>".
-               join("\n", "<b>$title</b>\n", @body) . '</pre><hr />'.
+               join("\n", "<b>$title</b>\n", @body) . '</pre><hr>'.
                "<pre>This page is available under AGPL-3.0+\n" .
                "git clone $self->{code_url}\n" .
                qq(Email $self->{contact} if you have any questions).
@@ -149,11 +149,11 @@ sub archive_info {
        my $archive_url = $self->{archive_urls}->{$list_addr};
 
        unless ($archive_url) {
-               if (my $config = $self->{pi_config}) {
+               if (my $cfg = $self->{pi_cfg}) {
                        # PublicInbox::Config::lookup
-                       my $inbox = $config->lookup($list_addr);
+                       my $ibx = $cfg->lookup($list_addr);
                        # PublicInbox::Inbox::base_url
-                       $archive_url = $inbox->base_url if $inbox;
+                       $archive_url = $ibx->base_url if $ibx;
                }
        }