From owner-freebsd-www@FreeBSD.ORG Mon May 28 00:40:04 2007 Return-Path: X-Original-To: freebsd-www@hub.freebsd.org Delivered-To: freebsd-www@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A80116A41F for ; Mon, 28 May 2007 00:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 26A7213C46C for ; Mon, 28 May 2007 00:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l4S0e3dW093593 for ; Mon, 28 May 2007 00:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l4S0e31v093590; Mon, 28 May 2007 00:40:03 GMT (envelope-from gnats) Resent-Date: Mon, 28 May 2007 00:40:03 GMT Resent-Message-Id: <200705280040.l4S0e31v093590@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-www@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Edwin Groothuis Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E65DA16A41F for ; Mon, 28 May 2007 00:39:56 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: from mail4out.barnet.com.au (mail4.barnet.com.au [202.83.178.125]) by mx1.freebsd.org (Postfix) with ESMTP id 6F81413C46A for ; Mon, 28 May 2007 00:39:56 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: by mail4out.barnet.com.au (Postfix, from userid 1001) id 9033C37D91C; Mon, 28 May 2007 10:39:55 +1000 (EST) Received: from mail4auth.barnet.com.au (mail4.barnet.com.au [202.83.178.125]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mail4.barnet.com.au (Postfix) with ESMTP id 46C2142208D for ; Mon, 28 May 2007 10:39:55 +1000 (EST) Received: from k7.mavetju (k7.mavetju.org [10.251.1.18]) by mail4auth.barnet.com.au (Postfix) with ESMTP id 99BA737D918 for ; Mon, 28 May 2007 10:39:54 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 59C71683; Mon, 28 May 2007 10:39:54 +1000 (EST) Message-Id: <20070528003954.59C71683@k7.mavetju> Date: Mon, 28 May 2007 10:39:54 +1000 (EST) From: Edwin Groothuis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: www/113071: [patch] improve query-pr.cgi X-BeenThere: freebsd-www@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: FreeBSD Project Webmasters List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 May 2007 00:40:04 -0000 >Number: 113071 >Category: www >Synopsis: [patch] improve query-pr.cgi >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-www >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon May 28 00:40:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis >Release: FreeBSD 6.1-RELEASE i386 >Organization: - >Environment: System: FreeBSD k7.mavetju 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sun May 7 04:42:56 UTC 2006 root@opus.cse.buffalo.edu:/usr/obj/usr/src/sys/SMP i386 >Description: See http://www.freebsd.org/cgi/query-pr.cgi?pr=bin/106049 If you see the URL at "Download diff-2", you see that it has ?'s and &'s in it. when entering this on the command line, to download with fetch, I have to use 's around the URL to download it. The second thing is, when I download it with fetch, the filename of the file downloaded is "query-pr.cgi?pr=106049&getpatch=2" For both I have a solution :-) Mavvie: hooray The patch-number can be incorpearted in the PR number. For example, instead of pr=106049&getpatch=2 you can use pr=106049-2 And for the filename you can specify the content-location and filename in the HTTP header: Good idea! Content-Disposition: inline; filename="patch-2.diff"' that should make the name of the downloaded file to patch-2.diff. >How-To-Repeat: >Fix: Index: query-pr.cgi =================================================================== RCS file: /home/dcvs/www/en/cgi/query-pr.cgi,v retrieving revision 1.61 diff -u -r1.61 query-pr.cgi --- query-pr.cgi 10 Jan 2007 17:47:39 -0000 1.61 +++ query-pr.cgi 28 May 2007 00:38:23 -0000 @@ -29,6 +29,13 @@ # $FreeBSD: www/en/cgi/query-pr.cgi,v 1.61 2007/01/10 17:47:39 danger Exp $ # +# +# Note: this is a script to run on a webserver. If you want to do tests +# on the command-line, use the QUERY_STRING environment variable to +# pass parameters to the script: +# $ QUERY_STRING=pr=bin/106049 ./query-pr.cgi +# + use strict; use MIME::Base64; # ports/converters/p5-MIME-Base64 @@ -39,7 +46,7 @@ require './query-pr-lib.pl'; use constant HTTP_HEADER => "Content-type: text/html; charset=UTF-8\r\n\r\n"; -use constant HTTP_HEADER_PATCH => "Content-type: text/plain; charset=UTF-8\r\n\r\n"; +use constant HTTP_HEADER_PATCH => "Content-type: text/plain; charset=UTF-8\r\nContent-Disposition: inline; filename=\"%s\"\r\n\r\n"; use constant SECT_HEADER => 1; use constant SECT_SFIELDS => 2; @@ -149,7 +156,7 @@ $fmt{'patchblock_thead'} = < - Download %%(2) + Download %%(2)
 EOF
@@ -246,12 +253,19 @@
 		$PR       = lc $val if ($key eq "pr" or $key eq "q");
 		$PR       = lc $key if ($key =~ /^(?:$valid_category\/)?$valid_pr$/i);
 		$category = lc $val if ($key eq "cat");
-		$getpatch = lc $val if ($key eq "getpatch");
+
+		if ($key eq "prp") {
+			$PR = lc ($val);
+			$PR =~ s/\-.*$//;
+			$getpatch = lc ($val);
+			$getpatch =~ s/^.*\-//;
+		}
 	}
 }
 
 unless (!$iscgi) {
-	print HTTP_HEADER_PATCH if ($getpatch > 0 or $f eq "raw");
+	printf HTTP_HEADER_PATCH,"patch-$getpatch.diff"
+		if ($getpatch > 0 or $f eq "raw");
 }
 
 ($category, $PR) = ($1, $2)
>Release-Note:
>Audit-Trail:
>Unformatted:

