diff options
author | edwin <edwin@FreeBSD.org> | 2003-04-18 07:30:56 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-04-18 07:30:56 +0000 |
commit | 3a9b65f82d57170bb88d504bb222a79d6f336e40 (patch) | |
tree | b2eb2175e61bec21b78eba726077d2cb3cbacd71 /mail/imp3 | |
parent | 7bb80244e528d3283a5bc6348ad2b87d8bd104c4 (diff) | |
download | FreeBSD-ports-3a9b65f82d57170bb88d504bb222a79d6f336e40.zip FreeBSD-ports-3a9b65f82d57170bb88d504bb222a79d6f336e40.tar.gz |
mail/imp3: fixing an error when saving attachments.
Fixing an error reported by fran at his.com:
Saving attachments causes an error:
"You don't have permission to access /horde/imp/download/
on this server." and an error is reported in
/var/log/httpd-error.log: [error] [client aaa.bbb.ccc.ddd]
client denied by server configuration:
/usr/local/www/horde/imp/download
$LOCALBASE/etc/horde/httpd.conf.imp was protecting horde/imp/download/
(my mistake), but IMP uses this as a pseudo-directory, and it must be
readable by your clients.
PR: ports/51100
Submitted by: Thierry Thomas <thierry@pompo.net>
Diffstat (limited to 'mail/imp3')
-rw-r--r-- | mail/imp3/Makefile | 1 | ||||
-rw-r--r-- | mail/imp3/files/httpd.conf.imp | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/mail/imp3/Makefile b/mail/imp3/Makefile index f31a1c4..497fe4f 100644 --- a/mail/imp3/Makefile +++ b/mail/imp3/Makefile @@ -7,6 +7,7 @@ PORTNAME= imp PORTVERSION= 3.2.1 +PORTREVISION= 1 CATEGORIES= mail www MASTER_SITES= ftp://ftp.horde.org/pub/imp/ \ ftp://ftp.au.horde.org/pub/horde/imp/ \ diff --git a/mail/imp3/files/httpd.conf.imp b/mail/imp3/files/httpd.conf.imp index 0e78f4d..edd7b1d 100644 --- a/mail/imp3/files/httpd.conf.imp +++ b/mail/imp3/files/httpd.conf.imp @@ -7,10 +7,6 @@ order deny,allow deny from all </Directory> -<Directory "/home/httpd/html/horde/imp/download"> - order deny,allow - deny from all -</Directory> <Directory "/home/httpd/html/horde/imp/lib"> order deny,allow deny from all |