1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00

- install in WWWDIR

- use some standard macros instead oh home grown scripts
- OPTIONify php RUN_DEPENDs instead of telling the user about them
(uses bsd.port.options.mk)
- use PLIST_FILES for pkg-message
- drop insall script that only complicated things
- fix plist for -DNOPORTDOCS
- bump PORTREVISION

Prompted by:	QA Tindy run
This commit is contained in:
Ion-Mihai Tetcu 2008-06-28 10:53:26 +00:00
parent fb4314447f
commit c54696ecbe
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=215860
4 changed files with 216 additions and 232 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= ismail
PORTVERSION= 2.1
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= www mail
MASTER_SITES= http://mail.electro-com.ru/~az/ISMail/
DISTNAME= ${PORTNAME}-${PORTVERSION}
@ -16,73 +16,72 @@ MAINTAINER= ports@FreeBSD.org
COMMENT= PHP-based webmail client
USE_BZIP2= yes
ISMAILDIR?= www/data/ismail
INSTALLDIR= ${PREFIX}/${ISMAILDIR}
WRKSRC= ${WRKDIR}
PLIST_SUB= ISMAILDIR=${ISMAILDIR}/ \
INSTALLDIR=${INSTALLDIR}/
NO_BUILD= yes
USE_PHP= yes
USE_PHP= imap
WANT_PHP_WEB= yes
SUB_FILES= pkg-message
OPTIONS= DOMXML "Use DOMXML for datastore (only with php4.x)" off \
MYSQL "Use MySQL for datastore" on \
POSTGRESQL "Use PostgresQL for datastore" off
.include <bsd.port.options.mk>
.ifdef(WITH_DOMXML)
USE_PHP+= domxml
IGNORE_WITH_PHP= 5
.endif
.ifdef(WITH_MYSQL)
USE_PHP+= mysql
PLIST_FILES+= ${EXAMPLESDIR_REL}/mysql4.schema
PLIST_DIRS+= ${EXAMPLESDIR_REL}
.endif
.ifdef(WITH_POSTGRESQL)
USE_PHP+= pgsql
PLIST_FILES+= ${EXAMPLESDIR_REL}/pgsql.schema
PLIST_DIRS+= ${EXAMPLESDIR_REL}
.endif
.include <bsd.port.pre.mk>
PORTDOC_FILES= docs.html
PORT_EXAMPLES= mysql4.schema pgsql.schema
LIB_DEPENDS+= c-client4.9:${PORTSDIR}/mail/cclient
SED_SCRIPT= -e 's,%%INSTALL_SCRIPT%%,${INSTALL_SCRIPT},g' \
-e 's,%%MKDIR%%,${MKDIR},g' \
-e 's,%%CHOWN%%,${CHOWN},g' \
-e 's,%%WRKSRC%%,${WRKSRC},g' \
-e 's,%%ISMAILDIR%%,${ISMAILDIR},g' \
-e 's,%%DOCSDIR%%,${DOCSDIR},g' \
-e 's,%%EXAMPLESDIR%%,${EXAMPLESDIR},g' \
-e 's,%%INSTALLDIR%%,${INSTALLDIR},g'
.pre-extract:
.if !defined(WITH_DOMXML) && !defined(WITH_MYSQL) && !defined(WITH_POSTGRESQL)
@${ECHO_MSG} "Pleasee choose at least one of DOMXML, MYSQL, POSTGRESQL"
@${FALSE}
.endif
pre-install:
@${ECHO_MSG} "Inside Systems Mail will be installed to "
@${ECHO_MSG} "${INSTALLDIR}."
@${ECHO_MSG} "To change it, set the following:"
@${ECHO_MSG} ""
@${ECHO_MSG} "PREFIX = ${PREFIX}"
@${ECHO_MSG} "ISMAILDIR = ${ISMAILDIR}"
@${ECHO_MSG} "Inside Systems Mail will be installed to ${WWWDIR}"
@${ECHO_MSG} "Define WWWDIR to change it."
@${ECHO_MSG} ""
@${ECHO_MSG} "Inside Systems Mail requires that mod_php4 be build with"
@${ECHO_MSG} "IMAP support. To enable IMAP support, you must set"
@${ECHO_MSG} ""
@${ECHO_MSG} " WITH_IMAP=yes"
@${ECHO_MSG} ""
@${ECHO_MSG} "One of the following mod_php4 extensions are required to"
@${ECHO_MSG} "use the provided dastores:"
@${ECHO_MSG} "
@${ECHO_MSG} " WITH_DOMXML=yes"
@${ECHO_MSG} " WITH_MYSQL=yes"
@${ECHO_MSG} " WITH_POSTGRESQL=yes"
@${ECHO_MSG} "
@${ECHO_MSG} "Hit Ctrl-C now to cancel the installation"
@sleep 7
@${SED} ${SED_SCRIPT} ${FILESDIR}/install.sh > ${WRKDIR}/install.sh
@${SED} ${SED_SCRIPT} pkg-message > ${WRKDIR}/pkg-message
do-install:
${SH} ${WRKDIR}/install.sh
${CHOWN} -R www:www ${INSTALLDIR}
.if !defined(NOPORTDOCS)
@${MKDIR} ${WWWDIR}
${TAR} --exclude '*~' -C ${WRKSRC}/${PORTNAME} -cf - . | ${TAR} -C ${WWWDIR} -xf -
@${CHOWN} -R www:www ${WWWDIR}
.ifndef(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for docfile in ${PORTDOC_FILES}
@${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
.endfor
${INSTALL_DATA} ${WRKSRC}/docs.html ${DOCSDIR}
.endif
.ifdef(WITH_MYSQL)
@${MKDIR} ${EXAMPLESDIR}
.for example in ${PORT_EXAMPLES}
@${INSTALL_SCRIPT} ${WRKSRC}/examples/${example} ${EXAMPLESDIR}
.endfor
${INSTALL_DATA} ${WRKSRC}/examples/mysql4.schema ${EXAMPLESDIR}
.endif
.ifdef(WITH_POSTGRESQL)
@${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/examples/pgsql.schema ${EXAMPLESDIR}
.endif
post-install:
@${CAT} ${WRKDIR}/pkg-message
@${CAT} ${PKGMEASSAGE}
.include <bsd.port.post.mk>

View File

@ -1,17 +0,0 @@
#!/bin/sh
#
# install.sh v0.1
#
# Install script which reads files from the plist and copies them to the appropriate
# location and makes directories for them if necessary
%%MKDIR%% %%INSTALLDIR%%
# Install the required files
for file in `cat pkg-plist | grep -v @ | grep ISMAILDIR | sed 's,%%[A-Z]*%%,,g'`; do
dir=`echo "${file}" | sed 's,/[^/]*$,/,g'`
if [ -d %%WRKSRC%%/ismail/${dir} ]; then
%%MKDIR%% %%INSTALLDIR%%/${dir}
fi
%%INSTALL_SCRIPT%% %%WRKSRC%%/ismail/${file} %%INSTALLDIR%%/${file}
done

View File

@ -1,21 +1,21 @@
Before Inside Systems Mail will work!!
Before Inside Systems Mail will work:
======================================
An ismail.conf file must be created and placed in
%%INSTALLDIR%%/include
%%WWWDIR%%/include
A reference ismail.conf has been provided at
%%INSTALLDIR%%/include/ismail.conf.sample
%%WWWDIR%%/include/ismail.conf.sample
but requires modification to work. Please check the
provided HTML documentation in %%DOCSDIR%% or browse
http://www.insidesystems.net/projects/project.php?projectid=4
for configuration help.
Note: The default configuration data store requires domxml
to be compiled in to to mod_php4. For alternate datastores,
check %%EXAMPLESDIR%% for sample postgresql and mysql
schemas and set the ismail.conf file accordingly.
Note:
For alternate datastores to domxml, check
%%EXAMPLESDIR%%
for sample postgresql and mysql schemas and set the ismail.conf file accordingly.

View File

@ -1,159 +1,161 @@
%%ISMAILDIR%%addressbook.php
%%ISMAILDIR%%addressbookdecrypt.php
%%ISMAILDIR%%addressbookentry.php
%%ISMAILDIR%%addressbooklist.php
%%ISMAILDIR%%addressbookpopupbottom.php
%%ISMAILDIR%%addressbookpopuplist.php
%%ISMAILDIR%%addressbookpopuptop.php
%%ISMAILDIR%%addressbooktopbar.php
%%ISMAILDIR%%deletefolder.php
%%ISMAILDIR%%dict.php
%%ISMAILDIR%%editaddressbook.php
%%ISMAILDIR%%editsettings.php
%%ISMAILDIR%%error.php
%%ISMAILDIR%%folderlist.php
%%ISMAILDIR%%header.php
%%ISMAILDIR%%hidden.php
%%ISMAILDIR%%include/conffilefunctions.php
%%ISMAILDIR%%include/istheme.conf.sample
%%ISMAILDIR%%include/ismail.conf.sample
%%ISMAILDIR%%include/datastores/template.php
%%ISMAILDIR%%include/datastores/mysql4.php
%%ISMAILDIR%%include/datastores/pgsql.php
%%ISMAILDIR%%include/datastores/xml.php
%%ISMAILDIR%%include/empty.xml
%%ISMAILDIR%%include/globals.php
%%ISMAILDIR%%include/mailfunctions.php
%%ISMAILDIR%%index.php
%%ISMAILDIR%%ismail.php
%%ISMAILDIR%%locale/cs_CZ/LC_MESSAGES/messages.mo
%%ISMAILDIR%%locale/cs_CZ/LC_MESSAGES/messages.po
%%ISMAILDIR%%locale/it_IT/LC_MESSAGES/messages.mo
%%ISMAILDIR%%locale/it_IT/LC_MESSAGES/messages.po
%%ISMAILDIR%%locale/en_US/LC_MESSAGES/messages.mo
%%ISMAILDIR%%locale/en_US/LC_MESSAGES/messages.po
%%ISMAILDIR%%locale/da_DK/LC_MESSAGES/messages.po
%%ISMAILDIR%%locale/da_DK/LC_MESSAGES/messages.mo
%%ISMAILDIR%%login.php
%%ISMAILDIR%%logout.php
%%ISMAILDIR%%mail.php
%%ISMAILDIR%%mailheader.php
%%ISMAILDIR%%maillist.php
%%ISMAILDIR%%maillistheader.php
%%ISMAILDIR%%mailwrapper.php
%%ISMAILDIR%%movemail.php
%%ISMAILDIR%%newfolder.php
%%ISMAILDIR%%sendmail.php
%%ISMAILDIR%%settingseditidentity.php
%%ISMAILDIR%%settingsgeneral.php
%%ISMAILDIR%%settingsidentities.php
%%ISMAILDIR%%settingslist.php
%%ISMAILDIR%%spellcheck.php
%%ISMAILDIR%%statusbar.php
%%ISMAILDIR%%subscribe.php
%%ISMAILDIR%%themes/swarthy/headerbarleftcap.gif
%%ISMAILDIR%%themes/swarthy/checkspelling.gif
%%ISMAILDIR%%themes/swarthy/xtree/foldericon.png
%%ISMAILDIR%%themes/swarthy/xtree/Tminus.png
%%ISMAILDIR%%themes/swarthy/xtree/Lplus.png
%%ISMAILDIR%%themes/swarthy/xtree/file.png
%%ISMAILDIR%%themes/swarthy/xtree/T.png
%%ISMAILDIR%%themes/swarthy/xtree/openfoldericon.png
%%ISMAILDIR%%themes/swarthy/xtree/blank.png
%%ISMAILDIR%%themes/swarthy/xtree/Lminus.png
%%ISMAILDIR%%themes/swarthy/xtree/Tplus.png
%%ISMAILDIR%%themes/swarthy/xtree/I.png
%%ISMAILDIR%%themes/swarthy/xtree/new.png
%%ISMAILDIR%%themes/swarthy/xtree/L.png
%%ISMAILDIR%%themes/swarthy/css/topbarpop3.css
%%ISMAILDIR%%themes/swarthy/css/error.css
%%ISMAILDIR%%themes/swarthy/css/settingslist.css
%%ISMAILDIR%%themes/swarthy/css/folderlists.css
%%ISMAILDIR%%themes/swarthy/css/mailheader.css
%%ISMAILDIR%%themes/swarthy/css/addressbookdecrypt.css
%%ISMAILDIR%%themes/swarthy/css/settingsgeneral.css
%%ISMAILDIR%%themes/swarthy/css/sendmail.css
%%ISMAILDIR%%themes/swarthy/css/topbarimap.css
%%ISMAILDIR%%themes/swarthy/css/addressbook.css
%%ISMAILDIR%%themes/swarthy/css/frameheader.css
%%ISMAILDIR%%themes/swarthy/css/statusbar.css
%%ISMAILDIR%%themes/swarthy/css/addressbooktopbar.css
%%ISMAILDIR%%themes/swarthy/css/login.css
%%ISMAILDIR%%themes/swarthy/css/logout.css
%%ISMAILDIR%%themes/swarthy/css/view.css
%%ISMAILDIR%%themes/swarthy/css/maillist.css
%%ISMAILDIR%%themes/swarthy/css/settingseditidentity.css
%%ISMAILDIR%%themes/swarthy/css/addressbookentry.css
%%ISMAILDIR%%themes/swarthy/css/settingsidentities.css
%%ISMAILDIR%%themes/swarthy/css/mail.css
%%ISMAILDIR%%themes/swarthy/css/dict.css
%%ISMAILDIR%%themes/swarthy/css/globals.css
%%ISMAILDIR%%themes/swarthy/css/maillistheader.css
%%ISMAILDIR%%themes/swarthy/css/xtree.css
%%ISMAILDIR%%themes/swarthy/titlebarfill.gif
%%ISMAILDIR%%themes/swarthy/sendnow.gif
%%ISMAILDIR%%themes/swarthy/istheme.conf
%%ISMAILDIR%%themes/swarthy/statusbarfill.gif
%%ISMAILDIR%%themes/swarthy/statusbarleftcap.gif
%%ISMAILDIR%%themes/swarthy/headerbarfill.gif
%%ISMAILDIR%%themes/swarthy/deleteentry.gif
%%ISMAILDIR%%themes/swarthy/replyall.gif
%%ISMAILDIR%%themes/swarthy/newfolder.gif
%%ISMAILDIR%%themes/swarthy/middletab.gif
%%ISMAILDIR%%themes/swarthy/stipplebg.gif
%%ISMAILDIR%%themes/swarthy/curvedlefttab.gif
%%ISMAILDIR%%themes/swarthy/reply.gif
%%ISMAILDIR%%themes/swarthy/newmail.gif
%%ISMAILDIR%%themes/swarthy/generalsettings.gif
%%ISMAILDIR%%themes/swarthy/deletefolder.gif
%%ISMAILDIR%%themes/swarthy/addressbook.gif
%%ISMAILDIR%%themes/swarthy/settings.gif
%%ISMAILDIR%%themes/swarthy/identities.gif
%%ISMAILDIR%%themes/swarthy/smallismaillogo.jpg
%%ISMAILDIR%%themes/swarthy/righttab.gif
%%ISMAILDIR%%themes/swarthy/titlebarleftcap.gif
%%ISMAILDIR%%themes/swarthy/deletemail.gif
%%ISMAILDIR%%themes/swarthy/subscribefolder.gif
%%ISMAILDIR%%themes/swarthy/answered.gif
%%ISMAILDIR%%themes/swarthy/logout.gif
%%ISMAILDIR%%themes/swarthy/ismaillogo.jpg
%%ISMAILDIR%%themes/swarthy/newentry.gif
%%ISMAILDIR%%themes/swarthy/titlebarrightcap.gif
%%ISMAILDIR%%themes/swarthy/curvedrighttab.gif
%%ISMAILDIR%%themes/swarthy/lefttab.gif
%%ISMAILDIR%%themes/swarthy/statusbarrightcap.gif
%%ISMAILDIR%%themes/swarthy/addressicon.gif
%%ISMAILDIR%%themes/swarthy/curvedmiddletab.gif
%%ISMAILDIR%%themes/swarthy/headerbarrightcap.gif
%%ISMAILDIR%%themes/swarthy/forward.gif
%%ISMAILDIR%%themes/swarthy/attach.gif
%%ISMAILDIR%%themes/swarthy/movemail.gif
%%ISMAILDIR%%themes/swarthy/topbarrightcap.gif
%%ISMAILDIR%%topbar.php
%%ISMAILDIR%%viewmailbody.php
%%ISMAILDIR%%viewmailheader.php
%%ISMAILDIR%%xtree/xtree-css.php
%%ISMAILDIR%%xtree/xtree.php
%%DOCSDIR%%/docs.html
%%EXAMPLESDIR%%/pgsql.schema
%%EXAMPLESDIR%%/mysql4.schema
@dirrm %%ISMAILDIR%%xtree
@dirrm %%ISMAILDIR%%themes/swarthy/xtree
@dirrm %%ISMAILDIR%%themes/swarthy/css
@dirrm %%ISMAILDIR%%themes/swarthy
@dirrm %%ISMAILDIR%%themes
@dirrm %%ISMAILDIR%%locale/it_IT/LC_MESSAGES
@dirrm %%ISMAILDIR%%locale/it_IT
@dirrm %%ISMAILDIR%%locale/en_US/LC_MESSAGES
@dirrm %%ISMAILDIR%%locale/en_US
@dirrm %%ISMAILDIR%%locale/da_DK/LC_MESSAGES
@dirrm %%ISMAILDIR%%locale/da_DK
@dirrm %%ISMAILDIR%%locale/cs_CZ/LC_MESSAGES
@dirrm %%ISMAILDIR%%locale/cs_CZ
@dirrm %%ISMAILDIR%%locale
@dirrm %%ISMAILDIR%%include/datastores
@dirrm %%ISMAILDIR%%include
@dirrm %%EXAMPLESDIR%%
@dirrm %%DOCSDIR%%
@dirrm %%ISMAILDIR%%
@dirrmtry www/data
%%WWWDIR%%/addressbook.php
%%WWWDIR%%/addressbookdecrypt.php
%%WWWDIR%%/addressbookentry.php
%%WWWDIR%%/addressbooklist.php
%%WWWDIR%%/addressbookpopupbottom.php
%%WWWDIR%%/addressbookpopuplist.php
%%WWWDIR%%/addressbookpopuptop.php
%%WWWDIR%%/addressbooktopbar.php
%%WWWDIR%%/deletefolder.php
%%WWWDIR%%/dict.php
%%WWWDIR%%/editaddressbook.php
%%WWWDIR%%/editsettings.php
%%WWWDIR%%/error.php
%%WWWDIR%%/folderlist.php
%%WWWDIR%%/header.php
%%WWWDIR%%/hidden.php
%%WWWDIR%%/include/class.phpmailer.php
%%WWWDIR%%/include/class.smtp.php
%%WWWDIR%%/include/conffilefunctions.php
%%WWWDIR%%/include/datastores/mysql4.php
%%WWWDIR%%/include/datastores/pgsql.php
%%WWWDIR%%/include/datastores/template.php
%%WWWDIR%%/include/datastores/xml.php
%%WWWDIR%%/include/empty.xml
%%WWWDIR%%/include/globals.php
%%WWWDIR%%/include/ismail.conf.sample
%%WWWDIR%%/include/istheme.conf.sample
%%WWWDIR%%/include/mailfunctions.php
%%WWWDIR%%/index.php
%%WWWDIR%%/ismail.php
%%WWWDIR%%/locale/cs_CZ/LC_MESSAGES/messages.mo
%%WWWDIR%%/locale/cs_CZ/LC_MESSAGES/messages.po
%%WWWDIR%%/locale/da_DK/LC_MESSAGES/messages.mo
%%WWWDIR%%/locale/da_DK/LC_MESSAGES/messages.po
%%WWWDIR%%/locale/en_US/LC_MESSAGES/messages.mo
%%WWWDIR%%/locale/en_US/LC_MESSAGES/messages.po
%%WWWDIR%%/locale/es_ES/LC_MESSAGES/messages.mo
%%WWWDIR%%/locale/es_ES/LC_MESSAGES/messages.po
%%WWWDIR%%/locale/it_IT/LC_MESSAGES/messages.mo
%%WWWDIR%%/locale/it_IT/LC_MESSAGES/messages.po
%%WWWDIR%%/login.php
%%WWWDIR%%/logout.php
%%WWWDIR%%/mail.php
%%WWWDIR%%/mailheader.php
%%WWWDIR%%/maillist.php
%%WWWDIR%%/maillistheader.php
%%WWWDIR%%/mailwrapper.php
%%WWWDIR%%/movemail.php
%%WWWDIR%%/newfolder.php
%%WWWDIR%%/sendmail.php
%%WWWDIR%%/settingseditidentity.php
%%WWWDIR%%/settingsgeneral.php
%%WWWDIR%%/settingsidentities.php
%%WWWDIR%%/settingslist.php
%%WWWDIR%%/spellcheck.php
%%WWWDIR%%/statusbar.php
%%WWWDIR%%/subscribe.php
%%WWWDIR%%/themes/swarthy/addressbook.gif
%%WWWDIR%%/themes/swarthy/addressicon.gif
%%WWWDIR%%/themes/swarthy/answered.gif
%%WWWDIR%%/themes/swarthy/attach.gif
%%WWWDIR%%/themes/swarthy/checkspelling.gif
%%WWWDIR%%/themes/swarthy/css/addressbook.css
%%WWWDIR%%/themes/swarthy/css/addressbookdecrypt.css
%%WWWDIR%%/themes/swarthy/css/addressbookentry.css
%%WWWDIR%%/themes/swarthy/css/addressbooktopbar.css
%%WWWDIR%%/themes/swarthy/css/dict.css
%%WWWDIR%%/themes/swarthy/css/error.css
%%WWWDIR%%/themes/swarthy/css/folderlists.css
%%WWWDIR%%/themes/swarthy/css/frameheader.css
%%WWWDIR%%/themes/swarthy/css/globals.css
%%WWWDIR%%/themes/swarthy/css/login.css
%%WWWDIR%%/themes/swarthy/css/logout.css
%%WWWDIR%%/themes/swarthy/css/mail.css
%%WWWDIR%%/themes/swarthy/css/mailheader.css
%%WWWDIR%%/themes/swarthy/css/maillist.css
%%WWWDIR%%/themes/swarthy/css/maillistheader.css
%%WWWDIR%%/themes/swarthy/css/sendmail.css
%%WWWDIR%%/themes/swarthy/css/settingseditidentity.css
%%WWWDIR%%/themes/swarthy/css/settingsgeneral.css
%%WWWDIR%%/themes/swarthy/css/settingsidentities.css
%%WWWDIR%%/themes/swarthy/css/settingslist.css
%%WWWDIR%%/themes/swarthy/css/statusbar.css
%%WWWDIR%%/themes/swarthy/css/topbarimap.css
%%WWWDIR%%/themes/swarthy/css/topbarpop3.css
%%WWWDIR%%/themes/swarthy/css/view.css
%%WWWDIR%%/themes/swarthy/css/xtree.css
%%WWWDIR%%/themes/swarthy/curvedlefttab.gif
%%WWWDIR%%/themes/swarthy/curvedmiddletab.gif
%%WWWDIR%%/themes/swarthy/curvedrighttab.gif
%%WWWDIR%%/themes/swarthy/deleteentry.gif
%%WWWDIR%%/themes/swarthy/deletefolder.gif
%%WWWDIR%%/themes/swarthy/deletemail.gif
%%WWWDIR%%/themes/swarthy/forward.gif
%%WWWDIR%%/themes/swarthy/generalsettings.gif
%%WWWDIR%%/themes/swarthy/headerbarfill.gif
%%WWWDIR%%/themes/swarthy/headerbarleftcap.gif
%%WWWDIR%%/themes/swarthy/headerbarrightcap.gif
%%WWWDIR%%/themes/swarthy/identities.gif
%%WWWDIR%%/themes/swarthy/ismaillogo.jpg
%%WWWDIR%%/themes/swarthy/istheme.conf
%%WWWDIR%%/themes/swarthy/lefttab.gif
%%WWWDIR%%/themes/swarthy/logout.gif
%%WWWDIR%%/themes/swarthy/middletab.gif
%%WWWDIR%%/themes/swarthy/movemail.gif
%%WWWDIR%%/themes/swarthy/newentry.gif
%%WWWDIR%%/themes/swarthy/newfolder.gif
%%WWWDIR%%/themes/swarthy/newmail.gif
%%WWWDIR%%/themes/swarthy/reply.gif
%%WWWDIR%%/themes/swarthy/replyall.gif
%%WWWDIR%%/themes/swarthy/righttab.gif
%%WWWDIR%%/themes/swarthy/sendnow.gif
%%WWWDIR%%/themes/swarthy/settings.gif
%%WWWDIR%%/themes/swarthy/smallismaillogo.jpg
%%WWWDIR%%/themes/swarthy/statusbarfill.gif
%%WWWDIR%%/themes/swarthy/statusbarleftcap.gif
%%WWWDIR%%/themes/swarthy/statusbarrightcap.gif
%%WWWDIR%%/themes/swarthy/stipplebg.gif
%%WWWDIR%%/themes/swarthy/subscribefolder.gif
%%WWWDIR%%/themes/swarthy/titlebarfill.gif
%%WWWDIR%%/themes/swarthy/titlebarleftcap.gif
%%WWWDIR%%/themes/swarthy/titlebarrightcap.gif
%%WWWDIR%%/themes/swarthy/topbarrightcap.gif
%%WWWDIR%%/themes/swarthy/xtree/I.png
%%WWWDIR%%/themes/swarthy/xtree/L.png
%%WWWDIR%%/themes/swarthy/xtree/Lminus.png
%%WWWDIR%%/themes/swarthy/xtree/Lplus.png
%%WWWDIR%%/themes/swarthy/xtree/T.png
%%WWWDIR%%/themes/swarthy/xtree/Tminus.png
%%WWWDIR%%/themes/swarthy/xtree/Tplus.png
%%WWWDIR%%/themes/swarthy/xtree/blank.png
%%WWWDIR%%/themes/swarthy/xtree/file.png
%%WWWDIR%%/themes/swarthy/xtree/foldericon.png
%%WWWDIR%%/themes/swarthy/xtree/new.png
%%WWWDIR%%/themes/swarthy/xtree/openfoldericon.png
%%WWWDIR%%/topbar.php
%%WWWDIR%%/viewmailbody.php
%%WWWDIR%%/viewmailheader.php
%%WWWDIR%%/xtree/xtree-css.php
%%WWWDIR%%/xtree/xtree.php
%%PORTDOCS%%%%DOCSDIR%%/docs.html
@dirrm %%WWWDIR%%/include/datastores
@dirrm %%WWWDIR%%/include
@dirrm %%WWWDIR%%/locale/cs_CZ/LC_MESSAGES
@dirrm %%WWWDIR%%/locale/cs_CZ
@dirrm %%WWWDIR%%/locale/da_DK/LC_MESSAGES
@dirrm %%WWWDIR%%/locale/da_DK
@dirrm %%WWWDIR%%/locale/en_US/LC_MESSAGES
@dirrm %%WWWDIR%%/locale/en_US
@dirrm %%WWWDIR%%/locale/es_ES/LC_MESSAGES
@dirrm %%WWWDIR%%/locale/es_ES
@dirrm %%WWWDIR%%/locale/it_IT/LC_MESSAGES
@dirrm %%WWWDIR%%/locale/it_IT
@dirrm %%WWWDIR%%/locale
@dirrm %%WWWDIR%%/themes/swarthy/css
@dirrm %%WWWDIR%%/themes/swarthy/xtree
@dirrm %%WWWDIR%%/themes/swarthy
@dirrm %%WWWDIR%%/themes
@dirrm %%WWWDIR%%/xtree
@dirrm %%WWWDIR%%
%%PORTDOCS%%@dirrm %%DOCSDIR%%