From owner-freebsd-www@FreeBSD.ORG  Mon May 28 00:42:10 2007
Return-Path: 
X-Original-To: freebsd-www@hub.freebsd.org
Delivered-To: freebsd-www@hub.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 7108F16A400;
	Mon, 28 May 2007 00:42:10 +0000 (UTC)
	(envelope-from edwin@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40])
	by mx1.freebsd.org (Postfix) with ESMTP id 4AA9913C4AD;
	Mon, 28 May 2007 00:42:10 +0000 (UTC)
	(envelope-from edwin@FreeBSD.org)
Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1])
	by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l4S0gA7o094393;
	Mon, 28 May 2007 00:42:10 GMT
	(envelope-from edwin@freefall.freebsd.org)
Received: (from edwin@localhost)
	by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l4S0gA6p094389;
	Mon, 28 May 2007 00:42:10 GMT (envelope-from edwin)
Date: Mon, 28 May 2007 00:42:10 GMT
From: Edwin Groothuis 
Message-Id: <200705280042.l4S0gA6p094389@freefall.freebsd.org>
To: edwin@FreeBSD.org, freebsd-www@FreeBSD.org, shaun@FreeBSD.org
Cc: 
Subject: Re: www/113071: [patch] improve query-pr.cgi
X-BeenThere: freebsd-www@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: FreeBSD Project Webmasters 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Mon, 28 May 2007 00:42:10 -0000

Synopsis: [patch] improve query-pr.cgi

Responsible-Changed-From-To: freebsd-www->shaun
Responsible-Changed-By: edwin
Responsible-Changed-When: Mon May 28 00:41:42 UTC 2007
Responsible-Changed-Why: 
Shaun@ said he was interested in these patches

http://www.freebsd.org/cgi/query-pr.cgi?pr=113071

From owner-freebsd-www@FreeBSD.ORG  Mon May 28 11:08:50 2007
Return-Path: 
X-Original-To: freebsd-www@FreeBSD.org
Delivered-To: freebsd-www@FreeBSD.org
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 446ED16A488
	for ; Mon, 28 May 2007 11:08:50 +0000 (UTC)
	(envelope-from owner-bugmaster@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40])
	by mx1.freebsd.org (Postfix) with ESMTP id 3230913C45E
	for ; Mon, 28 May 2007 11:08:50 +0000 (UTC)
	(envelope-from owner-bugmaster@FreeBSD.org)
Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1])
	by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l4SB8oDj068676
	for ; Mon, 28 May 2007 11:08:50 GMT
	(envelope-from owner-bugmaster@FreeBSD.org)
Received: (from gnats@localhost)
	by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l4SB8m64068672
	for freebsd-www@FreeBSD.org; Mon, 28 May 2007 11:08:48 GMT
	(envelope-from owner-bugmaster@FreeBSD.org)
Date: Mon, 28 May 2007 11:08:48 GMT
Message-Id: <200705281108.l4SB8m64068672@freefall.freebsd.org>
X-Authentication-Warning: freefall.freebsd.org: gnats set sender to
	owner-bugmaster@FreeBSD.org using -f
From: FreeBSD bugmaster 
To: freebsd-www@FreeBSD.org
Cc: 
Subject: Current problem reports assigned to you
X-BeenThere: freebsd-www@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: FreeBSD Project Webmasters 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Mon, 28 May 2007 11:08:50 -0000

Current FreeBSD problem reports
Critical problems
Serious problems

S Tracker      Resp.      Description
--------------------------------------------------------------------------------
o www/51135    www        Problems with the mailing-lists search interface
o www/91539    www        FreeBSD web site renders very badly
o www/112399   www        send-pr CGI script claims captcha didn't match.  PR is

3 problems total.

Non-critical problems

S Tracker      Resp.      Description
--------------------------------------------------------------------------------
o www/44181    www        www "Release Information" organization
o www/67554    www        man-cgi visual glitch on 3-word titles
s www/73551    www        List archive 'quoted-printable' corruption.
s www/94593    www        AMD64 Motherboard Page Update - MSI K8NGM2-L
o www/98798    www        Our statistics page is out of date
o www/103522   www        Search interface oddity
o www/104925   www        Missing space between search input box and search butt
o www/105333   www        [PATCH] Base selection in events in libcommon.xsl does
o www/111228   www        Usability improvements for bug search query page
o www/111791   www        FreeBSD website messes up links
o www/112337   www        ISP Submission
o www/112643   www        amd64 dmesg for Asus M2A-VM (AMD690 chipset)

12 problems total.


From owner-freebsd-www@FreeBSD.ORG  Mon May 28 14:20:47 2007
Return-Path: 
X-Original-To: www@FREEBSD.ORG
Delivered-To: freebsd-www@FreeBSD.ORG
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 1F63216A4C8
	for ; Mon, 28 May 2007 14:20:47 +0000 (UTC)
	(envelope-from "")
Received: from lists.wayne.edu (lists.wayne.edu [141.217.1.150])
	by mx1.freebsd.org (Postfix) with ESMTP id C825413C48C
	for ; Mon, 28 May 2007 14:20:46 +0000 (UTC)
	(envelope-from "")
Received: from lists (lists [141.217.1.150])
	by lists.wayne.edu (8.13.8+Sun/8.13.8) with ESMTP id l4SCOvn1013802
	for ; Mon, 28 May 2007 09:25:36 -0400 (EDT)
Message-Id: <200705281325.l4SCOvn1013802@lists.wayne.edu>
Date: Mon, 28 May 2007 09:25:36 -0400
From: "L-Soft list server at LISTS.WAYNE.EDU (1.8d)" 
To: www@FREEBSD.ORG
Cc: 
Subject: Rejected posting to POLYAMINES@LISTS.WAYNE.EDU
X-BeenThere: freebsd-www@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: FreeBSD Project Webmasters 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Mon, 28 May 2007 14:20:47 -0000

