From: Eric Wong Date: Mon, 20 Jun 2016 00:57:14 +0000 (+0000) Subject: mbox: remove feed dependency X-Git-Tag: v1.0.0~399 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=1e2f280d973dd0a744d134368fa9fbfbb6aab161 mbox: remove feed dependency We do not need feed options there (or anywhere, hopefully). --- diff --git a/lib/PublicInbox/Mbox.pm b/lib/PublicInbox/Mbox.pm index 79348766..1c792c89 100644 --- a/lib/PublicInbox/Mbox.pm +++ b/lib/PublicInbox/Mbox.pm @@ -32,19 +32,14 @@ sub emit_msg { foreach my $d (qw(Lines Bytes Content-Length Status)) { $header_obj->header_set($d); } - my $feed_opts = $ctx->{feed_opts}; - unless ($feed_opts) { - require PublicInbox::Feed; # FIXME: gross - $feed_opts = PublicInbox::Feed::get_feedopts($ctx); - $ctx->{feed_opts} = $feed_opts; - } - my $base = $feed_opts->{url}; + my $ibx = $ctx->{-inbox}; + my $base = $ibx->base_url($ctx->{cgi}); my $mid = mid_clean($header_obj->header('Message-ID')); $mid = uri_escape_utf8($mid); my @append = ( 'Archived-At', "<$base$mid/>", 'List-Archive', "<$base>", - 'List-Post', "{id_addr}>", + 'List-Post', "{-primary_address}>", ); my $append = ''; my $crlf = $simple->crlf;