diff options
author | adrianp <adrianp> | 2006-03-31 22:06:34 +0000 |
---|---|---|
committer | adrianp <adrianp> | 2006-03-31 22:06:34 +0000 |
commit | dd1fbe409d3ab14a13e0331031325a324b21d189 (patch) | |
tree | d581536de1595014e65efd924c8766af40e00a98 /mail/ingo/files | |
parent | e98f6ac1088a25936f43fa60c673e8ef0e04f914 (diff) | |
download | pkgsrc-dd1fbe409d3ab14a13e0331031325a324b21d189.tar.gz |
Ingo, the "Email Filter Rules Manager", started as a frontend for the Sieve
filter language, and is now a generic and complete filter rule frontend that
currently is able to create Sieve, procmail, maildrop, and IMAP filter rules.
The IMAP filter driver translates the filter rules on demand to IMAP commands,
executed via PHP's IMAP extension and has replaced IMP's internal filtering
code. It is now the default filtering agent in IMP H3 (4.x).
Diffstat (limited to 'mail/ingo/files')
-rw-r--r-- | mail/ingo/files/ingo.conf.dist | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/mail/ingo/files/ingo.conf.dist b/mail/ingo/files/ingo.conf.dist new file mode 100644 index 00000000000..2fbbd904659 --- /dev/null +++ b/mail/ingo/files/ingo.conf.dist @@ -0,0 +1,31 @@ +# $NetBSD: ingo.conf.dist,v 1.1.1.1 2006/03/31 22:06:34 adrianp Exp $ +# +# Ingo configuration file fragment for Apache + +# For security, don't serve pages from the Ingo configuration and library +# directories. +# +<Directory "@INGODIR@/config"> + Order deny,allow + Deny from all +</Directory> +<Directory "@INGODIR@/lib"> + Order deny,allow + Deny from all +</Directory> +<Directory "@INGODIR@/locale"> + Order deny,allow + Deny from all +</Directory> +<Directory "@INGODIR@/po"> + Order deny,allow + Deny from all +</Directory> +<Directory "@INGODIR@/scripts"> + Order deny,allow + Deny from all +</Directory> +<Directory "@INGODIR@/templates"> + Order deny,allow + Deny from all +</Directory> |