Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Oct 2010 23:45:33 -0700 (PDT)
From:      Janky Jay <ek@purplehat.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/151637: Update port: security/maia Much needed updates for Perl and PHP.
Message-ID:  <20101022064533.2347585BF95@morbid.purplehat.org>
Resent-Message-ID: <201010220710.o9M7A1Qx057892@freefall.freebsd.org>

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

>Number:         151637
>Category:       ports
>Synopsis:       Update port: security/maia Much needed updates for Perl and PHP.
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Oct 22 07:10:00 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Janky Jay, III
>Release:        FreeBSD 8.0-RELEASE-p2 i386
>Organization:
Purplehat
>Environment:
System: FreeBSD morbid.purplehat.org 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #0: Wed Feb 3 20:33:54 PST 2010 root@morbid.purplehat.org:/usr/obj/usr/src/sys/MORBID i386


	
>Description:
	Lots of changes to the port including more options at build time and the latest BRANCH of Maia to 
	accommodate to the newer Perl and PHP version changes. (Sorrt this took so long...)
>How-To-Repeat:
	
>Fix:

	

--- maia.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 << 'e74c6e934549d81e057348c90ac22465'
X#!/bin/sh
X#
X# $FreeBSD: ports/security/maia/files/maia.sh.in,v 1.2 2010/03/27 00:14:44 dougb 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. /etc/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"
e74c6e934549d81e057348c90ac22465
echo x - maia/files/pkg-deinstall.in
sed 's/^X//' >maia/files/pkg-deinstall.in << 'd069e057b2ac722e52d72a05f57365c2'
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
d069e057b2ac722e52d72a05f57365c2
echo x - maia/files/pkg-install.in
sed 's/^X//' >maia/files/pkg-install.in << 'bb782304b681d1f6679125aec2af959f'
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
bb782304b681d1f6679125aec2af959f
echo x - maia/files/pkg-message.in
sed 's/^X//' >maia/files/pkg-message.in << '59b0f791feb8fb9fde355a3fe518156c'
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
59b0f791feb8fb9fde355a3fe518156c
echo x - maia/Makefile
sed 's/^X//' >maia/Makefile << 'ab4027e56bdcc7f799f68981b5d1e04e'
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.6 2010/09/21 07:56:39 mm Exp $
X#
X# Based on amavisd-new ports makefile.
X
XPORTNAME=	maia
XPORTVERSION=	1.0.2a
XPORTREVISION=	4
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}/Convert/TNEF.pm:${PORTSDIR}/converters/p5-Convert-TNEF \
X		p5-Convert-UUlib>=1.08,1:${PORTSDIR}/converters/p5-Convert-UUlib \
X		${SITE_PERL}/Net/CIDR/Lite.pm:${PORTSDIR}/net/p5-Net-CIDR-Lite \
X		${SITE_PERL}/Archive/Zip.pm:${PORTSDIR}/archivers/p5-Archive-Zip \
X		${SITE_PERL}/IO/Wrap.pm:${PORTSDIR}/devel/p5-IO-stringy \
X		${SITE_PERL}/IO/Socket/INET6.pm:${PORTSDIR}/net/p5-IO-Socket-INET6 \
X		${SITE_PERL}/Text/CSV.pm:${PORTSDIR}/textproc/p5-Text-CSV \
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=	APACHE	"Use Apache web server"	off\
X		LIGHTTPD	"Use LighTTPD web server"	off \
X		WEBHOST	"PHP, PEAR, etc... for Maia web interface"	off \
X		MYSQL	"Use MySQL"		on \
X		PGSQL	"Use PgSQL"		off \
X		DOVECOT	"Use Dovecot IMAP/POP3"	on \
X		POSTFIX	"Use Postfix MTA"	on \
X		PFA	"Use Postfixadmin"	off \
X		FUZZYOCR	"Use FuzzyOcr"	on \
X		CLAMAV	"Use ClamAV anti-virus"	on \
X		SPAMASSASSIN	"Use SpamAssassin"	on \
X		GRAPHICS	"Enable pie chart stats"	off \
X		BDB	"Use BerkeleyDB"	on \
X		ALTERMIME	"Use AlterMime"	off \
X		CRYPT	"Encryption support"	off \
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"	off \
X		FREEZE	"FREEZE support with archivers/freeze"	on \
X		P7ZIP	"P7ZIP support with archivers/p7zip"	on \
X		TNEF	"Add external tnef decoder"	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
X.if ${PERL_LEVEL} < 500903
XRUN_DEPENDS+=	p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress
X.endif
X
XUSE_RC_SUBR+=	maia.sh
X
X.if defined(WITH_APACHE)
XRUN_DEPENDS+=	${LOCALBASE}/sbin/httpd:${PORTSDIR}/www/apache22
X.endif
X
X.if defined(WITH_LIGHTTPD)
XRUN_DEPENDS+=	${LOCALBASE}/sbin/lighttpd:${PORTSDIR}/www/lighttpd
X.endif
X
X.if defined(WITH_WEBHOST)
XRUN_DEPENDS+=	${LOCALBASE}/sbin/php:${PORTSDIR}/lang/php5 \
X		${LOCALBASE}/lib/php/%%VERSION%%/bcmath.so:${PORTSDIR}/math/php5-bcmath \
X		${LOCALBASE}/lib/php/%%VERSION%%/ctype.so:${PORTSDIR}/textproc/php5-ctype \
X		${LOCALBASE}/lib/php/%%VERSION%%/dom.so:${PORTSDIR}/textproc/php5-dom \
X		${LOCALBASE}/lib/php/%%VERSION%%/filter.so:${PORTSDIR}/security/php5-filter \
X		${LOCALBASE}/lib/php/%%VERSION%%/gettext.so:${PORTSDIR}/devel/php5-gettext \
X		${LOCALBASE}/lib/php/%%VERSION%%/hash.so:${PORTSDIR}/security/php5-hash \
X		${LOCALBASE}/lib/php/%%VERSION%%/iconv.so:${PORTSDIR}/converters/php5-iconv \
X		${LOCALBASE}/lib/php/%%VERSION%%/imap.so:${PORTSDIR}/mail/php5-imap \
X		${LOCALBASE}/lib/php/%%VERSION%%/json.so:${PORTSDIR}/devel/php5-json \
X		${LOCALBASE}/lib/php/%%VERSION%%/mbstring.so:${PORTSDIR}/converters/php5-mbstring \
X		${LOCALBASE}/lib/php/%%VERSION%%/mcrypt.so:${PORTSDIR}/security/php5-mcrypt \
X		${LOCALBASE}/lib/php/%%VERSION%%/mysql.so:${PORTSDIR}/databases/php5-mysql \
X		${LOCALBASE}/lib/php/%%VERSION%%/mysqli.so:${PORTSDIR}/databases/php5-mysqli \
X		${LOCALBASE}/lib/php/%%VERSION%%/pdo.so:${PORTSDIR}/databases/php5-pdo \
X		${LOCALBASE}/lib/php/%%VERSION%%/pdo_sqlite.so:${PORTSDIR}/databases/php5-pdo_sqlite \
X		${LOCALBASE}/lib/php/%%VERSION%%/posix.so:${PORTSDIR}/sysutils/php5-posix \
X		${LOCALBASE}/lib/php/%%VERSION%%/session.so:${PORTSDIR}/www/php5-session \
X		${LOCALBASE}/lib/php/%%VERSION%%/simplexml.so:${PORTSDIR}/textproc/php5-simplexml \
X		${LOCALBASE}/lib/php/%%VERSION%%/sockets.so:${PORTSDIR}/net/php5-sockets \
X		${LOCALBASE}/lib/php/%%VERSION%%/sqlite.so:${PORTSDIR}/databases/php5-sqlite \
X		${LOCALBASE}/lib/php/%%VERSION%%/tokenizer.so:${PORTSDIR}/devel/php5-tokenizer \
X		${LOCALBASE}/lib/php/%%VERSION%%/xml.so:${PORTSDIR}/textproc/php5-xml \
X		${LOCALBASE}/lib/php/%%VERSION%%/wddx.so:${PORTSDIR}/textproc/php5-wddx \
X		${LOCALBASE}/lib/php/%%VERSION%%/xmlreader.so:${PORTSDIR}/textproc/php5-xmlreader \
X		${LOCALBASE}/lib/php/%%VERSION%%/xmlwriter.so:${PORTSDIR}/textproc/php5-xmlwriter \
X		${LOCALBASE}/lib/php/%%VERSION%%/xmlrpc.so:${PORTSDIR}/net/php5-xmlrpc \
X		${LOCALBASE}/bin/pear:${PORTSDIR}/devel/pear \
X		${PEARDIR}/Mail/mime.php:${PORTSDIR}/mail/pear-Mail_Mime \
X		${PEARDIR}/Mail/mimeDecode.php:${PORTSDIR}/mail/pear-Mail_mimeDecode \
X		${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB \
X		${PEARDIR}/Pager/Pager.php:${PORTSDIR}/devel/pear-Pager \
X		${PEARDIR}/Net/Socket.php:${PORTSDIR}/net/pear-Net_Socket \
X		${PEARDIR}/Net/SMTP.php:${PORTSDIR}/net/pear-Net_SMTP \
X		${PEARDIR}/Log.php:${PORTSDIR}/sysutils/pear-Log \
X		${LOCALBASE}/share/smarty/Smarty.class.php:${PORTSDIR}/www/smarty
X.endif
X
X.if defined(WITH_MYSQL)
XRUN_DEPENDS+=	${LOCALBASE}/bin/mysqld_safe:${PORTSDIR}/databases/mysql51-server \
X		${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql
X.endif
X
X.if defined(WITH_PGSQL)
XRUN_DEPENDS+=	${LOCALBASE}/bin/pg_ctl:${PORTSDIR}/databases/postgresql90-server \
X		${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg
X.endif
X
X.if defined(WITH_DOVECOT)
XRUN_DEPENDS+=	${LOCALBASE}/sbin/dovecot:${PORTSDIR}/mail/dovecot
X.endif
X
X.if defined(WITH_POSTFIX)
XRUN_DEPENDS+=	${LOCALBASE}/sbin/postfix:${PORTSDIR}/mail/postfix
X.endif
X
X.if defined(WITH_PFA)
XRUN_DEPENDS+=	${LOCALBASE}/www/postfixadmin/config.inc.php:${PORTSDIR}/mail/postfixadmin
X.endif
X
X.if defined(WITH_FUZZYOCR)
XRUN_DEPENDS+=	${SITE_PERL}/Mail/SpamAssassin/Plugin/FuzzyOcr.pm:${PORTSDIR}/mail/p5-FuzzyOcr-devel
X.endif
X
X.if defined(WITH_CLAMAV)
XRUN_DEPENDS+=	${LOCALBASE}/sbin/clamd:${PORTSDIR}/security/clamav
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_GRAPHICS)
XRUN_DEPENDS+=	${PEARDIR}/Image/Color.php:${PORTSDIR}/graphics/pear-Image_Color \
X		${PEARDIR}/Image/Canvas.php:${PORTSDIR}/graphics/pear-Image_Canvas \
X		${PEARDIR}/Image/Graph.php:${PORTSDIR}/graphics/pear-Image_Graph \
X		${PEARDIR}/Numbers/Roman.php:${PORTSDIR}/textproc/pear-Numbers_Roman \
X		${PEARDIR}/Words.php:${PORTSDIR}/textproc/pear-Numbers_Words
X.endif
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_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.pm:${PORTSDIR}/mail/p5-Mail-SPF
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.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>
ab4027e56bdcc7f799f68981b5d1e04e
echo x - maia/distinfo
sed 's/^X//' >maia/distinfo << '6fc935fb05d9b318594ecf1d316b4ef1'
XMD5 (maia-1.0.2a.tar.gz) = fffdceb049728ecdf69afc80d20e9862
XSHA256 (maia-1.0.2a.tar.gz) = 489a8216a641eb11d1d227f3d894970d98d4cf828216e9f05ca2f35d32d1400d
XSIZE (maia-1.0.2a.tar.gz) = 2223707
6fc935fb05d9b318594ecf1d316b4ef1
echo x - maia/pkg-descr
sed 's/^X//' >maia/pkg-descr << '81bdbd40a87d7a23613922ba97a8005b'
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/
81bdbd40a87d7a23613922ba97a8005b
echo x - maia/pkg-plist
sed 's/^X//' >maia/pkg-plist << '948ebda2fbcfa294e0793785b7b3fb7f'
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/10.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%%/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-logo-old.gif
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/jquery/images/arrowdown.gif
X%%WWWDIR%%/libs/jquery/images/arrowleft.gif
X%%WWWDIR%%/libs/jquery/images/arrowright.gif
X%%WWWDIR%%/libs/jquery/images/arrowup.gif
X%%WWWDIR%%/libs/jquery/images/bl.gif
X%%WWWDIR%%/libs/jquery/images/bl.png
X%%WWWDIR%%/libs/jquery/images/br.gif
X%%WWWDIR%%/libs/jquery/images/br.png
X%%WWWDIR%%/libs/jquery/images/darrowdown.gif
X%%WWWDIR%%/libs/jquery/images/darrowleft.gif
X%%WWWDIR%%/libs/jquery/images/darrowright.gif
X%%WWWDIR%%/libs/jquery/images/darrowup.gif
X%%WWWDIR%%/libs/jquery/images/loadingAnimation.gif
X%%WWWDIR%%/libs/jquery/images/rarrowdown.gif
X%%WWWDIR%%/libs/jquery/images/rarrowleft.gif
X%%WWWDIR%%/libs/jquery/images/rarrowright.gif
X%%WWWDIR%%/libs/jquery/images/rarrowup.gif
X%%WWWDIR%%/libs/jquery/images/tl.gif
X%%WWWDIR%%/libs/jquery/images/tl.png
X%%WWWDIR%%/libs/jquery/images/tr.gif
X%%WWWDIR%%/libs/jquery/images/tr.png
X%%WWWDIR%%/libs/jquery/jquery-1.4.2.min.js
X%%WWWDIR%%/libs/jquery/jquery-ui.min.js
X%%WWWDIR%%/libs/jquery/jquery.bgiframe.js
X%%WWWDIR%%/libs/jquery/jquery.dimensions.js
X%%WWWDIR%%/libs/jquery/jquery.hoverIntent.js
X%%WWWDIR%%/libs/jquery/jquery.tooltip.css
X%%WWWDIR%%/libs/jquery/jquery.tooltip.js
X%%WWWDIR%%/libs/jquery/jquery.tooltip.min.js
X%%WWWDIR%%/libs/jquery/jquery.tooltip.pack.js
X%%WWWDIR%%/libs/jquery/macFFBgHack.png
X%%WWWDIR%%/libs/jquery/selectToUISlider.jQuery.js
X%%WWWDIR%%/libs/jquery/simpletip.js
X%%WWWDIR%%/libs/jquery/thickbox.css
X%%WWWDIR%%/libs/jquery/thickbox.js
X%%WWWDIR%%/libs/jquery/ui.slider.extras.css
X%%WWWDIR%%/libs/jquery/wait.gif
X%%WWWDIR%%/libs/pngfix.js
X%%WWWDIR%%/list-cache.php
X%%WWWDIR%%/locale/cs/admindex.php
X%%WWWDIR%%/locale/cs/admindomains.php
X%%WWWDIR%%/locale/cs/adminhelp.php
X%%WWWDIR%%/locale/cs/adminlanguages.php
X%%WWWDIR%%/locale/cs/adminstats.php
X%%WWWDIR%%/locale/cs/adminsystem.php
X%%WWWDIR%%/locale/cs/adminthemes.php
X%%WWWDIR%%/locale/cs/adminusers.php
X%%WWWDIR%%/locale/cs/adminviruses.php
X%%WWWDIR%%/locale/cs/auth.php
X%%WWWDIR%%/locale/cs/confirmspam.php
X%%WWWDIR%%/locale/cs/db.php
X%%WWWDIR%%/locale/cs/deleteitem.php
X%%WWWDIR%%/locale/cs/deliver.php
X%%WWWDIR%%/locale/cs/display.php
X%%WWWDIR%%/locale/cs/domainsettings.php
X%%WWWDIR%%/locale/cs/falsenegative.php
X%%WWWDIR%%/locale/cs/help.php
X%%WWWDIR%%/locale/cs/internal-init.php
X%%WWWDIR%%/locale/cs/login.php
X%%WWWDIR%%/locale/cs/logout.php
X%%WWWDIR%%/locale/cs/mime.php
X%%WWWDIR%%/locale/cs/quarantine.php
X%%WWWDIR%%/locale/cs/reportspam.php
X%%WWWDIR%%/locale/cs/rulestats.php
X%%WWWDIR%%/locale/cs/settings.php
X%%WWWDIR%%/locale/cs/smtp.php
X%%WWWDIR%%/locale/cs/stats.php
X%%WWWDIR%%/locale/cs/viewmail.php
X%%WWWDIR%%/locale/cs/virusstats.php
X%%WWWDIR%%/locale/cs/wblist.php
X%%WWWDIR%%/locale/cs/welcome.php
X%%WWWDIR%%/locale/cs/xadminusers.php
X%%WWWDIR%%/locale/cs/xlogin.php
X%%WWWDIR%%/locale/da/admindex.php
X%%WWWDIR%%/locale/da/admindomains.php
X%%WWWDIR%%/locale/da/adminhelp.php
X%%WWWDIR%%/locale/da/adminlanguages.php
X%%WWWDIR%%/locale/da/adminstats.php
X%%WWWDIR%%/locale/da/adminsystem.php
X%%WWWDIR%%/locale/da/adminthemes.php
X%%WWWDIR%%/locale/da/adminusers.php
X%%WWWDIR%%/locale/da/adminviruses.php
X%%WWWDIR%%/locale/da/auth.php
X%%WWWDIR%%/locale/da/confirmspam.php
X%%WWWDIR%%/locale/da/db.php
X%%WWWDIR%%/locale/da/deleteitem.php
X%%WWWDIR%%/locale/da/deliver.php
X%%WWWDIR%%/locale/da/display.php
X%%WWWDIR%%/locale/da/domainsettings.php
X%%WWWDIR%%/locale/da/falsenegative.php
X%%WWWDIR%%/locale/da/help.php
X%%WWWDIR%%/locale/da/internal-init.php
X%%WWWDIR%%/locale/da/login.php
X%%WWWDIR%%/locale/da/logout.php
X%%WWWDIR%%/locale/da/mime.php
X%%WWWDIR%%/locale/da/quarantine.php
X%%WWWDIR%%/locale/da/quickstats.php
X%%WWWDIR%%/locale/da/reportspam.php
X%%WWWDIR%%/locale/da/rulestats.php
X%%WWWDIR%%/locale/da/settings.php
X%%WWWDIR%%/locale/da/smtp.php
X%%WWWDIR%%/locale/da/stats.php
X%%WWWDIR%%/locale/da/viewmail.php
X%%WWWDIR%%/locale/da/virusstats.php
X%%WWWDIR%%/locale/da/wblist.php
X%%WWWDIR%%/locale/da/welcome.php
X%%WWWDIR%%/locale/da/xadminusers.php
X%%WWWDIR%%/locale/da/xlogin.php
X%%WWWDIR%%/locale/de/admindex.php
X%%WWWDIR%%/locale/de/admindomains.php
X%%WWWDIR%%/locale/de/adminhelp.php
X%%WWWDIR%%/locale/de/adminlanguages.php
X%%WWWDIR%%/locale/de/adminstats.php
X%%WWWDIR%%/locale/de/adminsystem.php
X%%WWWDIR%%/locale/de/adminthemes.php
X%%WWWDIR%%/locale/de/adminusers.php
X%%WWWDIR%%/locale/de/adminviruses.php
X%%WWWDIR%%/locale/de/auth.php
X%%WWWDIR%%/locale/de/confirmspam.php
X%%WWWDIR%%/locale/de/db.php
X%%WWWDIR%%/locale/de/deleteitem.php
X%%WWWDIR%%/locale/de/deliver.php
X%%WWWDIR%%/locale/de/display.php
X%%WWWDIR%%/locale/de/domainsettings.php
X%%WWWDIR%%/locale/de/falsenegative.php
X%%WWWDIR%%/locale/de/help.php
X%%WWWDIR%%/locale/de/internal-init.php
X%%WWWDIR%%/locale/de/listcache.php
X%%WWWDIR%%/locale/de/login.php
X%%WWWDIR%%/locale/de/logout.php
X%%WWWDIR%%/locale/de/mime.php
X%%WWWDIR%%/locale/de/quarantine.php
X%%WWWDIR%%/locale/de/quickstats.php
X%%WWWDIR%%/locale/de/reportspam.php
X%%WWWDIR%%/locale/de/rulestats.php
X%%WWWDIR%%/locale/de/settings.php
X%%WWWDIR%%/locale/de/smtp.php
X%%WWWDIR%%/locale/de/stats.php
X%%WWWDIR%%/locale/de/viewmail.php
X%%WWWDIR%%/locale/de/virusstats.php
X%%WWWDIR%%/locale/de/wblist.php
X%%WWWDIR%%/locale/de/welcome.php
X%%WWWDIR%%/locale/de/xadminusers.php
X%%WWWDIR%%/locale/de/xlogin.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/errors.php
X%%WWWDIR%%/locale/en/falsenegative.php
X%%WWWDIR%%/locale/en/help.php
X%%WWWDIR%%/locale/en/internal-init.php
X%%WWWDIR%%/locale/en/listcache.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/quickstats.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%%/locale/fr/admindex.php
X%%WWWDIR%%/locale/fr/admindomains.php
X%%WWWDIR%%/locale/fr/adminhelp.php
X%%WWWDIR%%/locale/fr/adminlanguages.php
X%%WWWDIR%%/locale/fr/adminstats.php
X%%WWWDIR%%/locale/fr/adminsystem.php
X%%WWWDIR%%/locale/fr/adminusers.php
X%%WWWDIR%%/locale/fr/adminviruses.php
X%%WWWDIR%%/locale/fr/auth.php
X%%WWWDIR%%/locale/fr/confirmspam.php
X%%WWWDIR%%/locale/fr/db.php
X%%WWWDIR%%/locale/fr/deleteitem.php
X%%WWWDIR%%/locale/fr/deliver.php
X%%WWWDIR%%/locale/fr/display.php
X%%WWWDIR%%/locale/fr/domainsettings.php
X%%WWWDIR%%/locale/fr/falsenegative.php
X%%WWWDIR%%/locale/fr/help.php
X%%WWWDIR%%/locale/fr/internal-init.php
X%%WWWDIR%%/locale/fr/login.php
X%%WWWDIR%%/locale/fr/logout.php
X%%WWWDIR%%/locale/fr/mime.php
X%%WWWDIR%%/locale/fr/quarantine.php
X%%WWWDIR%%/locale/fr/quickstats.php
X%%WWWDIR%%/locale/fr/reportspam.php
X%%WWWDIR%%/locale/fr/rulestats.php
X%%WWWDIR%%/locale/fr/settings.php
X%%WWWDIR%%/locale/fr/smtp.php
X%%WWWDIR%%/locale/fr/stats.php
X%%WWWDIR%%/locale/fr/viewmail.php
X%%WWWDIR%%/locale/fr/virusstats.php
X%%WWWDIR%%/locale/fr/wblist.php
X%%WWWDIR%%/locale/fr/welcome.php
X%%WWWDIR%%/locale/fr/xadminusers.php
X%%WWWDIR%%/locale/fr/xlogin.php
X%%WWWDIR%%/locale/hu/admindex.php
X%%WWWDIR%%/locale/hu/admindomains.php
X%%WWWDIR%%/locale/hu/adminhelp.php
X%%WWWDIR%%/locale/hu/adminlanguages.php
X%%WWWDIR%%/locale/hu/adminstats.php
X%%WWWDIR%%/locale/hu/adminsystem.php
X%%WWWDIR%%/locale/hu/adminusers.php
X%%WWWDIR%%/locale/hu/adminviruses.php
X%%WWWDIR%%/locale/hu/auth.php
X%%WWWDIR%%/locale/hu/confirmspam.php
X%%WWWDIR%%/locale/hu/db.php
X%%WWWDIR%%/locale/hu/deleteitem.php
X%%WWWDIR%%/locale/hu/deliver.php
X%%WWWDIR%%/locale/hu/display.php
X%%WWWDIR%%/locale/hu/domainsettings.php
X%%WWWDIR%%/locale/hu/falsenegative.php
X%%WWWDIR%%/locale/hu/help.php
X%%WWWDIR%%/locale/hu/internal-init.php
X%%WWWDIR%%/locale/hu/login.php
X%%WWWDIR%%/locale/hu/logout.php
X%%WWWDIR%%/locale/hu/mime.php
X%%WWWDIR%%/locale/hu/quarantine.php
X%%WWWDIR%%/locale/hu/quickstats.php
X%%WWWDIR%%/locale/hu/reportspam.php
X%%WWWDIR%%/locale/hu/rulestats.php
X%%WWWDIR%%/locale/hu/settings.php
X%%WWWDIR%%/locale/hu/smtp.php
X%%WWWDIR%%/locale/hu/stats.php
X%%WWWDIR%%/locale/hu/viewmail.php
X%%WWWDIR%%/locale/hu/virusstats.php
X%%WWWDIR%%/locale/hu/wblist.php
X%%WWWDIR%%/locale/hu/welcome.php
X%%WWWDIR%%/locale/hu/xadminusers.php
X%%WWWDIR%%/locale/hu/xlogin.php
X%%WWWDIR%%/locale/it/README
X%%WWWDIR%%/locale/it/admindex.php
X%%WWWDIR%%/locale/it/admindomains.php
X%%WWWDIR%%/locale/it/adminhelp.php
X%%WWWDIR%%/locale/it/adminlanguages.php
X%%WWWDIR%%/locale/it/adminstats.php
X%%WWWDIR%%/locale/it/adminsystem.php
X%%WWWDIR%%/locale/it/adminthemes.php
X%%WWWDIR%%/locale/it/adminusers.php
X%%WWWDIR%%/locale/it/adminviruses.php
X%%WWWDIR%%/locale/it/auth.php
X%%WWWDIR%%/locale/it/confirmspam.php
X%%WWWDIR%%/locale/it/db.php
X%%WWWDIR%%/locale/it/deleteitem.php
X%%WWWDIR%%/locale/it/deliver.php
X%%WWWDIR%%/locale/it/display.php
X%%WWWDIR%%/locale/it/domainsettings.php
X%%WWWDIR%%/locale/it/falsenegative.php
X%%WWWDIR%%/locale/it/help.php
X%%WWWDIR%%/locale/it/internal-init.php
X%%WWWDIR%%/locale/it/login.php
X%%WWWDIR%%/locale/it/logout.php
X%%WWWDIR%%/locale/it/mime.php
X%%WWWDIR%%/locale/it/quarantine.php
X%%WWWDIR%%/locale/it/reportspam.php
X%%WWWDIR%%/locale/it/rulestats.php
X%%WWWDIR%%/locale/it/settings.php
X%%WWWDIR%%/locale/it/smtp.php
X%%WWWDIR%%/locale/it/stats.php
X%%WWWDIR%%/locale/it/viewmail.php
X%%WWWDIR%%/locale/it/virusstats.php
X%%WWWDIR%%/locale/it/wblist.php
X%%WWWDIR%%/locale/it/welcome.php
X%%WWWDIR%%/locale/it/xadminusers.php
X%%WWWDIR%%/locale/it/xlogin.php
X%%WWWDIR%%/locale/nl/admindex.php
X%%WWWDIR%%/locale/nl/admindomains.php
X%%WWWDIR%%/locale/nl/adminhelp.php
X%%WWWDIR%%/locale/nl/adminlanguages.php
X%%WWWDIR%%/locale/nl/adminstats.php
X%%WWWDIR%%/locale/nl/adminsystem.php
X%%WWWDIR%%/locale/nl/adminthemes.php
X%%WWWDIR%%/locale/nl/adminusers.php
X%%WWWDIR%%/locale/nl/adminviruses.php
X%%WWWDIR%%/locale/nl/auth.php
X%%WWWDIR%%/locale/nl/confirmspam.php
X%%WWWDIR%%/locale/nl/db.php
X%%WWWDIR%%/locale/nl/deleteitem.php
X%%WWWDIR%%/locale/nl/deliver.php
X%%WWWDIR%%/locale/nl/display.php
X%%WWWDIR%%/locale/nl/domainsettings.php
X%%WWWDIR%%/locale/nl/falsenegative.php
X%%WWWDIR%%/locale/nl/help.php
X%%WWWDIR%%/locale/nl/internal-init.php
X%%WWWDIR%%/locale/nl/login.php
X%%WWWDIR%%/locale/nl/logout.php
X%%WWWDIR%%/locale/nl/mime.php
X%%WWWDIR%%/locale/nl/quarantine.php
X%%WWWDIR%%/locale/nl/quickstats.php
X%%WWWDIR%%/locale/nl/reportspam.php
X%%WWWDIR%%/locale/nl/rulestats.php
X%%WWWDIR%%/locale/nl/settings.php
X%%WWWDIR%%/locale/nl/smtp.php
X%%WWWDIR%%/locale/nl/stats.php
X%%WWWDIR%%/locale/nl/viewmail.php
X%%WWWDIR%%/locale/nl/virusstats.php
X%%WWWDIR%%/locale/nl/wblist.php
X%%WWWDIR%%/locale/nl/welcome.php
X%%WWWDIR%%/locale/nl/xadminusers.php
X%%WWWDIR%%/locale/nl/xlogin.php
X%%WWWDIR%%/locale/no/admindex.php
X%%WWWDIR%%/locale/no/admindomains.php
X%%WWWDIR%%/locale/no/adminhelp.php
X%%WWWDIR%%/locale/no/adminlanguages.php
X%%WWWDIR%%/locale/no/adminstats.php
X%%WWWDIR%%/locale/no/adminsystem.php
X%%WWWDIR%%/locale/no/adminusers.php
X%%WWWDIR%%/locale/no/adminviruses.php
X%%WWWDIR%%/locale/no/auth.php
X%%WWWDIR%%/locale/no/confirmspam.php
X%%WWWDIR%%/locale/no/db.php
X%%WWWDIR%%/locale/no/deleteitem.php
X%%WWWDIR%%/locale/no/deliver.php
X%%WWWDIR%%/locale/no/display.php
X%%WWWDIR%%/locale/no/domainsettings.php
X%%WWWDIR%%/locale/no/falsenegative.php
X%%WWWDIR%%/locale/no/help.php
X%%WWWDIR%%/locale/no/internal-init.php
X%%WWWDIR%%/locale/no/login.php
X%%WWWDIR%%/locale/no/logout.php
X%%WWWDIR%%/locale/no/mime.php
X%%WWWDIR%%/locale/no/quarantine.php
X%%WWWDIR%%/locale/no/quickstats.php
X%%WWWDIR%%/locale/no/reportspam.php
X%%WWWDIR%%/locale/no/rulestats.php
X%%WWWDIR%%/locale/no/settings.php
X%%WWWDIR%%/locale/no/smtp.php
X%%WWWDIR%%/locale/no/stats.php
X%%WWWDIR%%/locale/no/viewmail.php
X%%WWWDIR%%/locale/no/virusstats.php
X%%WWWDIR%%/locale/no/wblist.php
X%%WWWDIR%%/locale/no/welcome.php
X%%WWWDIR%%/locale/no/xadminusers.php
X%%WWWDIR%%/locale/no/xlogin.php
X%%WWWDIR%%/locale/pt/admindex.php
X%%WWWDIR%%/locale/pt/admindomains.php
X%%WWWDIR%%/locale/pt/adminhelp.php
X%%WWWDIR%%/locale/pt/adminlanguages.php
X%%WWWDIR%%/locale/pt/adminstats.php
X%%WWWDIR%%/locale/pt/adminsystem.php
X%%WWWDIR%%/locale/pt/adminthemes.php
X%%WWWDIR%%/locale/pt/adminusers.php
X%%WWWDIR%%/locale/pt/adminviruses.php
X%%WWWDIR%%/locale/pt/auth.php
X%%WWWDIR%%/locale/pt/confirmspam.php
X%%WWWDIR%%/locale/pt/db.php
X%%WWWDIR%%/locale/pt/deleteitem.php
X%%WWWDIR%%/locale/pt/deliver.php
X%%WWWDIR%%/locale/pt/display.php
X%%WWWDIR%%/locale/pt/domainsettings.php
X%%WWWDIR%%/locale/pt/falsenegative.php
X%%WWWDIR%%/locale/pt/help.php
X%%WWWDIR%%/locale/pt/internal-init.php
X%%WWWDIR%%/locale/pt/login.php
X%%WWWDIR%%/locale/pt/logout.php
X%%WWWDIR%%/locale/pt/mime.php
X%%WWWDIR%%/locale/pt/quarantine.php
X%%WWWDIR%%/locale/pt/quickstats.php
X%%WWWDIR%%/locale/pt/reportspam.php
X%%WWWDIR%%/locale/pt/rulestats.php
X%%WWWDIR%%/locale/pt/settings.php
X%%WWWDIR%%/locale/pt/smtp.php
X%%WWWDIR%%/locale/pt/stats.php
X%%WWWDIR%%/locale/pt/viewmail.php
X%%WWWDIR%%/locale/pt/virusstats.php
X%%WWWDIR%%/locale/pt/wblist.php
X%%WWWDIR%%/locale/pt/welcome.php
X%%WWWDIR%%/locale/pt/xadminusers.php
X%%WWWDIR%%/locale/pt/xlogin.php
X%%WWWDIR%%/locale/sv/admindex.php
X%%WWWDIR%%/locale/sv/admindomains.php
X%%WWWDIR%%/locale/sv/adminhelp.php
X%%WWWDIR%%/locale/sv/adminlanguages.php
X%%WWWDIR%%/locale/sv/adminstats.php
X%%WWWDIR%%/locale/sv/adminsystem.php
X%%WWWDIR%%/locale/sv/adminusers.php
X%%WWWDIR%%/locale/sv/adminviruses.php
X%%WWWDIR%%/locale/sv/auth.php
X%%WWWDIR%%/locale/sv/confirmspam.php
X%%WWWDIR%%/locale/sv/db.php
X%%WWWDIR%%/locale/sv/deleteitem.php
X%%WWWDIR%%/locale/sv/deliver.php
X%%WWWDIR%%/locale/sv/display.php
X%%WWWDIR%%/locale/sv/domainsettings.php
X%%WWWDIR%%/locale/sv/falsenegative.php
X%%WWWDIR%%/locale/sv/help.php
X%%WWWDIR%%/locale/sv/internal-init.php
X%%WWWDIR%%/locale/sv/login.php
X%%WWWDIR%%/locale/sv/logout.php
X%%WWWDIR%%/locale/sv/mime.php
X%%WWWDIR%%/locale/sv/quarantine.php
X%%WWWDIR%%/locale/sv/quickstats.php
X%%WWWDIR%%/locale/sv/reportspam.php
X%%WWWDIR%%/locale/sv/rulestats.php
X%%WWWDIR%%/locale/sv/settings.php
X%%WWWDIR%%/locale/sv/smtp.php
X%%WWWDIR%%/locale/sv/stats.php
X%%WWWDIR%%/locale/sv/viewmail.php
X%%WWWDIR%%/locale/sv/virusstats.php
X%%WWWDIR%%/locale/sv/wblist.php
X%%WWWDIR%%/locale/sv/welcome.php
X%%WWWDIR%%/locale/sv/xadminusers.php
X%%WWWDIR%%/locale/sv/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/.htaccess
X%%WWWDIR%%/themes/desert_sand/code/function.form.php
X%%WWWDIR%%/themes/desert_sand/code/modifier.mb_truncate.php
X%%WWWDIR%%/themes/desert_sand/code/smarty.php
X%%WWWDIR%%/themes/desert_sand/css/.htaccess
X%%WWWDIR%%/themes/desert_sand/css/images/ui-bg_flat_75_aaaaaa_40x100.png
X%%WWWDIR%%/themes/desert_sand/css/images/ui-bg_glass_100_f5f0e5_1x400.png
X%%WWWDIR%%/themes/desert_sand/css/images/ui-bg_glass_70_ede4d4_1x400.png
X%%WWWDIR%%/themes/desert_sand/css/images/ui-bg_highlight-hard_100_f4f0ec_1x100.png
X%%WWWDIR%%/themes/desert_sand/css/images/ui-bg_highlight-hard_25_dfcfbf_1x100.png
X%%WWWDIR%%/themes/desert_sand/css/images/ui-bg_highlight-hard_65_fee4bd_1x100.png
X%%WWWDIR%%/themes/desert_sand/css/images/ui-bg_highlight-hard_75_f5f5b5_1x100.png
X%%WWWDIR%%/themes/desert_sand/css/images/ui-bg_highlight-soft_100_f4f0ec_1x100.png
X%%WWWDIR%%/themes/desert_sand/css/images/ui-icons_69491c_256x240.png
X%%WWWDIR%%/themes/desert_sand/css/images/ui-icons_7d5a2b_256x240.png
X%%WWWDIR%%/themes/desert_sand/css/images/ui-icons_9a6432_256x240.png
X%%WWWDIR%%/themes/desert_sand/css/images/ui-icons_b67c3a_256x240.png
X%%WWWDIR%%/themes/desert_sand/css/images/ui-icons_c99c69_256x240.png
X%%WWWDIR%%/themes/desert_sand/css/images/ui-icons_ff3b19_256x240.png
X%%WWWDIR%%/themes/desert_sand/css/images/ui-icons_ffffff_256x240.png
X%%WWWDIR%%/themes/desert_sand/css/jquery-ui-1.7.1.custom.css
X%%WWWDIR%%/themes/desert_sand/css/style.css
X%%WWWDIR%%/themes/desert_sand/images/.htaccess
X%%WWWDIR%%/themes/desert_sand/images/Cancel.png
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/blockallow.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-old.gif
X%%WWWDIR%%/themes/desert_sand/images/maia-logo.gif
X%%WWWDIR%%/themes/desert_sand/images/maia-logotoolbar.gif
X%%WWWDIR%%/themes/desert_sand/images/paw-logo-black.png
X%%WWWDIR%%/themes/desert_sand/images/poweredbymaia.gif
X%%WWWDIR%%/themes/desert_sand/images/quarantine.png
X%%WWWDIR%%/themes/desert_sand/images/redgreenballs.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/square-gray-decoded.gif
X%%WWWDIR%%/themes/desert_sand/images/square-gray-delete.gif
X%%WWWDIR%%/themes/desert_sand/images/square-gray-ham.gif
X%%WWWDIR%%/themes/desert_sand/images/square-gray-left.gif
X%%WWWDIR%%/themes/desert_sand/images/square-gray-raw.gif
X%%WWWDIR%%/themes/desert_sand/images/square-gray-resend.gif
X%%WWWDIR%%/themes/desert_sand/images/square-gray-right.gif
X%%WWWDIR%%/themes/desert_sand/images/square-gray-spam.gif
X%%WWWDIR%%/themes/desert_sand/images/square-gray-sprite.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/javascript/.htaccess
X%%WWWDIR%%/themes/desert_sand/javascript/desert_sand.js
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/settings/_address.tpl
X%%WWWDIR%%/themes/desert_sand/templates/settings/_addresslist.tpl
X%%WWWDIR%%/themes/desert_sand/templates/settings/_changelogin.tpl
X%%WWWDIR%%/themes/desert_sand/templates/settings/_domainadmin.tpl
X%%WWWDIR%%/themes/desert_sand/templates/settings/_misc.tpl
X%%WWWDIR%%/themes/desert_sand/templates/settings/_userlist-table.tpl
X%%WWWDIR%%/themes/desert_sand/templates/stats.tpl
X%%WWWDIR%%/themes/desert_sand/templates/view-headers.tpl
X%%WWWDIR%%/themes/desert_sand/templates/view-message.tpl
X%%WWWDIR%%/themes/desert_sand/templates/view-smtp.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/welcome/_protection.tpl
X%%WWWDIR%%/themes/desert_sand/templates/welcome/_quickview.tpl
X%%WWWDIR%%/themes/desert_sand/templates/welcome/_stats.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/code/function.form.php
X%%WWWDIR%%/themes/ocean_surf/code/modifier.mb_truncate.php
X%%WWWDIR%%/themes/ocean_surf/css/.htaccess
X%%WWWDIR%%/themes/ocean_surf/css/images/ui-bg_flat_0_aaaaaa_40x100.png
X%%WWWDIR%%/themes/ocean_surf/css/images/ui-bg_flat_55_fbec88_40x100.png
X%%WWWDIR%%/themes/ocean_surf/css/images/ui-bg_glass_75_CEF3FF_1x400.png
X%%WWWDIR%%/themes/ocean_surf/css/images/ui-bg_glass_85_6FDBFF_1x400.png
X%%WWWDIR%%/themes/ocean_surf/css/images/ui-bg_glass_95_fef1ec_1x400.png
X%%WWWDIR%%/themes/ocean_surf/css/images/ui-bg_gloss-wave_55_B0ECFF_500x100.png
X%%WWWDIR%%/themes/ocean_surf/css/images/ui-bg_inset-hard_100_dbf6ff_1x100.png
X%%WWWDIR%%/themes/ocean_surf/css/images/ui-bg_inset-hard_100_e5f9ff_1x100.png
X%%WWWDIR%%/themes/ocean_surf/css/images/ui-icons_008bb8_256x240.png
X%%WWWDIR%%/themes/ocean_surf/css/images/ui-icons_2e4d57_256x240.png
X%%WWWDIR%%/themes/ocean_surf/css/images/ui-icons_2e83ff_256x240.png
X%%WWWDIR%%/themes/ocean_surf/css/images/ui-icons_cd0a0a_256x240.png
X%%WWWDIR%%/themes/ocean_surf/css/jquery-ui-1.7.1.custom.css
X%%WWWDIR%%/themes/ocean_surf/css/style.css
X%%WWWDIR%%/themes/ocean_surf/images/.htaccess
X%%WWWDIR%%/themes/ocean_surf/images/Add.png
X%%WWWDIR%%/themes/ocean_surf/images/Cancel.png
X%%WWWDIR%%/themes/ocean_surf/images/Delete.png
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-old.gif
X%%WWWDIR%%/themes/ocean_surf/images/maia-logo.gif
X%%WWWDIR%%/themes/ocean_surf/images/maia-logotoolbar.gif
X%%WWWDIR%%/themes/ocean_surf/images/paw-logo-black.png
X%%WWWDIR%%/themes/ocean_surf/images/poweredbymaia.gif
X%%WWWDIR%%/themes/ocean_surf/images/quarantine.png
X%%WWWDIR%%/themes/ocean_surf/images/redgreenballs.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/square-gray-sprite.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/javascript/.htaccess
X%%WWWDIR%%/themes/ocean_surf/javascript/ocean_blue.js
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/settings/_address.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/settings/_addresslist.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/settings/_changelogin.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/settings/_domainadmin.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/settings/_misc.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/settings/_userlist-table.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/stats.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/view-headers.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/view-message.tpl
X%%WWWDIR%%/themes/ocean_surf/templates/view-smtp.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%%WWWDIR%%/xsettings.php
X@dirrm %%WWWDIR%%/themes/ocean_surf/templates/settings
X@dirrm %%WWWDIR%%/themes/ocean_surf/templates
X@dirrm %%WWWDIR%%/themes/ocean_surf/javascript
X@dirrm %%WWWDIR%%/themes/ocean_surf/images
X@dirrm %%WWWDIR%%/themes/ocean_surf/css/images
X@dirrm %%WWWDIR%%/themes/ocean_surf/css
X@dirrm %%WWWDIR%%/themes/ocean_surf/compiled
X@dirrm %%WWWDIR%%/themes/ocean_surf/code
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/welcome
X@dirrm %%WWWDIR%%/themes/desert_sand/templates/settings
X@dirrm %%WWWDIR%%/themes/desert_sand/templates
X@dirrm %%WWWDIR%%/themes/desert_sand/javascript
X@dirrm %%WWWDIR%%/themes/desert_sand/images
X@dirrm %%WWWDIR%%/themes/desert_sand/css/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/sv
X@dirrm %%WWWDIR%%/locale/pt
X@dirrm %%WWWDIR%%/locale/no
X@dirrm %%WWWDIR%%/locale/nl
X@dirrm %%WWWDIR%%/locale/it
X@dirrm %%WWWDIR%%/locale/hu
X@dirrm %%WWWDIR%%/locale/fr
X@dirrm %%WWWDIR%%/locale/en
X@dirrm %%WWWDIR%%/locale/de
X@dirrm %%WWWDIR%%/locale/da
X@dirrm %%WWWDIR%%/locale/cs
X@dirrm %%WWWDIR%%/locale
X@dirrm %%WWWDIR%%/libs/jquery/images
X@dirrm %%WWWDIR%%/libs/jquery
X@dirrm %%WWWDIR%%/libs
X@dirrm %%WWWDIR%%/images
X@dirrm %%WWWDIR%%/admin/scripts
X@dirrm %%WWWDIR%%/admin
X@dirrm %%WWWDIR%%
X%%PORTDOCS%%@dirrm %%DOCSDIR%%
X@exec mkdir -p %D/%%WWWDIR%%/themes/ocean_surf/compiled
X@exec mkdir -p %D/%%WWWDIR%%/themes/dgm/compiled
X@exec mkdir -p %D/%%WWWDIR%%/themes/desert_sand/compiled
948ebda2fbcfa294e0793785b7b3fb7f
exit
--- maia.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?20101022064533.2347585BF95>