From owner-freebsd-questions@FreeBSD.ORG Sat Apr 22 09:51:26 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D61216A400 for ; Sat, 22 Apr 2006 09:51:26 +0000 (UTC) (envelope-from admin2@enabled.com) Received: from typhoon.enabled.com (typhoon.enabled.com [216.218.220.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0FC343D45 for ; Sat, 22 Apr 2006 09:51:25 +0000 (GMT) (envelope-from admin2@enabled.com) Received: from enabled.com (localhost.enabled.com [127.0.0.1]) by typhoon.enabled.com (8.13.6/8.13.6) with ESMTP id k3M9pPAm010457 for ; Sat, 22 Apr 2006 02:51:25 -0700 (PDT) (envelope-from admin2@enabled.com) From: "Noah" To: freebsd-questions@freebsd.org Date: Sat, 22 Apr 2006 01:51:25 -0800 Message-Id: <20060422095125.M35951@enabled.com> X-Mailer: Open WebMail 2.51 20050228 X-OriginatingIP: 24.5.78.100 (admin2) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Subject: You don't have permission to access /pipermail/ on this server. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Apr 2006 09:51:26 -0000 mailman-2.1.7 apache 2.2.0 Okay I just upgrade from apache 1.3.x to apache 2.2.0 and arriving at a permissions problem when viewing pipermail mailman directories. --- Browser error message --- You don't have permission to access /pipermail/list/ on this server. Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request. --- snip --- Here is what apache places in the error_log: --- snip --- Symbolic link not allowed or link target not accessible: /usr/home/mailman/archives/public/list, referer: http://hostname.garbled.com/mailman/listinfo/list ---- snip ---- Here is what I've done so far: ---- apache httpd.conf file ---- in the virtual host stanza ScriptAlias /mailman/ /usr/home/mailman/cgi-bin/ Alias /pipermail/ /usr/home/mailman/archives/public/ Alias /icons/ /usr/home/mailman/icons/ Options +FollowSymlinks Allow from all --- snip --- then restarted apache. --- snip --- looks like the directories have proper permissions: typhoon# ls -ld /usr/local/mailman/archives/private drwxrws--- 103 mailman mailman 2560 Apr 21 21:49 /usr/local/mailman/archives/private typhoon# ls -ld /usr/local/mailman/archives/public/ drwxrwsr-x 2 mailman mailman 1536 Apr 21 21:49 /usr/local/mailman/archives/public/ typhoon# ls -ld /usr/local/mailman/archives/public/list lrwxr-xr-x 1 root mailman 54 Apr 21 19:00 /usr/local/mailman/archives/public/list -> /usr/local/mailman/archives/private/list typhoon# ls -ld /usr/local/mailman/archives/private/list drwxrwsr-x 50 www mailman 4096 Apr 21 18:34 /usr/local/mailman/archives/private/list --- snip --- what else could be the problem here? cheers, Noah