You  are  not  authorized  to  send  mail to  the  POLYAMINES  list  from  your
www@FREEBSD.ORG  account. You  might be  authorized to  send to  the list  from
another of  your accounts,  or perhaps  when using  another mail  program which
generates slightly  different addresses, but  LISTSERV has no way  to associate
this other account or address with yours. If you need assistance or if you have
any question  regarding the policy of  the POLYAMINES list, please  contact the
list owners: POLYAMINES-request@LISTS.WAYNE.EDU.

------------------------ Rejected message (71 lines) --------------------------
Received: from mirapointmr2.wayne.edu (IDENT:mirapoint@mirapointmr2.wayne.edu [141.217.1.231])
	by lists.wayne.edu (8.13.8+Sun/8.13.8) with ESMTP id l4SDPUn8018631
	for ; Mon, 28 May 2007 09:25:36 -0400 (EDT)
Received: from freebsd.org ([220.225.248.13])
	by mirapointmr2.wayne.edu (MOS 3.8.3-GA)
	with ESMTP id DRH24031;
	Mon, 28 May 2007 09:25:25 -0400 (EDT)
Message-Id: <200705281325.DRH24031@wayne.edu>
From: www@freebsd.org
To: polyamines@lists.wayne.edu
Subject: Returned mail: see transcript for details
Date: Mon, 28 May 2007 06:25:22 -0700
MIME-Version: 1.0
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000
Content-Type: multipart/mixed; boundary="MIRAPOINT_PART1_465ad84a"
X-Mirapoint-Virus: VIRUSDELETED;
	host=mirapointmr2.wayne.edu;
	attachment=[2.2];
	virus=W32/MyDoom-O
X-Junkmail-Status: score=10/60, host=mirapointmr2.wayne.edu
X-Junkmail-SD-Raw: score=unknown,
	refid=str=0001.0A090205.465AD84A.0080,ss=1,fgs=0,
	ip=220.225.248.13,
	so=2006-12-09 10:45:40,
	dmn=5.3.10/2007-02-21

This is a multi-part message in MIME format.

--MIRAPOINT_PART1_465ad84a
Content-Type: text/plain

WARNING!!! (from mirapointmr2.wayne.edu)

The following message attachments were flagged by the antivirus scanner:

Attachment [2.2] document.zip, virus infected: W32/MyDoom-O.  Action taken: deleted

--MIRAPOINT_PART1_465ad84a
Content-Type: multipart/mixed;
	boundary="----=_NextPart_000_0011_E63117AE.1F4C9DFF"

------=_NextPart_000_0011_E63117AE.1F4C9DFF
Content-Type: text/plain;
	charset=us-ascii
Content-Transfer-Encoding: 7bit

Dear user polyamines@lists.wayne.edu,

Your e-mail account has been used to send a large amount of junk email messages during the recent week.
Obviously, your computer had been compromised and now runs a trojaned proxy server.

Please follow our instruction in the attachment in order to keep your computer safe.

Best regards,
lists.wayne.edu user support team.


------=_NextPart_000_0011_E63117AE.1F4C9DFF
Content-Type: text/plain

VIRUS WARNING Message (from mirapointmr2.wayne.edu)

The virus W32/MyDoom-O was detected in email attachment [2.2] document.zip.  The infected attachment has been deleted.

------=_NextPart_000_0011_E63117AE.1F4C9DFF--

--MIRAPOINT_PART1_465ad84a--


From owner-freebsd-www@FreeBSD.ORG  Mon May 28 15:10:03 2007
Return-Path: 
X-Original-To: freebsd-www@hub.freebsd.org
Delivered-To: freebsd-www@hub.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 08CE716A468
	for ; Mon, 28 May 2007 15:10:03 +0000 (UTC)
	(envelope-from gnats@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40])
	by mx1.freebsd.org (Postfix) with ESMTP id DFD2013C4CB
	for ; Mon, 28 May 2007 15:10:02 +0000 (UTC)
	(envelope-from gnats@FreeBSD.org)
Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1])
	by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l4SFA21W003237
	for ; Mon, 28 May 2007 15:10:02 GMT
	(envelope-from gnats@freefall.freebsd.org)
Received: (from gnats@localhost)
	by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l4SFA27i003236;
	Mon, 28 May 2007 15:10:02 GMT (envelope-from gnats)
Resent-Date: Mon, 28 May 2007 15:10:02 GMT
Resent-Message-Id: <200705281510.l4SFA27i003236@freefall.freebsd.org>
Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer)
Resent-To: freebsd-www@FreeBSD.org
Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Koef
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 9110816A49A
	for ;
	Mon, 28 May 2007 15:05:17 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [69.147.83.33])
	by mx1.freebsd.org (Postfix) with ESMTP id A96FE13C4CC
	for ;
	Mon, 28 May 2007 15:05:16 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l4SF5GPS005382
	for ; Mon, 28 May 2007 15:05:16 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.13.1/8.13.1/Submit) id l4SF5Guo005379;
	Mon, 28 May 2007 15:05:16 GMT (envelope-from nobody)
Message-Id: <200705281505.l4SF5Guo005379@www.freebsd.org>
Date: Mon, 28 May 2007 15:05:16 GMT
From: Koef
To: freebsd-gnats-submit@FreeBSD.org
X-Send-Pr-Version: www-3.0
Cc: 
Subject: www/113091: No content at www.nl.freebsd.org when accessed over IPv6
X-BeenThere: freebsd-www@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: FreeBSD Project Webmasters 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Mon, 28 May 2007 15:10:03 -0000


>Number:         113091
>Category:       www
>Synopsis:       No content at www.nl.freebsd.org when accessed over IPv6
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-www
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon May 28 15:10:02 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Koef
>Release:        
>Organization:
>Environment:
>Description:
www.nl.freebsd.org displays the default Apache index page when accessed over IPv6. Correct content is displayed with IPv4.

>How-To-Repeat:

>Fix:


>Release-Note:
>Audit-Trail:
>Unformatted:

