about summary refs log tree commit homepage
path: root/lib/PublicInbox/NNTP.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/NNTP.pm')
-rw-r--r--lib/PublicInbox/NNTP.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/PublicInbox/NNTP.pm b/lib/PublicInbox/NNTP.pm
index cdbd8e98..cbd4ecf1 100644
--- a/lib/PublicInbox/NNTP.pm
+++ b/lib/PublicInbox/NNTP.pm
@@ -94,7 +94,7 @@ sub new ($$$) {
         my $self = fields::new($class);
         $self->SUPER::new($sock);
         $self->{nntpd} = $nntpd;
-        res($self, '201 server ready - post via email');
+        res($self, '201 ' . $nntpd->{servername} . ' ready - post via email');
         $self->{rbuf} = '';
         $self->watch_read(1);
         update_idle_time($self);
@@ -410,7 +410,7 @@ sub header_append ($$$) {
 
 sub xref ($$$$) {
         my ($self, $ng, $n, $mid) = @_;
-        my $ret = "$ng->{domain} $ng->{newsgroup}:$n";
+        my $ret = $self->{nntpd}->{servername} . " $ng->{newsgroup}:$n";
 
         # num_for is pretty cheap and sometimes we'll lookup the existence
         # of an article without getting even the OVER info.  In other words,