svn commit: r50835 - head/en_US.ISO8859-1/htdocs/cgi

Wolfram Schneider wosch at FreeBSD.org
Thu Sep 14 11:56:12 UTC 2017


Author: wosch
Date: Thu Sep 14 11:56:10 2017
New Revision: 50835
URL: https://svnweb.freebsd.org/changeset/doc/50835

Log:
  support more mailing list prefixes
  
  PR: 170053

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

Modified: head/en_US.ISO8859-1/htdocs/cgi/mailindex.cgi
==============================================================================
--- head/en_US.ISO8859-1/htdocs/cgi/mailindex.cgi	Thu Sep 14 11:38:14 2017	(r50834)
+++ head/en_US.ISO8859-1/htdocs/cgi/mailindex.cgi	Thu Sep 14 11:56:10 2017	(r50835)
@@ -84,7 +84,7 @@ sub file_not_exists {
 if ($file =~ s%^archive/%%) {
     $maildir = '/usr/local/www/mailindex/archive';
     &file_not_exists("$maildir/$file") if (! -f "$maildir/$file");
-} elsif ($file =~ s%^current/%% && $file =~ /^freebsd-|^cvs-/) {
+} elsif ($file =~ s%^current/%% && $file =~ /^(freebsd|cvs|svn|ctm|trustedbsd)-/) {
     &file_not_exists("$file") if (! -f "$maildir/$file");
     $up = 0;
 } else {


More information about the svn-doc-head mailing list