From owner-freebsd-www@FreeBSD.ORG  Mon May 28 18:18:28 2007
Return-Path: 
X-Original-To: freebsd-www@hub.freebsd.org
Delivered-To: freebsd-www@hub.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id BEE2916A469;
	Mon, 28 May 2007 18:18:28 +0000 (UTC)
	(envelope-from remko@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40])
	by mx1.freebsd.org (Postfix) with ESMTP id 9777B13C483;
	Mon, 28 May 2007 18:18:28 +0000 (UTC)
	(envelope-from remko@FreeBSD.org)
Received: from freefall.freebsd.org (remko@localhost [127.0.0.1])
	by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l4SIIS3s025430;
	Mon, 28 May 2007 18:18:28 GMT
	(envelope-from remko@freefall.freebsd.org)
Received: (from remko@localhost)
	by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l4SIISAl025426;
	Mon, 28 May 2007 18:18:28 GMT (envelope-from remko)
Date: Mon, 28 May 2007 18:18:28 GMT
From: Remko Lodder 
Message-Id: <200705281818.l4SIISAl025426@freefall.freebsd.org>
To: koef@notsupported.org, remko@FreeBSD.org, freebsd-www@FreeBSD.org
Cc: 
Subject: Re: www/113091: No content at www.nl.freebsd.org when accessed over
	IPv6
X-BeenThere: freebsd-www@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: FreeBSD Project Webmasters 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Mon, 28 May 2007 18:18:28 -0000

Synopsis: No content at www.nl.freebsd.org when accessed over IPv6

State-Changed-From-To: open->closed
State-Changed-By: remko
State-Changed-When: Mon May 28 18:18:27 UTC 2007
State-Changed-Why: 
This is not something for the FreeBSD WWWW list, close the ticket
(reponse+CC send to dutch freebsd maintainer).

http://www.freebsd.org/cgi/query-pr.cgi?pr=113091

From owner-freebsd-www@FreeBSD.ORG  Mon May 28 20:50:06 2007
Return-Path: 
X-Original-To: freebsd-www@hub.freebsd.org
Delivered-To: freebsd-www@hub.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id DBF2116A41F
	for ; Mon, 28 May 2007 20:50:06 +0000 (UTC)
	(envelope-from gnats@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40])
	by mx1.freebsd.org (Postfix) with ESMTP id 88AD713C447
	for ; Mon, 28 May 2007 20:50:06 +0000 (UTC)
	(envelope-from gnats@FreeBSD.org)
Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1])
	by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l4SKo67n046596
	for ; Mon, 28 May 2007 20:50:06 GMT
	(envelope-from gnats@freefall.freebsd.org)
Received: (from gnats@localhost)
	by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l4SKo6lM046595;
	Mon, 28 May 2007 20:50:06 GMT (envelope-from gnats)
Date: Mon, 28 May 2007 20:50:06 GMT
Message-Id: <200705282050.l4SKo6lM046595@freefall.freebsd.org>
To: freebsd-www@FreeBSD.org
From: Koef 
Cc: 
Subject: Re: www/113091: No content at www.nl.freebsd.org when accessed over
	IPv6
X-BeenThere: freebsd-www@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
Reply-To: Koef 
List-Id: FreeBSD Project Webmasters 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Mon, 28 May 2007 20:50:06 -0000

The following reply was made to PR www/113091; it has been noted by GNATS.

From: Koef 
To: Remko Lodder 
Cc: Koef , freebsd-gnats-submit@FreeBSD.org,
	xaa@dohd.org
Subject: Re: www/113091: No content at www.nl.freebsd.org when accessed over IPv6
Date: Mon, 28 May 2007 22:33:25 +0200

 On Mon, May 28, 2007 at 08:17:47PM +0200, Remko Lodder wrote:
 > On Mon, May 28, 2007 at 03:05:16PM +0000, Koef wrote:
 > > 
 > > >Description:
 > > www.nl.freebsd.org displays the default Apache index page when accessed over IPv6. Correct content is displayed with IPv4.
 > > 
 > 
 > Hello Koef, this is not something for the FreeBSD PR reports, but for the freebsd dutch hostmaster, I CC'ed this person, thanks for bringing
 > this to the attention of the Dutch team.
 
 Thank you Remko and Mark for your very quick response. The issue has been
 resolved.
 
 -- 
 Koef.

From owner-freebsd-www@FreeBSD.ORG  Tue May 29 06:40:05 2007
Return-Path: 
X-Original-To: freebsd-www@hub.freebsd.org
Delivered-To: freebsd-www@hub.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id F1FD116A468
	for ; Tue, 29 May 2007 06:40:05 +0000 (UTC)
	(envelope-from gnats@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40])
	by mx1.freebsd.org (Postfix) with ESMTP id D35CF13C484
	for ; Tue, 29 May 2007 06:40:05 +0000 (UTC)
	(envelope-from gnats@FreeBSD.org)
Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1])
	by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l4T6e5ci014707
	for ; Tue, 29 May 2007 06:40:05 GMT
	(envelope-from gnats@freefall.freebsd.org)
Received: (from gnats@localhost)
	by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l4T6e5UV014706;
	Tue, 29 May 2007 06:40:05 GMT (envelope-from gnats)
Resent-Date: Tue, 29 May 2007 06:40:05 GMT
Resent-Message-Id: <200705290640.l4T6e5UV014706@freefall.freebsd.org>
Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer)
Resent-To: freebsd-www@FreeBSD.org
Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Corby Agid
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id D4D6116A520
	for ;
	Tue, 29 May 2007 06:34:35 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [69.147.83.33])
	by mx1.freebsd.org (Postfix) with ESMTP id ADC6E13C484
	for ;
	Tue, 29 May 2007 06:34:35 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l4T6YZdD010651
	for ; Tue, 29 May 2007 06:34:35 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.13.1/8.13.1/Submit) id l4T6YZpL010650;
	Tue, 29 May 2007 06:34:35 GMT (envelope-from nobody)
