Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Dec 2008 10:49:22 -0700 (MST)
From:      Janky@test.purplehat.org, Jay@test.purplehat.org, III <ek@purplehat.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/129552: Update port: security/maia Makefile cleanup and added PORTDOCS install.
Message-ID:  <20081210174922.E2E98FD256@test.purplehat.org>
Resent-Message-ID: <200812101810.mBAIA1gg048139@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         129552
>Category:       ports
>Synopsis:       Update port: security/maia Makefile cleanup and added PORTDOCS install.
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Dec 10 18:10:00 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator:     Charlie &
>Release:        FreeBSD 7.0-RELEASE i386
>Organization:
>Environment:
System: FreeBSD test.purplehat.org 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 root@logan.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386


	
>Description:
	Update to the Maia-Mailguard port to pretty up the Makefile a bit and install the PORTDOCS into their proper location.
>How-To-Repeat:
	
>Fix:

	

--- maia-1.0.2a_2.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	maia
#	maia/files
#	maia/files/maia.sh.in
#	maia/files/pkg-deinstall.in
#	maia/files/pkg-install.in
#	maia/files/pkg-message.in
#	maia/Makefile
#	maia/distinfo
#	maia/pkg-descr
#	maia/pkg-plist
#
echo c - maia
mkdir -p maia > /dev/null 2>&1
echo c - maia/files
mkdir -p maia/files > /dev/null 2>&1
echo x - maia/files/maia.sh.in
sed 's/^X//' >maia/files/maia.sh.in << 'END-of-maia/files/maia.sh.in'
X#!/bin/sh
X#
X# $FreeBSD: ports/security/maia/files/maia.sh.in,v 1.1 2008/01/20 06:38:05 beech Exp $
X#
X# PROVIDE: maia
X# REQUIRE: LOGIN
X# KEYWORD: shutdown
X#
X# Add the following lines to /etc/rc.conf to enable maia:
X# maia_enable (bool):		Set it to "YES" to enable maia.
X#				Default is "NO".
X#
X
X. %%RC_SUBR%%
X
Xname="maia"
Xrcvar=${name}_enable
X
Xload_rc_config $name
X
X: ${maia_enable="NO"}
X: ${maia_pidfile="%%MAIADIR%%/amavisd.pid"}
X
Xrequired_files=%%PREFIX%%/etc/amavisd.conf
X
Xstart_cmd=${name}_start
Xstop_cmd=${name}_stop
X
Xpidfile=${maia_pidfile}
Xprocname=${maia_procname}
X
Xstart_precmd=${name}_prestart
X
Xmaia_prestart() {
X	rm -rf %%MAIADIR%%/tmp/* %%MAIADIR%%/tmp/.* 2>/dev/null || true
X}
X
Xmaia_start() {
X	%%PREFIX%%/sbin/amavisd-maia start
X}
X
Xmaia_stop() {
X	%%PREFIX%%/sbin/amavisd-maia stop
X}
X
Xrun_rc_command "$1"
END-of-maia/files/maia.sh.in
echo x - maia/files/pkg-deinstall.in
sed 's/^X//' >maia/files/pkg-deinstall.in << 'END-of-maia/files/pkg-deinstall.in'
X#!/bin/sh
X#
X# $FreeBSD: ports/security/maia/files/pkg-deinstall.in,v 1.1 2008/01/20 06:38:05 beech Exp $
X#
X
XUSER=%%MAIAUSER%%
XGROUP=%%MAIAGROUP%%
XDIR=%%MAIADIR%%
XQUARANTINE=%%MAIAQUARANTINE%%
XMAIAWEB=%%PREFIX%%/www/maia
X
Xif [ "$2" = "POST-DEINSTALL" ]; then
X
X    if /usr/sbin/pw group show "${GROUP}" 2>&1 >/dev/null; then
X	echo "You should manually remove the \"${GROUP}\" group."
X    fi
X
X    if /usr/sbin/pw user show "${USER}" 2>&1 >/dev/null; then
X	echo "You should manually remove the \"${USER}\" user."
X    fi
X
X    if [ -e ${DIR} ]; then
X	echo "You should manually remove the \"${DIR}\" directory."
X    fi
X    
X    if [ -e ${QUARANTINE} ]; then
X      echo "You should manually remove the \"${QUARANTINE}\" directory."
X    fi
X    if [ -e ${MAIAWEB} ]; then
X      echo "You should manually remove the \"${MAIAWEB}\" directory."
X    fi
Xfi
END-of-maia/files/pkg-deinstall.in
echo x - maia/files/pkg-install.in
sed 's/^X//' >maia/files/pkg-install.in << 'END-of-maia/files/pkg-install.in'
X#!/bin/sh
X#
X# $FreeBSD: ports/security/maia/files/pkg-install.in,v 1.1 2008/01/20 06:38:05 beech Exp $
X#
X
XUSER=%%MAIAUSER%%
XGROUP=%%MAIAGROUP%%
XDIR=%%MAIADIR%%
XQUARANTINE=%%MAIAQUARANTINE%%
X
Xif [ "$2" = "PRE-INSTALL" ]; then
X
X    if /usr/sbin/pw groupshow "${GROUP}" 2>/dev/null; then
X	echo "You already have a group \"${GROUP}\", so I will use it."
X    else
X	if /usr/sbin/pw groupadd ${GROUP} -h - -g 110
X	then
X	    echo "Added group \"${GROUP}\"."
X	else
X	    echo "Adding group \"${GROUP}\" failed..."
X	    echo "Please create it, and try again."
X	    exit 1
X	fi
X    fi
X
X    if /usr/sbin/pw user show "${USER}" 2>/dev/null; then
X	echo "You already have a user \"${USER}\", so I will use it."
X    else
X	if /usr/sbin/pw useradd ${USER} -g ${GROUP} -h - \
X	   -d ${DIR} \
X	   -s /bin/sh \
X	   -c "Scanning Virus Account" \
X	   -u 110
X	then
X	    echo "Added user \"${USER}\"."
X	else
X	    echo "Adding user \"${USER}\" failed..."
X	    echo "Please create it, and try again."
X	    exit 1
X	fi
X    fi
X
X    /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${DIR}
X    echo "Created \"${DIR}\" directory."
X    /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${DIR}/db
X    echo "Created \"${DIR}/db\" directory."
X    /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${DIR}/tmp
X    echo "Created \"${DIR}/tmp\" directory."
X    /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${DIR}/var
X    echo "Created \"${DIR}/var\" directory."
X    /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${DIR}/maia
X    echo "Created \"${DIR}/maia\" directory."
X    /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${DIR}/maia/scripts
X    echo "Created \"${DIR}/maia/scripts\" directory."
X    /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${DIR}/maia/templates
X    echo "Created \"${DIR}/maia/templates\" directory."
X    /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${QUARANTINE}
X    echo "Created \"${QUARANTINE}\" directory."
Xfi
END-of-maia/files/pkg-install.in
echo x - maia/files/pkg-message.in
sed 's/^X//' >maia/files/pkg-message.in << 'END-of-maia/files/pkg-message.in'
X
X*******************************************************************
X To use Maia-Mailguard, you need to install at least one virus scanner.
X The following virus scanners are available in the FreeBSD ports
X collection:
X 
X /usr/ports/security/vscan	McAfee VirusScan
X /usr/ports/security/clamav	Clam Antivirus
X /usr/ports/security/f-prot	F-Prot Antivirus
X /usr/ports/security/drweb	DrWeb antivirus suite
X
X Enable Maia-Mailguard in /etc/rc.conf with the following line:
X
X    maia_enable="YES"
X
X Configuration templates are available in %%PREFIX%%/etc
X as amavisd.conf.dist and maia.conf.dist.
X*******************************************************************
X
END-of-maia/files/pkg-message.in
echo x - maia/Makefile
sed 's/^X//' >maia/Makefile << 'END-of-maia/Makefile'
X# New ports collection makefile for:    maia
X# Date created:                         03 Jan 2008
X# Whom:                                 Janky Jay <ek@purplehat.org>
X#
X# $FreeBSD: ports/security/maia/Makefile,v 1.2 2008/06/06 14:00:56 edwin Exp $
X#
X# Based on amavisd-new ports makefile.
X
XPORTNAME=	maia
XPORTVERSION=	1.0.2a
XPORTREVISION=	2
XCATEGORIES=	security
XMASTER_SITES=	http://www.purplehat.org/downloads/maia/
X
XMAINTAINER=	ek@purplehat.org
XCOMMENT=	A web-based management system based on amavisd-new and SpamAssassin
X
XRUN_DEPENDS=	${SITE_PERL}/${PERL_ARCH}/Unix/Syslog.pm:${PORTSDIR}/sysutils/p5-Unix-Syslog \
X		${SITE_PERL}/MIME/Parser.pm:${PORTSDIR}/mail/p5-MIME-Tools \
X		${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 \
X		${SITE_PERL}/Convert/TNEF.pm:${PORTSDIR}/converters/p5-Convert-TNEF \
X		p5-Convert-UUlib>=1.08,1:${PORTSDIR}/converters/p5-Convert-UUlib \
X		p5-Compress-Zlib>=2.004:${PORTSDIR}/archivers/p5-Compress-Zlib \
X		${SITE_PERL}/Archive/Zip.pm:${PORTSDIR}/archivers/p5-Archive-Zip \
X		${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \
X		${SITE_PERL}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes \
X		${SITE_PERL}/IO/Wrap.pm:${PORTSDIR}/devel/p5-IO-stringy \
X		${SITE_PERL}/IO/Socket/INET6.pm:${PORTSDIR}/net/p5-IO-INET6 \
X		${SITE_PERL}/${PERL_ARCH}/Data/UUID.pm:${PORTSDIR}/devel/p5-Data-UUID \
X		${SITE_PERL}/${PERL_ARCH}/Template.pm:${PORTSDIR}/www/p5-Template-Toolkit \
X		p5-Net-Server>=0.93:${PORTSDIR}/net/p5-Net-Server
X
XUSE_PERL5_RUN=	5.8.2+
X
XNO_BUILD=	yes
X
XDOCS=	LICENSE README amavisd.conf.dist maia-mysql.sql maia-pgsql.sql maia.conf.dist
X
XMAIAUSER?=	vscan
XMAIAGROUP?=	vscan
XMAIADIR?=	/var/amavisd
XMAIAQUARANTINE?=	/var/amavisd/virusmails
X
XOPTIONS=	BDB	"Use BerkeleyDB"	on \
X		MYSQL	"Use MySQL"		on \
X		PGSQL	"Use PgSQL"		off \
X		SPAMASSASSIN	"Use SpamAssassin"	on \
X		ALTERMIME	"Use AlterMime"	off \
X		CRYPT	"Encryption support"	on \
X		IPCOUNTRY	"SpamAssassin IP Country plugin"	on \
X		DOMAINKEYS	"SpamAssassin DomainKey plugin"	on \
X		SPFQUERY	"SpamAssassin SPF Query plugin"	on \
X		FILE	"Use newer file(1) utility from ports"	on \
X		RAR	"RAR support with archivers/rar"	off \
X		UNRAR	"RAR support with archivers/unrar"	on \
X		ARJ	"ARJ support with archivers/arj"	on \
X		UNARJ	"ARJ support with archivers/unarj"	off \
X		LHA	"LHA support with archivers/lha"	on \
X		ARC	"ARC support with archivers/arc"	on \
X		NOMARCH	"ARC support with archivers/nomarch"	off \
X		CAB	"CAB support with archivers/cabextract"	on \
X		RPM	"RPM support with archivers/rpm2cpio"	on \
X		ZOO	"ZOO support with archivers/zoo"	on \
X		UNZOO	"ZOO support with archivers/unzoo"	off \
X		LZOP	"LZOP support with archivers/lzop"	on \
X		FREEZE	"FREEZE support with archivers/freeze"	on \
X		P7ZIP	"P7ZIP support with archivers/p7zip"	on \
X		TNEF	"Add external tnef decoder converters/tnef"	off
X
XSUB_FILES=	pkg-install pkg-deinstall pkg-message
X
XSUB_LIST+=	MAIAUSER=${MAIAUSER} \
X		MAIAGROUP=${MAIAGROUP} \
X		MAIADIR=${MAIADIR} \
X		MAIAQUARANTINE=${MAIAQUARANTINE}
X
X.include <bsd.port.pre.mk>
X
XUSE_RC_SUBR+=	maia.sh
X
X.if defined(WITH_BDB)
XRUN_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/BerkeleyDB.pm:${PORTSDIR}/databases/p5-BerkeleyDB
X.endif
X
X.if defined(WITH_MYSQL)
XRUN_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql
X.endif
X
X.if defined(WITH_PGSQL)
XRUN_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg
X.endif
X
X.if defined(WITH_SPAMASSASSIN)
XRUN_DEPENDS+=	${SITE_PERL}/Mail/SpamAssassin.pm:${PORTSDIR}/mail/p5-Mail-SpamAssassin
X.endif
X
X.if defined(WITH_ALTERMIME)
XRUN_DEPENDS+=	${LOCALBASE}/bin/altermime:${PORTSDIR}/mail/altermime
X.endif
X
X.if defined(WITH_CRYPT)
XRUN_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Crypt/Blowfish.pm:${PORTSDIR}/security/p5-Crypt-Blowfish \
X		${SITE_PERL}/${PERL_ARCH}/Crypt/OpenSSL/RSA.pm:${PORTSDIR}/security/p5-Crypt-OpenSSL-RSA \
X		${SITE_PERL}/Crypt/CBC.pm:${PORTSDIR}/security/p5-Crypt-CBC
X.endif
X
X.if defined(WITH_IPCOUNTRY)
XRUN_DEPENDS+=	${SITE_PERL}/IP/Country.pm:${PORTSDIR}/net/p5-IP-Country
X.endif
X
X.if defined(WITH_DOMAINKEYS)
XRUN_DEPENDS+=	${SITE_PERL}/Mail/DomainKeys.pm:${PORTSDIR}/mail/p5-Mail-DomainKeys
X.endif
X
X.if defined(WITH_SPFQUERY)
XRUN_DEPENDS+=	${SITE_PERL}/Mail/SPF/Query.pm:${PORTSDIR}/mail/p5-Mail-SPF-Query
X.endif
X
X.if defined(WITH_FILE)
X# security fix, file > 4.21 needed
XRUN_DEPENDS+=	file>=4.21:${PORTSDIR}/sysutils/file
X.endif
X
X# archviers/rar is a 32-bit binary port, we don't want the install to fail
X# at that port, therefore we will block instantly here if the platform does
X# not suit rar.
X
X.if defined(WITH_RAR)
XIA32_BINARY_PORT=	yes
XRUN_DEPENDS+=	${LOCALBASE}/bin/rar:${PORTSDIR}/archivers/rar
X.endif
X
X.if defined(WITH_UNRAR)
XRUN_DEPENDS+=	${LOCALBASE}/bin/unrar:${PORTSDIR}/archivers/unrar
X.endif
X
X.if defined(WITH_ARJ)
XRUN_DEPENDS+=	${LOCALBASE}/bin/arj:${PORTSDIR}/archivers/arj
X.endif
X
X.if defined(WITH_UNARJ)
XRUN_DEPENDS+=	${LOCALBASE}/bin/unarj:${PORTSDIR}/archivers/unarj
X.endif
X
X.if defined(WITH_LHA)
XRUN_DEPENDS+=	${LOCALBASE}/bin/lha:${PORTSDIR}/archivers/lha
X.endif
X
X.if defined(WITH_ARC)
XRUN_DEPENDS+=	${LOCALBASE}/bin/arc:${PORTSDIR}/archivers/arc
X.endif
X
X.if defined(WITH_NOMARCH)
XRUN_DEPENDS+=	${LOCALBASE}/bin/nomarch:${PORTSDIR}/archivers/nomarch
X.endif
X
X.if defined(WITH_CAB)
XRUN_DEPENDS+=	${LOCALBASE}/bin/cabextract:${PORTSDIR}/archivers/cabextract
X.endif
X
X.if defined(WITH_RPM)
XRUN_DEPENDS+=	${LOCALBASE}/bin/rpm2cpio.pl:${PORTSDIR}/archivers/rpm2cpio
X.endif
X
X.if defined(WITH_ZOO)
X# DOS condition in 2.10.1_2
XRUN_DEPENDS+=	zoo>=2.10.1_2:${PORTSDIR}/archivers/zoo
X.endif
X
X.if defined(WITH_UNZOO)
XRUN_DEPENDS+=	unzoo>=4.4_1:${PORTSDIR}/archivers/unzoo
X.endif
X
X.if defined(WITH_LZOP)
XRUN_DEPENDS+=	${LOCALBASE}/bin/lzop:${PORTSDIR}/archivers/lzop
X.endif
X
X.if defined(WITH_FREEZE)
XRUN_DEPENDS+=	${LOCALBASE}/bin/unfreeze:${PORTSDIR}/archivers/freeze
X.endif
X
X.if defined(WITH_P7ZIP)
XRUN_DEPENDS+=	${LOCALBASE}/bin/7zr:${PORTSDIR}/archivers/p7zip
X.endif
X
X.if defined(WITH_TNEF)
XRUN_DEPENDS+=	${LOCALBASE}/bin/tnef:${PORTSDIR}/converters/tnef
X.endif
X
Xpost-patch:
X.for f in amavisd.conf.dist amavisd-maia
X	@${REINPLACE_CMD} "s@'zoo'\]@['zoo','unzoo'] ]@" ${WRKSRC}/${f}
X.endfor
X.for i in amavisd.conf.dist amavisd-maia
X	@${REINPLACE_CMD} -e "s|$daemon_user  = \'amavis\';|$daemon_user  = \'${MAIAUSER}\';|" \
X		-e "s|$daemon_group = \'amavis\';|$daemon_group = \'${MAIAGROUP}\';|" \
X		-e 's|$$log_level = 0;|$$log_level = 1;|' \
X		-e 's|/etc/amavisd.conf|${PREFIX}/etc/amavisd.conf|' \
X		-e "s|/var/virusmails|${MAIAQUARANTINE}|" ${WRKSRC}/${i}
X.endfor
X.for f in amavisd-maia amavisd.conf.dist maia.conf.dist scripts/send-quarantine-digests.pl \
X	scripts/process-quarantine.pl scripts/load-sa-rules.pl
X		@${REINPLACE_CMD} "s|/var/amavisd|${MAIADIR}|" ${WRKSRC}/${f}
X.endfor
X.for i in maia.conf.dist scripts/expire-quarantine-cache.pl scripts/stats-snapshot.pl \
X	scripts/maiadbtool.pl scripts/configtest.pl scripts/send-quarantine-reminders.pl \
X	scripts/send-quarantine-digests.pl scripts/process-quarantine.pl \
X	scripts/load-sa-rules.pl scripts/process-quarantine-sub.pl
X		@${REINPLACE_CMD} "s|/etc/maia.conf|${PREFIX}/etc/maia.conf|" ${WRKSRC}/${i}
X.endfor
X
Xpre-install:
X	${FIND} ${WRKSRC} -name '*.bak' -delete
X	@${SH} ${PKGINSTALL} ${DISTNAME} PRE-INSTALL
X
Xdo-install:
X	@${INSTALL} -d ${WWWDIR}
X	cd ${WRKSRC}/php && ${FIND} . | ${CPIO} --quiet -pdm -L ${WWWDIR}
X	cd ${WRKSRC}/scripts && ${FIND} . | ${CPIO} --quiet -pdm -L ${MAIADIR}/maia/scripts
X	cd ${WRKSRC}/templates && ${FIND} . | ${CPIO} --quiet -pdm -L ${MAIADIR}/maia/templates
X
X.for i in amavisd-maia
X	${INSTALL_SCRIPT} ${WRKSRC}/${i} ${PREFIX}/sbin
X.endfor
X	${INSTALL_SCRIPT} -m 640 ${WRKSRC}/amavisd.conf.dist ${PREFIX}/etc/amavisd.conf.dist
X	${INSTALL_SCRIPT} -m 640 ${WRKSRC}/maia.conf.dist ${PREFIX}/etc/maia.conf.dist
X#
X#  This can contain sensitive information, e.g. SQL passwords, so it should be handled
X#  with care.
X#
X.if !exists(${PREFIX}/www/${PORTNAME}/config.php)
X	${INSTALL} -o ${WWWOWN} -g ${WWWGRP} -m 640 ${WRKSRC}/php/config.php.dist \
X		${PREFIX}/www/${PORTNAME}/config.php
X.endif
X.if !defined(NOPORTDOCS)
X	@${MKDIR} ${DOCSDIR}
X.for i in ${DOCS}
X	${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
X.endfor
X.endif
Xpost-install:
X	@if [ ! -f ${PREFIX}/etc/amavisd.conf ]; then \
X	${CP} -p ${PREFIX}/etc/amavisd.conf.dist ${PREFIX}/etc/amavisd.conf ; fi
X	@if [ ! -f ${PREFIX}/etc/maia.conf ]; then \
X	${CP} -p ${PREFIX}/etc/maia.conf.dist ${PREFIX}/etc/maia.conf ; fi
X	@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
X	@${CHOWN} -R ${MAIAUSER}:${MAIAGROUP} ${MAIADIR}/
X	@${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}' >> ${TMPPLIST}
X	@${ECHO_CMD} '@exec ${CHOWN} -R ${MAIAUSER}:${MAIAGROUP} ${MAIADIR}' >> ${TMPPLIST}
X	${LN} -s ${PREFIX}/share/smarty ${PREFIX}/www/${PORTNAME}/libs/Smarty
X	@${CAT} ${PKGMESSAGE}
X
X.include <bsd.port.post.mk>
END-of-maia/Makefile
echo x - maia/distinfo
sed 's/^X//' >maia/distinfo << 'END-of-maia/distinfo'
XMD5 (maia-1.0.2a.tar.gz) = e7ef161c2f2540016ddb994ce0f8d1b5
XSHA256 (maia-1.0.2a.tar.gz) = eca2816d42df78f1aae287de3aa7537d89827e41d3f01101f4deb5857793c124
XSIZE (maia-1.0.2a.tar.gz) = 1567568
END-of-maia/distinfo
echo x - maia/pkg-descr
sed 's/^X//' >maia/pkg-descr << 'END-of-maia/pkg-descr'
XMaia Mailguard is a web-based interface and management system based on the 
Xpopular amavisd-new e-mail scanner and SpamAssassin. Written in Perl and PHP, 
XMaia Mailguard gives end-users control over how their mail is processed by 
Xvirus scanners and spam filters, while giving mail administrators the power 
Xto configure site-wide defaults and limits.
X
XWWW: http://www.maiamailguard.com/
END-of-maia/pkg-descr
echo x - maia/pkg-plist
sed 's/^X//' >maia/pkg-plist << 'END-of-maia/pkg-plist'
X@unexec if cmp -s %D/etc/amavisd.conf.dist %D/etc/amavisd.conf; then rm -f %D/etc/amavisd.conf; fi
Xetc/amavisd.conf.dist
X@exec if [ ! -f %D/etc/amavisd.conf ] ; then cp -p %D/%F %B/amavisd.conf; fi
X@unexec if cmp -s %D/etc/maia.conf.dist %D/etc/maia.conf; then rm -f %D/etc/maia.conf; fi
Xetc/maia.conf.dist
X@exec if [ ! -f %D/etc/maia.conf ] ; then cp -p %D/%F %B/maia.conf; fi
Xsbin/amavisd-maia
X%%PORTDOCS%%%%DOCSDIR%%/LICENSE
X%%PORTDOCS%%%%DOCSDIR%%/README
X%%PORTDOCS%%%%DOCSDIR%%/amavisd.conf.dist
X%%PORTDOCS%%%%DOCSDIR%%/maia-mysql.sql
X%%PORTDOCS%%%%DOCSDIR%%/maia-pgsql.sql
X%%PORTDOCS%%%%DOCSDIR%%/maia.conf.dist
X%%WWWDIR%%/admin/configtest.php
X%%WWWDIR%%/admin/dblib.php
X%%WWWDIR%%/admin/schema.php
X%%WWWDIR%%/admin/scripts/0.php
X%%WWWDIR%%/admin/scripts/1.php
X%%WWWDIR%%/admin/scripts/2.php
X%%WWWDIR%%/admin/scripts/3.php
X%%WWWDIR%%/admin/scripts/4.php
X%%WWWDIR%%/admin/scripts/5.php
X%%WWWDIR%%/admin/scripts/6.php
X%%WWWDIR%%/admin/scripts/7.php
X%%WWWDIR%%/admin/scripts/8.php
X%%WWWDIR%%/admin/scripts/9.php
X%%WWWDIR%%/admin/upgrade.php
X%%WWWDIR%%/admindex.php
X%%WWWDIR%%/admindomains.php
X%%WWWDIR%%/adminhelp.php
X%%WWWDIR%%/adminlanguages.php
X%%WWWDIR%%/adminstats.php
X%%WWWDIR%%/adminsystem.php
X%%WWWDIR%%/adminthemes.php
X%%WWWDIR%%/adminusers.php
X%%WWWDIR%%/adminviruses.php
X%%WWWDIR%%/auth.php
X%%WWWDIR%%/authcheck.php
X%%WWWDIR%%/cache.php
X%%WWWDIR%%/chart_rules.php
X%%WWWDIR%%/chart_stats.php
X%%WWWDIR%%/chart_virus.php
X@unexec if cmp -s %D/www/maia/config.php.dist %D/www/maia/config.php; then rm -f %D/www/maia/config.php; fi
X%%WWWDIR%%/config.php.dist
X@exec if [ ! -f %D/www/maia/config.php ] ; then cp -p %D/%F %B/config.php; fi
X%%WWWDIR%%/confirm.php
X%%WWWDIR%%/constants.php
X%%WWWDIR%%/core.php
X%%WWWDIR%%/display.php
X%%WWWDIR%%/domainsettings.php
X%%WWWDIR%%/encrypt.php
X%%WWWDIR%%/error.php
X%%WWWDIR%%/favicon.ico
X%%WWWDIR%%/help.php
X%%WWWDIR%%/images/admin-int.png
X%%WWWDIR%%/images/blocked.jpg
X%%WWWDIR%%/images/buttonbg.gif
X%%WWWDIR%%/images/delete-item.png
X%%WWWDIR%%/images/help.png
X%%WWWDIR%%/images/logout.png
X%%WWWDIR%%/images/maia-logotoolbar.gif
X%%WWWDIR%%/images/poweredbymaia.gif
X%%WWWDIR%%/images/quarantine.png
X%%WWWDIR%%/images/report-spam.png
X%%WWWDIR%%/images/rescue-item.png
X%%WWWDIR%%/images/settings.png
X%%WWWDIR%%/images/stats.png
X%%WWWDIR%%/images/view-decoded.png
X%%WWWDIR%%/images/view-raw.png
X%%WWWDIR%%/images/white-black-list.png
X%%WWWDIR%%/index.php
X%%WWWDIR%%/internal-init.php
X%%WWWDIR%%/libs/Smarty
X%%WWWDIR%%/libs/pngfix.js
X%%WWWDIR%%/list-cache.php
X%%WWWDIR%%/locale/en/admindex.php
X%%WWWDIR%%/locale/en/admindomains.php
X%%WWWDIR%%/locale/en/adminhelp.php
X%%WWWDIR%%/locale/en/adminlanguages.php
X%%WWWDIR%%/locale/en/adminstats.php
X%%WWWDIR%%/locale/en/adminsystem.php
X%%WWWDIR%%/locale/en/adminthemes.php
X%%WWWDIR%%/locale/en/adminusers.php
X%%WWWDIR%%/locale/en/adminviruses.php
X%%WWWDIR%%/locale/en/auth.php
X%%WWWDIR%%/locale/en/confirmspam.php
X%%WWWDIR%%/locale/en/db.php
X%%WWWDIR%%/locale/en/deleteitem.php
X%%WWWDIR%%/locale/en/deliver.php
X%%WWWDIR%%/locale/en/display.php
X%%WWWDIR%%/locale/en/domainsettings.php
X%%WWWDIR%%/locale/en/falsenegative.php
X%%WWWDIR%%/locale/en/help.php
X%%WWWDIR%%/locale/en/internal-init.php
X%%WWWDIR%%/locale/en/login.php
X%%WWWDIR%%/locale/en/logout.php
X%%WWWDIR%%/locale/en/mime.php
X%%WWWDIR%%/locale/en/quarantine.php
X%%WWWDIR%%/locale/en/reportspam.php
X%%WWWDIR%%/locale/en/rulestats.php
X%%WWWDIR%%/locale/en/settings.php
X%%WWWDIR%%/locale/en/smtp.php
X%%WWWDIR%%/locale/en/stats.php
X%%WWWDIR%%/locale/en/viewmail.php
X%%WWWDIR%%/locale/en/virusstats.php
X%%WWWDIR%%/locale/en/wblist.php
X%%WWWDIR%%/locale/en/welcome.php
X%%WWWDIR%%/locale/en/xadminusers.php
X%%WWWDIR%%/locale/en/xlogin.php
X%%WWWDIR%%/login.php
X%%WWWDIR%%/logout.php
X%%WWWDIR%%/maia_db.php
X%%WWWDIR%%/maia_log.php
X%%WWWDIR%%/mailtools.php
X%%WWWDIR%%/mime.php
X%%WWWDIR%%/overlib/mini/overlib_anchor_mini.js
X%%WWWDIR%%/overlib/mini/overlib_crossframe_mini.js
X%%WWWDIR%%/overlib/mini/overlib_cssstyle_mini.js
X%%WWWDIR%%/overlib/mini/overlib_exclusive_mini.js
X%%WWWDIR%%/overlib/mini/overlib_followscroll_mini.js
X%%WWWDIR%%/overlib/mini/overlib_hideform_mini.js
X%%WWWDIR%%/overlib/mini/overlib_mini.js
X%%WWWDIR%%/overlib/mini/overlib_shadow_mini.js
X%%WWWDIR%%/overlib/overlib.js
X%%WWWDIR%%/overlib/overlib_anchor.js
X%%WWWDIR%%/overlib/overlib_crossframe.js
X%%WWWDIR%%/overlib/overlib_cssstyle.js
X%%WWWDIR%%/overlib/overlib_exclusive.js
X%%WWWDIR%%/overlib/overlib_followscroll.js
X%%WWWDIR%%/overlib/overlib_hideform.js
X%%WWWDIR%%/overlib/overlib_shadow.js
X%%WWWDIR%%/public.php
X%%WWWDIR%%/rescue.php
X%%WWWDIR%%/rulestats.php
X%%WWWDIR%%/settings.php
X%%WWWDIR%%/smarty.php
X%%WWWDIR%%/smtp.php
X%%WWWDIR%%/stats.php
X%%WWWDIR%%/themes/desert_sand/code/smarty.php
X%%WWWDIR%%/themes/desert_sand/css/style.css
X%%WWWDIR%%/themes/desert_sand/images/admin-int.png
X%%WWWDIR%%/themes/desert_sand/images/bad-header.png
X%%WWWDIR%%/themes/desert_sand/images/banned-file.png
X%%WWWDIR%%/themes/desert_sand/images/blocked.jpg
X%%WWWDIR%%/themes/desert_sand/images/buttonbg.gif
X%%WWWDIR%%/themes/desert_sand/images/delete-item.png
X%%WWWDIR%%/themes/desert_sand/images/edit.png
X%%WWWDIR%%/themes/desert_sand/images/ham.png
X%%WWWDIR%%/themes/desert_sand/images/help.png
X%%WWWDIR%%/themes/desert_sand/images/highprotection.png
X%%WWWDIR%%/themes/desert_sand/images/logout.png
X%%WWWDIR%%/themes/desert_sand/images/lowprotection.png
X%%WWWDIR%%/themes/desert_sand/images/maia-logo.gif
X%%WWWDIR%%/themes/desert_sand/images/maia-logotoolbar.gif
X%%WWWDIR%%/themes/desert_sand/images/poweredbymaia.gif
X%%WWWDIR%%/themes/desert_sand/images/quarantine.png
X%%WWWDIR%%/themes/desert_sand/images/redo.png
X%%WWWDIR%%/themes/desert_sand/images/report-spam.png
X%%WWWDIR%%/themes/desert_sand/images/rescue-item.png
X%%WWWDIR%%/themes/desert_sand/images/settings.png
X%%WWWDIR%%/themes/desert_sand/images/spam.png
X%%WWWDIR%%/themes/desert_sand/images/stats.png
X%%WWWDIR%%/themes/desert_sand/images/view-decoded.png
X%%WWWDIR%%/themes/desert_sand/images/view-raw.png
X%%WWWDIR%%/themes/desert_sand/images/virus.png
X%%WWWDIR%%/themes/desert_sand/images/welcome.png
X%%WWWDIR%%/themes/desert_sand/images/white-black-list.png
X%%WWWDIR%%/themes/desert_sand/name
X%%WWWDIR%%/themes/desert_sand/templates/admindomains.tpl
X%%WWWDIR%%/themes/desert_sand/templates/adminhelp.tpl
X%%WWWDIR%%/themes/desert_sand/templates/adminindex.tpl
X%%WWWDIR%%/themes/desert_sand/templates/adminlanguages.tpl
X%%WWWDIR%%/themes/desert_sand/templates/adminstats.tpl
X%%WWWDIR%%/themes/desert_sand/templates/adminsystem.tpl
X%%WWWDIR%%/themes/desert_sand/templates/adminthemes.tpl
X%%WWWDIR%%/themes/desert_sand/templates/adminusers.tpl
X%%WWWDIR%%/themes/desert_sand/templates/adminviruses.tpl
X%%WWWDIR%%/themes/desert_sand/templates/cache_pager.tpl
X%%WWWDIR%%/themes/desert_sand/templates/display_spam_report.tpl
X%%WWWDIR%%/themes/desert_sand/templates/domainsettings.tpl
X%%WWWDIR%%/themes/desert_sand/templates/help.tpl
X%%WWWDIR%%/themes/desert_sand/templates/html_foot.tpl
X%%WWWDIR%%/themes/desert_sand/templates/html_head.tpl
X%%WWWDIR%%/themes/desert_sand/templates/internal-init.tpl
X%%WWWDIR%%/themes/desert_sand/templates/list-cache.tpl
X%%WWWDIR%%/themes/desert_sand/templates/login.tpl
X%%WWWDIR%%/themes/desert_sand/templates/login_foot.tpl
X%%WWWDIR%%/themes/desert_sand/templates/login_head.tpl
X%%WWWDIR%%/themes/desert_sand/templates/logout.tpl
X%%WWWDIR%%/themes/desert_sand/templates/menu.tpl
X%%WWWDIR%%/themes/desert_sand/templates/rulestats.tpl
X%%WWWDIR%%/themes/desert_sand/templates/settings.tpl
X%%WWWDIR%%/themes/desert_sand/templates/stats.tpl
X%%WWWDIR%%/themes/desert_sand/templates/view.tpl
X%%WWWDIR%%/themes/desert_sand/templates/viewmail_menu.tpl
X%%WWWDIR%%/themes/desert_sand/templates/virusstats.tpl
X%%WWWDIR%%/themes/desert_sand/templates/wblist.tpl
X%%WWWDIR%%/themes/desert_sand/templates/welcome.tpl
X%%WWWDIR%%/themes/desert_sand/templates/xadminstats.tpl
X%%WWWDIR%%/themes/desert_sand/templates/xadminusers.tpl
X%%WWWDIR%%/themes/desert_sand/templates/xdomainsettings.tpl
X%%WWWDIR%%/themes/desert_sand/templates/xlogin.tpl
X%%WWWDIR%%/themes/dgm/code/function.boolean_config_row.php
X%%WWWDIR%%/themes/dgm/code/function.count.php
X%%WWWDIR%%/themes/dgm/code/function.text_config_row.php
X%%WWWDIR%%/themes/dgm/code/list-cache.js
X%%WWWDIR%%/themes/dgm/code/smarty.php
X%%WWWDIR%%/themes/dgm/css/cache_buttons.css
X%%WWWDIR%%/themes/dgm/css/color.css
X%%WWWDIR%%/themes/dgm/css/config.css
X%%WWWDIR%%/themes/dgm/css/layout.css
X%%WWWDIR%%/themes/dgm/css/list_cache.css
X%%WWWDIR%%/themes/dgm/css/style.css
X%%WWWDIR%%/themes/dgm/css/viewmail.css
X%%WWWDIR%%/themes/dgm/css/virusstats.css
X%%WWWDIR%%/themes/dgm/css/welcome.css
X%%WWWDIR%%/themes/dgm/images/1downarrow.png
X%%WWWDIR%%/themes/dgm/images/1uparrow.png
X%%WWWDIR%%/themes/dgm/images/admin-int.png
X%%WWWDIR%%/themes/dgm/images/bad-header.png
X%%WWWDIR%%/themes/dgm/images/banned-file.png
X%%WWWDIR%%/themes/dgm/images/blocked.jpg
X%%WWWDIR%%/themes/dgm/images/buttonbg.gif
X%%WWWDIR%%/themes/dgm/images/delete-item.png
X%%WWWDIR%%/themes/dgm/images/edit.png
X%%WWWDIR%%/themes/dgm/images/ham.png
X%%WWWDIR%%/themes/dgm/images/help.png
X%%WWWDIR%%/themes/dgm/images/highprotection.png
X%%WWWDIR%%/themes/dgm/images/join_round.png
X%%WWWDIR%%/themes/dgm/images/kcmx.png
X%%WWWDIR%%/themes/dgm/images/lin_agt_wrench.png
X%%WWWDIR%%/themes/dgm/images/logout.png
X%%WWWDIR%%/themes/dgm/images/lowprotection.png
X%%WWWDIR%%/themes/dgm/images/maia-logo.gif
X%%WWWDIR%%/themes/dgm/images/maia-logotoolbar.gif
X%%WWWDIR%%/themes/dgm/images/mail.png
X%%WWWDIR%%/themes/dgm/images/poweredbymaia.gif
X%%WWWDIR%%/themes/dgm/images/quarantine.png
X%%WWWDIR%%/themes/dgm/images/redo.png
X%%WWWDIR%%/themes/dgm/images/report-spam.png
X%%WWWDIR%%/themes/dgm/images/rescue-item.png
X%%WWWDIR%%/themes/dgm/images/settings.png
X%%WWWDIR%%/themes/dgm/images/sisadmin.png
X%%WWWDIR%%/themes/dgm/images/sortdown.png
X%%WWWDIR%%/themes/dgm/images/sortup.png
X%%WWWDIR%%/themes/dgm/images/spam.png
X%%WWWDIR%%/themes/dgm/images/stats.png
X%%WWWDIR%%/themes/dgm/images/trash.png
X%%WWWDIR%%/themes/dgm/images/trashcan_empty.png
X%%WWWDIR%%/themes/dgm/images/view-decoded.png
X%%WWWDIR%%/themes/dgm/images/view-raw.png
X%%WWWDIR%%/themes/dgm/images/virus.png
X%%WWWDIR%%/themes/dgm/images/welcome.png
X%%WWWDIR%%/themes/dgm/images/white-black-list.png
X%%WWWDIR%%/themes/dgm/name
X%%WWWDIR%%/themes/dgm/templates/admindomains.tpl
X%%WWWDIR%%/themes/dgm/templates/adminhelp.tpl
X%%WWWDIR%%/themes/dgm/templates/adminindex.tpl
X%%WWWDIR%%/themes/dgm/templates/adminlanguages.tpl
X%%WWWDIR%%/themes/dgm/templates/adminstats.tpl
X%%WWWDIR%%/themes/dgm/templates/adminsystem.tpl
X%%WWWDIR%%/themes/dgm/templates/adminthemes.tpl
X%%WWWDIR%%/themes/dgm/templates/adminusers.tpl
X%%WWWDIR%%/themes/dgm/templates/adminviruses.tpl
X%%WWWDIR%%/themes/dgm/templates/cache_pager.tpl
X%%WWWDIR%%/themes/dgm/templates/container.tpl
X%%WWWDIR%%/themes/dgm/templates/display_spam_report.tpl
X%%WWWDIR%%/themes/dgm/templates/domainsettings.tpl
X%%WWWDIR%%/themes/dgm/templates/header.tpl
X%%WWWDIR%%/themes/dgm/templates/help.tpl
X%%WWWDIR%%/themes/dgm/templates/html_foot.tpl
X%%WWWDIR%%/themes/dgm/templates/html_head.tpl
X%%WWWDIR%%/themes/dgm/templates/internal-init.tpl
X%%WWWDIR%%/themes/dgm/templates/list-cache-table.tpl
X%%WWWDIR%%/themes/dgm/templates/list-cache.tpl
X%%WWWDIR%%/themes/dgm/templates/login.tpl
X%%WWWDIR%%/themes/dgm/templates/login_foot.tpl
X%%WWWDIR%%/themes/dgm/templates/login_head.tpl
X%%WWWDIR%%/themes/dgm/templates/logout.tpl
X%%WWWDIR%%/themes/dgm/templates/menu.tpl
X%%WWWDIR%%/themes/dgm/templates/public.tpl
X%%WWWDIR%%/themes/dgm/templates/quickstats.tpl
X%%WWWDIR%%/themes/dgm/templates/rulestats.tpl
X%%WWWDIR%%/themes/dgm/templates/settings.tpl
X%%WWWDIR%%/themes/dgm/templates/stats.tpl
X%%WWWDIR%%/themes/dgm/templates/view.tpl
X%%WWWDIR%%/themes/dgm/templates/viewmail_header.tpl
X%%WWWDIR%%/themes/dgm/templates/viewmail_menu.tpl
X%%WWWDIR%%/themes/dgm/templates/virusstats.tpl
X%%WWWDIR%%/themes/dgm/templates/wblist.tpl
X%%WWWDIR%%/themes/dgm/templates/welcome.tpl
X%%WWWDIR%%/themes/dgm/templates/xadminstats.tpl
X%%WWWDIR%%/themes/dgm/templates/xadminusers.tpl
X%%WWWDIR%%/themes/dgm/templates/xdomainsettings.tpl
X%%WWWDIR%%/themes/dgm/templates/xlogin.tpl
X%%WWWDIR%%/themes/ocean_surf/css/style.css
X%%WWWDIR%%/themes/ocean_surf/images/admin-int.png
X%%WWWDIR%%/themes/ocean_surf/images/bad-header.png
X%%WWWDIR%%/themes/ocean_surf/images/banned-file.png
X%%WWWDIR%%/themes/ocean_surf/images/blocked.jpg
X%%WWWDIR%%/themes/ocean_surf/images/buttonbg.gif
X%%WWWDIR%%/themes/ocean_surf/images/delete-item.png
X%%WWWDIR%%/themes/ocean_surf/images/edit.png
X%%WWWDIR%%/themes/ocean_surf/images/ham.png
X%%WWWDIR%%/themes/ocean_surf/images/help.png
X%%WWWDIR%%/themes/ocean_surf/images/logout.png
X%%WWWDIR%%/themes/ocean_surf/images/maia-logo.gif
X%%WWWDIR%%/themes/ocean_surf/images/maia-logotoolbar.gif
X%%WWWDIR%%/themes/ocean_surf/images/poweredbymaia.gif
X%%WWWDIR%%/themes/ocean_surf/images/quarantine.png
X%%WWWDIR%%/themes/ocean_surf/images/redo.png
X%%WWWDIR%%/themes/ocean_surf/images/report-spam.png
X%%WWWDIR%%/themes/ocean_surf/images/rescue-item.png
X%%WWWDIR%%/themes/ocean_surf/images/settings.png
X%%WWWDIR%%/themes/ocean_surf/images/spam.png
X%%WWWDIR%%/themes/ocean_surf/images/stats.png
X%%WWWDIR%%/themes/ocean_surf/images/view-decoded.png
X%%WWWDIR%%/themes/ocean_surf/images/view-raw.png
X%%WWWDIR%%/themes/ocean_surf/images/virus.png
X%%WWWDIR%%/themes/ocean_surf/images/welcome.png
X%%WWWDIR%%/themes/ocean_surf/images/white-black-list.png
X%%WWWDIR%%/themes/ocean_surf/name
X%%WWWDIR%%/themes/ocean_surf/templates/admindomains.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/adminhelp.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/adminindex.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/adminlanguages.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/adminstats.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/adminsystem.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/adminthemes.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/adminusers.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/adminviruses.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/cache_pager.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/display_spam_report.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/domainsettings.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/help.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/html_foot.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/html_head.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/internal-init.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/list-cache.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/login.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/login_foot.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/login_head.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/logout.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/menu_bottom.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/menu_top.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/rulestats.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/settings.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/stats.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/view.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/viewmail_menu.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/virusstats.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/wblist.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/welcome.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/xadminstats.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/xadminusers.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/xdomainsettings.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/xlogin.tpl
X%%WWWDIR%%/tooltips.js
X%%WWWDIR%%/view.php
X%%WWWDIR%%/viewer.php
X%%WWWDIR%%/virus.php
X%%WWWDIR%%/virusstats.php
X%%WWWDIR%%/wblist.php
X%%WWWDIR%%/welcome.php
X%%WWWDIR%%/xadmindomains.php
X%%WWWDIR%%/xadminlanguages.php
X%%WWWDIR%%/xadminstats.php
X%%WWWDIR%%/xadminsystem.php
X%%WWWDIR%%/xadminthemes.php
X%%WWWDIR%%/xadminusers.php
X%%WWWDIR%%/xadminviruses.php
X%%WWWDIR%%/xdomainsettings.php
X%%WWWDIR%%/ximpersonate.php
X%%WWWDIR%%/xlogin.php
X@dirrm %%WWWDIR%%/themes/ocean_surf/templates
X@dirrm %%WWWDIR%%/themes/ocean_surf/images
X@dirrm %%WWWDIR%%/themes/ocean_surf/css
X@dirrm %%WWWDIR%%/themes/ocean_surf/compiled
X@dirrm %%WWWDIR%%/themes/ocean_surf
X@dirrm %%WWWDIR%%/themes/dgm/templates
X@dirrm %%WWWDIR%%/themes/dgm/images
X@dirrm %%WWWDIR%%/themes/dgm/css
X@dirrm %%WWWDIR%%/themes/dgm/compiled
X@dirrm %%WWWDIR%%/themes/dgm/code
X@dirrm %%WWWDIR%%/themes/dgm
X@dirrm %%WWWDIR%%/themes/desert_sand/templates
X@dirrm %%WWWDIR%%/themes/desert_sand/images
X@dirrm %%WWWDIR%%/themes/desert_sand/css
X@dirrm %%WWWDIR%%/themes/desert_sand/compiled
X@dirrm %%WWWDIR%%/themes/desert_sand/code
X@dirrm %%WWWDIR%%/themes/desert_sand
X@dirrm %%WWWDIR%%/themes
X@dirrm %%WWWDIR%%/overlib/mini
X@dirrm %%WWWDIR%%/overlib
X@dirrm %%WWWDIR%%/locale/en
X@dirrm %%WWWDIR%%/locale
X@dirrm %%WWWDIR%%/libs
X@dirrm %%WWWDIR%%/images
X@dirrm %%WWWDIR%%/admin/scripts
X@dirrm %%WWWDIR%%/admin
X@dirrmtry %%WWWDIR%%
X@dirrm %%PORTDOCS%%%%DOCSDIR%%
END-of-maia/pkg-plist
exit
--- maia-1.0.2a_2.shar ends here ---


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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20081210174922.E2E98FD256>