Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 31 May 2019 15:11:48 +0000 (UTC)
From:      Allan Jude <allanjude@FreeBSD.org>
To:        doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org
Subject:   svn commit: r53087 - head/en_US.ISO8859-1/htdocs/cgi
Message-ID:  <201905311511.x4VFBmta085092@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: allanjude
Date: Fri May 31 15:11:48 2019
New Revision: 53087
URL: https://svnweb.freebsd.org/changeset/doc/53087

Log:
  man.cgi: Disable downloading man page archives due to abuse
  
  Hat:	clusteradm

Modified:
  head/en_US.ISO8859-1/htdocs/cgi/man.cgi

Modified: head/en_US.ISO8859-1/htdocs/cgi/man.cgi
==============================================================================
--- head/en_US.ISO8859-1/htdocs/cgi/man.cgi	Fri May 31 11:32:12 2019	(r53086)
+++ head/en_US.ISO8859-1/htdocs/cgi/man.cgi	Fri May 31 15:11:48 2019	(r53087)
@@ -1184,6 +1184,10 @@ sub get_the_sources {
 # download a manual directory as gzip'd tar archive
 sub download {
 
+    # 2019-05-31: allanjude: Disable downloading as it is being abused.
+    print qq{Status: 418 No Downloads For You\n\n};
+    exit(0);
+
     $| = 1;
     my $filename = $manpath;
     $filename =~ s/\s+/_/;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905311511.x4VFBmta085092>