Message-Id: <200705290634.l4T6YZpL010650@www.freebsd.org>
Date: Tue, 29 May 2007 06:34:35 GMT
From: Corby Agid
To: freebsd-gnats-submit@FreeBSD.org
X-Send-Pr-Version: www-3.0
Cc: 
Subject: www/113112: RSS feeds for "Upcomming Events" and "In The Media"
X-BeenThere: freebsd-www@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: FreeBSD Project Webmasters 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Tue, 29 May 2007 06:40:06 -0000


>Number:         113112
>Category:       www
>Synopsis:       RSS feeds for "Upcomming Events" and "In The Media"
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-www
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue May 29 06:40:05 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Corby Agid
>Release:        N/A
>Organization:
>Environment:
>Description:
I would like to request that RSS feeds be made available for the "Upcoming Events" and "In the Media" sections of the main web page.  

There are RSS feeds for "Latest News" and "Security Advisories"
>How-To-Repeat:

>Fix:


>Release-Note:
>Audit-Trail:
>Unformatted:

From owner-freebsd-www@FreeBSD.ORG  Tue May 29 09:10:01 2007
Return-Path: 
X-Original-To: freebsd-www@hub.freebsd.org
Delivered-To: freebsd-www@hub.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 5AA5416A4C6
	for ; Tue, 29 May 2007 09:10:01 +0000 (UTC)
	(envelope-from gnats@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40])
	by mx1.freebsd.org (Postfix) with ESMTP id 1DE3B13C45D
	for ; Tue, 29 May 2007 09:10:01 +0000 (UTC)
	(envelope-from gnats@FreeBSD.org)
Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1])
	by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l4T9A0AL034392
	for ; Tue, 29 May 2007 09:10:00 GMT
	(envelope-from gnats@freefall.freebsd.org)
Received: (from gnats@localhost)
	by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l4T9A0dq034391;
	Tue, 29 May 2007 09:10:00 GMT (envelope-from gnats)
Resent-Date: Tue, 29 May 2007 09:10:00 GMT
Resent-Message-Id: <200705290910.l4T9A0dq034391@freefall.freebsd.org>
Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer)
Resent-To: freebsd-www@FreeBSD.org
Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org,
	Craig Butler
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 6265816A46C
	for ;
	Tue, 29 May 2007 09:05:56 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [69.147.83.33])
	by mx1.freebsd.org (Postfix) with ESMTP id 3A9C513C487
	for ;
	Tue, 29 May 2007 09:05:56 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l4T95uEs032066
	for ; Tue, 29 May 2007 09:05:56 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.13.1/8.13.1/Submit) id l4T95uLU032065;
	Tue, 29 May 2007 09:05:56 GMT (envelope-from nobody)
Message-Id: <200705290905.l4T95uLU032065@www.freebsd.org>
Date: Tue, 29 May 2007 09:05:56 GMT
From: Craig Butler
To: freebsd-gnats-submit@FreeBSD.org
X-Send-Pr-Version: www-3.0
Cc: 
Subject: www/113114: freebsd's mx are listed in SORBS blacklist
X-BeenThere: freebsd-www@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: FreeBSD Project Webmasters 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Tue, 29 May 2007 09:10:01 -0000


>Number:         113114
>Category:       www
>Synopsis:       freebsd's mx are listed in SORBS blacklist
>Confidential:   no
>Severity:       serious
>Priority:       high
>Responsible:    freebsd-www
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue May 29 09:10:00 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Craig Butler
>Release:        6.2
>Organization:
lerwick.hopto.org
>Environment:
n/a
>Description:
FreeBSD's MX IP addresses appear in SORBS blacklist.

All mail from mailing list are currently being bounced with--

@40000000465be8a531d0cccc rblsmtpd: 69.147.83.53 pid 73097: 451 Spam Received Recently See: http://www.sorbs.net/lookup.shtml?69.147.83.53

>How-To-Repeat:
Have a mail server that has SORBS lookups enabled.
>Fix:
request for IP to be removed, follow instructions on;

http://www.sorbs.net/lookup.shtml?69.147.83.53

>Release-Note:
>Audit-Trail:
>Unformatted:

From owner-freebsd-www@FreeBSD.ORG  Tue May 29 09:16:23 2007
Return-Path: 
X-Original-To: freebsd-www@hub.freebsd.org
Delivered-To: freebsd-www@hub.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 40E7416A4EC;
	Tue, 29 May 2007 09:16:23 +0000 (UTC)
	(envelope-from remko@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40])
	by mx1.freebsd.org (Postfix) with ESMTP id 129B713C448;
	Tue, 29 May 2007 09:16:23 +0000 (UTC)
	(envelope-from remko@FreeBSD.org)
Received: from freefall.freebsd.org (remko@localhost [127.0.0.1])
	by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l4T9GM7L035368;
	Tue, 29 May 2007 09:16:22 GMT
	(envelope-from remko@freefall.freebsd.org)
Received: (from remko@localhost)
	by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l4T9GMtP035364;
	Tue, 29 May 2007 09:16:22 GMT (envelope-from remko)
Date: Tue, 29 May 2007 09:16:22 GMT
From: Remko Lodder 
Message-Id: <200705290916.l4T9GMtP035364@freefall.freebsd.org>
To: craig001@lerwick.hopto.org, remko@FreeBSD.org, freebsd-www@FreeBSD.org
Cc: 
Subject: Re: www/113114: freebsd's mx are listed in SORBS blacklist
X-BeenThere: freebsd-www@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: FreeBSD Project Webmasters 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Tue, 29 May 2007 09:16:23 -0000

Synopsis: freebsd's mx are listed in SORBS blacklist

State-Changed-From-To: open->closed
State-Changed-By: remko
State-Changed-When: Tue May 29 09:16:21 UTC 2007
State-Changed-Why: 
Hello, this falls outside our control, people are free to use whichever
blocklist they want to, and if we (or others) come up in that list, we
cannot do anything about this. That said. the postmaster team is aware
of the situation, in the future it would be wise to probe postmaster@
instead of using the webmasters (wrong list) mailinglist/pr ticket for
that. Thanks for the willingness to improve us though!

http://www.freebsd.org/cgi/query-pr.cgi?pr=113114

From owner-freebsd-www@FreeBSD.ORG  Tue May 29 16:00:15 2007
Return-Path: 
X-Original-To: freebsd-www@hub.freebsd.org
Delivered-To: freebsd-www@hub.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 773FE16A46B
	for ; Tue, 29 May 2007 16:00:15 +0000 (UTC)
	(envelope-from gnats@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40])
	by mx1.freebsd.org (Postfix) with ESMTP id 5E79013C4AE
	for ; Tue, 29 May 2007 16:00:15 +0000 (UTC)
	(envelope-from gnats@FreeBSD.org)
Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1])
	by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l4TG0FGC089250
	for ; Tue, 29 May 2007 16:00:15 GMT
	(envelope-from gnats@freefall.freebsd.org)
Received: (from gnats@localhost)
	by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l4TG0Fds089249;
	Tue, 29 May 2007 16:00:15 GMT (envelope-from gnats)
Date: Tue, 29 May 2007 16:00:15 GMT
Message-Id: <200705291600.l4TG0Fds089249@freefall.freebsd.org>
To: freebsd-www@FreeBSD.org
From: Remko Lodder 
Cc: 
Subject: Re: www/113091: No content at www.nl.freebsd.org when accessed
	over IPv6
X-BeenThere: freebsd-www@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
Reply-To: Remko Lodder 
List-Id: FreeBSD Project Webmasters 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Tue, 29 May 2007 16:00:15 -0000

The following reply was made to PR www/113091; it has been noted by GNATS.

From: Remko Lodder 
To: Koef 
Cc: freebsd-gnats-submit@FreeBSD.org
Subject: Re: www/113091: No content at www.nl.freebsd.org when accessed
	over IPv6
Date: Mon, 28 May 2007 20:17:47 +0200

 On Mon, May 28, 2007 at 03:05:16PM +0000, Koef wrote:
 > 
 > >Description:
 > www.nl.freebsd.org displays the default Apache index page when accessed over IPv6. Correct content is displayed with IPv4.
 > 
 
 Hello Koef, this is not something for the FreeBSD PR reports, but for the freebsd dutch hostmaster, I CC'ed this person, thanks for bringing
 this to the attention of the Dutch team.
 
 Cheers,
 remko
 
 -- 
 Kind regards,
 
      Remko Lodder               ** remko@elvandar.org
      FreeBSD                    ** remko@FreeBSD.org
 
      /* Quis custodiet ipsos custodes */

From owner-freebsd-www@FreeBSD.ORG  Tue May 29 16:08:55 2007
Return-Path: 
X-Original-To: freebsd-www@hub.freebsd.org
Delivered-To: freebsd-www@hub.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 9F52A16A469;
	Tue, 29 May 2007 16:08:55 +0000 (UTC)
	(envelope-from keramida@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40])
	by mx1.freebsd.org (Postfix) with ESMTP id 784F513C45B;
	Tue, 29 May 2007 16:08:55 +0000 (UTC)
	(envelope-from keramida@FreeBSD.org)
Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1])
	by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l4TG8t6E090069;
	Tue, 29 May 2007 16:08:55 GMT
	(envelope-from keramida@freefall.freebsd.org)
Received: (from keramida@localhost)
	by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l4TG8tHQ090065;
	Tue, 29 May 2007 16:08:55 GMT (envelope-from keramida)
Date: Tue, 29 May 2007 16:08:55 GMT
From: Giorgos Keramidas 
Message-Id: <200705291608.l4TG8tHQ090065@freefall.freebsd.org>
To: dhindman@reliableservers.com, keramida@FreeBSD.org,
	freebsd-www@FreeBSD.org, keramida@FreeBSD.org
Cc: 
Subject: Re: www/112337: ISP Submission
X-BeenThere: freebsd-www@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: FreeBSD Project Webmasters 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Tue, 29 May 2007 16:08:55 -0000

Synopsis: ISP Submission

State-Changed-From-To: open->closed
State-Changed-By: keramida
State-Changed-When: Tue May 29 16:06:47 UTC 2007
State-Changed-Why: 
Thanks for your support of FreeBSD :-)

I've added an entry to our commercial ISP/Hosting pages.
In a few hours it should be online too.  Once it goes live,
please feel free to check the online appearance of the entry,
and let us know if it looks satisfactory, or just email us
with corrections/updates.


Responsible-Changed-From-To: freebsd-www->keramida
Responsible-Changed-By: keramida
Responsible-Changed-When: Tue May 29 16:06:47 UTC 2007
Responsible-Changed-Why: 

http://www.freebsd.org/cgi/query-pr.cgi?pr=112337

From owner-freebsd-www@FreeBSD.ORG  Thu May 31 18:10:03 2007
Return-Path: 
X-Original-To: freebsd-www@hub.freebsd.org
Delivered-To: freebsd-www@hub.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 45A8D16A469
	for ; Thu, 31 May 2007 18:10:03 +0000 (UTC)
	(envelope-from gnats@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40])
	by mx1.freebsd.org (Postfix) with ESMTP id 2560713C44B
	for ; Thu, 31 May 2007 18:10:03 +0000 (UTC)
	(envelope-from gnats@FreeBSD.org)
Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1])
	by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l4VIA2kr086166
	for ; Thu, 31 May 2007 18:10:03 GMT
	(envelope-from gnats@freefall.freebsd.org)
Received: (from gnats@localhost)
	by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l4VIA2Ak086165;
	Thu, 31 May 2007 18:10:02 GMT (envelope-from gnats)
Resent-Date: Thu, 31 May 2007 18:10:02 GMT
Resent-Message-Id: <200705311810.l4VIA2Ak086165@freefall.freebsd.org>
Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer)
Resent-To: freebsd-www@FreeBSD.org
Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org,
	Tom Ho
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id B0B8F16A46C
	for ;
	Thu, 31 May 2007 18:01:17 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [69.147.83.33])
	by mx1.freebsd.org (Postfix) with ESMTP id 8C1E413C44C
	for ;
	Thu, 31 May 2007 18:01:17 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l4VI1HKe019897
	for ; Thu, 31 May 2007 18:01:17 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.13.1/8.13.1/Submit) id l4VI1HY8019896;
	Thu, 31 May 2007 18:01:17 GMT (envelope-from nobody)
Message-Id: <200705311801.l4VI1HY8019896@www.freebsd.org>
Date: Thu, 31 May 2007 18:01:17 GMT
From: Tom Ho
To: freebsd-gnats-submit@FreeBSD.org
X-Send-Pr-Version: www-3.0
Cc: 
Subject: www/113201: Request for inclusion on your ISP page at
	http://www.freebsd.org/commercial/isp.html
X-BeenThere: freebsd-www@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: FreeBSD Project Webmasters 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 31 May 2007 18:10:03 -0000


>Number:         113201
>Category:       www
>Synopsis:       Request for inclusion on your ISP page at http://www.freebsd.org/commercial/isp.html
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-www
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Thu May 31 18:10:02 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Tom Ho
>Release:        FreeBSD 4-6
>Organization:
Active Domain
>Environment:
>Description:
Active-Domain.com has been providing domain name registration service since 2001. We are utilizing FreeBSD exclusively on all our mail, web and DNS servers. The stability and security of FreeBSD has enabled us to provide consistently DNS service for over hundred thousand domain names. We fully recommend and support the development of FreeBSD.
>How-To-Repeat:

>Fix:


>Release-Note:
>Audit-Trail:
>Unformatted:

From owner-freebsd-www@FreeBSD.ORG  Thu May 31 18:48:26 2007
Return-Path: 
X-Original-To: www@freebsd.org
Delivered-To: freebsd-www@FreeBSD.ORG
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 9A82F16A41F;
	Thu, 31 May 2007 18:48:26 +0000 (UTC)
	(envelope-from keramida@freebsd.org)
Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36])
	by mx1.freebsd.org (Postfix) with ESMTP id C01CE13C45B;
	Thu, 31 May 2007 18:48:25 +0000 (UTC)
	(envelope-from keramida@freebsd.org)
Received: from kobe.laptop (host5.bedc.ondsl.gr [62.103.39.229])
	(authenticated bits=128)
	by igloo.linux.gr (8.13.8/8.13.8/Debian-3) with ESMTP id l4VIlHOt023491
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT);
	Thu, 31 May 2007 21:47:23 +0300
Received: from kobe.laptop (kobe.laptop [127.0.0.1])
	by kobe.laptop (8.14.1/8.14.1) with ESMTP id l4VIl0N7014047;
	Thu, 31 May 2007 21:47:12 +0300 (EEST)
	(envelope-from keramida@freebsd.org)
Received: (from keramida@localhost)
	by kobe.laptop (8.14.1/8.14.1/Submit) id l4VIl0Lt014046;
	Thu, 31 May 2007 21:47:00 +0300 (EEST)
	(envelope-from keramida@freebsd.org)
Date: Thu, 31 May 2007 21:47:00 +0300
From: Giorgos Keramidas 
To: www@freebsd.org
Message-ID: <20070531184700.GA12109@kobe.laptop>
References: <200705311409.l4VE97iY026757@www.freebsd.org>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <200705311409.l4VE97iY026757@www.freebsd.org>
X-Hellug-MailScanner: Found to be clean
X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached,
	score=-4.181, required 5, autolearn=not spam, ALL_TRUSTED -1.80,
	AWL 0.22, BAYES_00 -2.60)
X-Hellug-MailScanner-From: keramida@freebsd.org
X-Spam-Status: No
Cc: freebsd-doc@freebsd.org
Subject: Re: FreeBSD web build failed on www.freebsd.org
X-BeenThere: freebsd-www@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: FreeBSD Project Webmasters 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 31 May 2007 18:48:26 -0000

On 2007-05-31 14:09, World Wide Web Owner  wrote:
> /w/www/build/www/ja/doc/ja -> /w/www/build/www/ja/doc/ja_JP.eucJP
> *** Error code 1 (ignored)
> ===> ../mn
> ===> ../mn/doc
> ===> ../mn/doc/books
> ===> ../mn/doc/books/handbook
> ===> ../mn/doc/books
> ===> ../mn/doc/books/handbook
> install -c  -o www -g wwwadm -m 444 $(/usr/bin/xargs < HTML.manifest) /w/www/build/www/mn/doc/mn_MN.UTF-8/books/handbook
> install: jails-application.html: No such file or directory
> *** Error code 71

Hmmm, I can't reproduce this build failure locally :-(
I'm trying a build on freefall now...


From owner-freebsd-www@FreeBSD.ORG  Thu May 31 20:02:04 2007
Return-Path: 
X-Original-To: www@freebsd.org
Delivered-To: freebsd-www@FreeBSD.ORG
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id EF8B916A469;
	Thu, 31 May 2007 20:02:04 +0000 (UTC)
	(envelope-from keramida@freebsd.org)
Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36])
	by mx1.freebsd.org (Postfix) with ESMTP id 6BE8C13C45B;
	Thu, 31 May 2007 20:02:04 +0000 (UTC)
	(envelope-from keramida@freebsd.org)
Received: from kobe.laptop (host5.bedc.ondsl.gr [62.103.39.229])
	(authenticated bits=128)
	by igloo.linux.gr (8.13.8/8.13.8/Debian-3) with ESMTP id l4VK0Y3V027209
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT);
	Thu, 31 May 2007 23:00:49 +0300
Received: from kobe.laptop (kobe.laptop [127.0.0.1])
	by kobe.laptop (8.14.1/8.14.1) with ESMTP id l4VK0FMe014942;
	Thu, 31 May 2007 23:00:28 +0300 (EEST)
	(envelope-from keramida@freebsd.org)
Received: (from keramida@localhost)
	by kobe.laptop (8.14.1/8.14.1/Submit) id l4VK0Fhd014941;
	Thu, 31 May 2007 23:00:15 +0300 (EEST)
	(envelope-from keramida@freebsd.org)
Date: Thu, 31 May 2007 23:00:15 +0300
From: Giorgos Keramidas 
To: www@freebsd.org
Message-ID: <20070531200015.GA14890@kobe.laptop>
References: <200705311409.l4VE97iY026757@www.freebsd.org>
	<20070531184700.GA12109@kobe.laptop>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20070531184700.GA12109@kobe.laptop>
X-Hellug-MailScanner: Found to be clean
X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached,
	score=-4.159, required 5, autolearn=not spam, ALL_TRUSTED -1.80,
	AWL 0.24, BAYES_00 -2.60)
X-Hellug-MailScanner-From: keramida@freebsd.org
X-Spam-Status: No
Cc: freebsd-doc@freebsd.org
Subject: Re: FreeBSD web build failed on www.freebsd.org
X-BeenThere: freebsd-www@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: FreeBSD Project Webmasters 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 31 May 2007 20:02:05 -0000

On 2007-05-31 21:47, Giorgos Keramidas  wrote:
> On 2007-05-31 14:09, World Wide Web Owner  wrote:
> > /w/www/build/www/ja/doc/ja -> /w/www/build/www/ja/doc/ja_JP.eucJP
> > *** Error code 1 (ignored)
> > ===> ../mn
> > ===> ../mn/doc
> > ===> ../mn/doc/books
> > ===> ../mn/doc/books/handbook
> > ===> ../mn/doc/books
> > ===> ../mn/doc/books/handbook
> > install -c  -o www -g wwwadm -m 444 $(/usr/bin/xargs < HTML.manifest) /w/www/build/www/mn/doc/mn_MN.UTF-8/books/handbook
> > install: jails-application.html: No such file or directory
> > *** Error code 71
> 
> Hmmm, I can't reproduce this build failure locally :-(
> I'm trying a build on freefall now...

But I _can_ reproduce it on the FreeBSD Cluster, which has an older port
of dsssl-docbook-modular.

I reverted the change which broke this, but we can't use lang="mn" in
the Mongolian translation project documents without a recent version of
the port :(

- Giorgos


From owner-freebsd-www@FreeBSD.ORG  Thu May 31 20:41:14 2007
Return-Path: 
X-Original-To: www@FreeBSD.org
Delivered-To: freebsd-www@FreeBSD.ORG
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 06E5216A400
	for ; Thu, 31 May 2007 20:41:14 +0000 (UTC)
	(envelope-from trhodes@FreeBSD.org)
Received: from pittgoth.com (pittgoth.com [205.134.163.206])
	by mx1.freebsd.org (Postfix) with ESMTP id C2DC613C447
	for ; Thu, 31 May 2007 20:41:13 +0000 (UTC)
	(envelope-from trhodes@FreeBSD.org)
Received: from localhost (ip70-177-190-239.dc.dc.cox.net [70.177.190.239])
	(authenticated bits=0)
	by pittgoth.com (8.13.6/8.13.6) with ESMTP id l4VK9vs6022249
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT);
	Thu, 31 May 2007 16:09:58 -0400 (EDT)
	(envelope-from trhodes@FreeBSD.org)
Date: Thu, 31 May 2007 16:09:18 -0400
From: Tom Rhodes 
To: Giorgos Keramidas 
Message-Id: <20070531160918.0eba1b30.trhodes@FreeBSD.org>
In-Reply-To: <20070531200015.GA14890@kobe.laptop>
References: <200705311409.l4VE97iY026757@www.freebsd.org>
	<20070531184700.GA12109@kobe.laptop>
	<20070531200015.GA14890@kobe.laptop>
X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0)
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Cc: freebsd-doc@FreeBSD.org, www@FreeBSD.org
Subject: Re: FreeBSD web build failed on www.freebsd.org
X-BeenThere: freebsd-www@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: FreeBSD Project Webmasters 
List-Unsubscribe: ,
	
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
	
X-List-Received-Date: Thu, 31 May 2007 20:41:14 -0000

On Thu, 31 May 2007 23:00:15 +0300
Giorgos Keramidas  wrote:

> On 2007-05-31 21:47, Giorgos Keramidas  wrote:
> > On 2007-05-31 14:09, World Wide Web Owner  wrote:
> > > /w/www/build/www/ja/doc/ja -> /w/www/build/www/ja/doc/ja_JP.eucJP
> > > *** Error code 1 (ignored)
> > > ===> ../mn
> > > ===> ../mn/doc
> > > ===> ../mn/doc/books
> > > ===> ../mn/doc/books/handbook
> > > ===> ../mn/doc/books
> > > ===> ../mn/doc/books/handbook
> > > install -c  -o www -g wwwadm -m 444 $(/usr/bin/xargs < HTML.manifest) /w/www/build/www/mn/doc/mn_MN.UTF-8/books/handbook
> > > install: jails-application.html: No such file or directory
> > > *** Error code 71
> > 
> > Hmmm, I can't reproduce this build failure locally :-(
> > I'm trying a build on freefall now...
> 
> But I _can_ reproduce it on the FreeBSD Cluster, which has an older port
> of dsssl-docbook-modular.
> 
> I reverted the change which broke this, but we can't use lang="mn" in
> the Mongolian translation project documents without a recent version of
> the port :(

Perhaps others as well?

-- 
Tom Rhodes