ports/50840: mail/squirrelmail - Port Docs in wrong location

Scot W. Hetzel hetzels at westbend.net
Sat Apr 12 22:00:22 UTC 2003


The following reply was made to PR ports/50840; it has been noted by GNATS.

From: "Scot W. Hetzel" <hetzels at westbend.net>
To: freebsd-gnats-submit at FreeBSD.org, simond at irrelevant.org
Cc:  
Subject: Re: ports/50840: mail/squirrelmail - Port Docs in wrong location
Date: Sat, 12 Apr 2003 16:56:49 -0500 (CDT)

 I went ahead and made a better patch for the SquirrelMail Port.
 
 Please use this patch instead of the previous ones, as it improves
 the port by:
 
     - installs all documentation to the DOCSDIR directory
     - fixes security of the port by moving the attachment 
       and user preferences out of the web servers document
       root (moves default data_dir & attachment_dir from 
       SQUIRRELDIR/data to sub-directorys under
       /var/spool/squirrelmail) as recommended on the
       SquirrelMail web site.
     - adds a periodic/daily script to clean the attachment
       directory of abandoned files (disabled by default)
     - location of squirrelmail can be set by either defining
       SQUIRRELDIR or WITHOUT_WWWDIR when patching and installing
       the port.
     - BENTO FIX: The /var/spool/squirrelmail directory is
       created by pkg-install, but it wasn't being uninstalled.
       Connditionalized the creation of this directory depending
       on how the BATCH variable is set. A message in pkg-deinstall
       advises the port user to remove it if no longer needed.
 
     Changed Files:
         Makefile
         pkg-install
         pkg-message
         pkg-plist
 
     New Files:
         files/111.clean-squirrelmail
         files/patch-config-config_default.php
         pkg-deinstall
 
 Scot
 
 diff -ruN squirrelmail.orig/Makefile squirrelmail/Makefile
 --- squirrelmail.orig/Makefile	Sat Apr 12 15:59:10 2003
 +++ squirrelmail/Makefile	Sat Apr 12 15:56:59 2003
 @@ -7,6 +7,7 @@
  
  PORTNAME=	squirrelmail
  PORTVERSION=	1.4.0
 +PORTREVISION=	1
  CATEGORIES=	mail www
  MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
  MASTER_SITE_SUBDIR=	squirrelmail
 @@ -21,18 +22,78 @@
  .endif
  
  USE_BZIP2=	yes
 -NO_BUILD=	yes
 +
 +.ifndef WITHOUT_WWWDIR
 +SQUIRRELDIR?=	${PREFIX}/www/squirrelmail
 +.else
 +SQUIRRELDIR?=	${PREFIX}/squirrelmail
 +.endif
 +
 +PKGDEINSTALL=	${WRKDIR}/pkg-deinstall
 +PKGINSTALL=	${WRKDIR}/pkg-install
 +PKGMESSAGE=	${WRKDIR}/pkg-message
 +
 +PLIST_SUB+=	PORTVERSION=${PORTVERSION} \
 +		SQUIRRELDIR="${SQUIRRELDIR:S,^${PREFIX}/,,}"
 +
 +pre-everything:
 +	@${ECHO_CMD} "SquirrelMail is installed into ${SQUIRRELDIR}"
 +	@${ECHO_CMD} "To use the old location ${PREFIX}/squirrelmail define"
 +	@${ECHO_CMD} "WITHOUT_WWWDIR when patching or installing"
 +	@${ECHO_CMD}
 +
 +post-patch:
 +.ifndef PATCH_DEBUG
 +	@${RM} ${WRKSRC}/config/config_default.php.orig
 +.endif
 +	@${SED} -e "s;%%SQUIRRELDIR%%;${SQUIRRELDIR};g" \
 +		${.CURDIR}/pkg-install > ${PKGINSTALL}
 +	@${SED} -e "s;%%SQUIRRELDIR%%;${SQUIRRELDIR};g" \
 +		${.CURDIR}/pkg-deinstall > ${PKGDEINSTALL}
 +	@${SED} -e "s;%%SQUIRRELDIR%%;${SQUIRRELDIR};g" \
 +		${.CURDIR}/pkg-message > ${PKGMESSAGE}
 +
 +# Rearrange the documentation
 +do-build:
 +.for file in AUTHORS ChangeLog COPYING INSTALL README UPGRADE
 +	@${MV} ${WRKSRC}/${file} ${WRKSRC}/doc/
 +.endfor
 +	@${MV} ${WRKSRC}/ReleaseNotes ${WRKSRC}/doc/ReleaseNotes-${PORTVERSION}
 +	@${MV} ${WRKSRC}/themes/README.themes ${WRKSRC}/doc/
 +	@cd ${WRKSRC} ; for f in `find plugins -name "README*" -or \
 +		-name INSTALL -or -name CHANGES -or -name HISTORY`; \
 +		do \
 +    		${MKDIR} doc/`dirname $$f` ; \
 +    		${MV} $$f doc/`dirname $$f` ; \
 +	done; \
 +	${MV} doc/plugins/squirrelspell/doc/README doc/plugins/squirrelspell ; \
 +	${RM} -rf doc/plugins/squirrelspell/doc ; \
 +	${MV} plugins/squirrelspell/doc/* doc/plugins/squirrelspell ; \
 +	${RM} -f doc/plugins/squirrelspell/index.php ; \
 +	${RM} -rf plugins/squirrelspell/doc
 +	@echo "left_refresh=300" >> ${WRKSRC}/data/default_pref
  
  pre-install:
  	@${ECHO} "Your umask should be lax while installing this. Like, 022 or something."
 -	@${SH} pkg-install ${PKGNAME} PRE-INSTALL
 +	@${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
  
  do-install:
 -	${MKDIR} ${PREFIX}/squirrelmail
 -	${CP} -R ${WRKSRC}/* ${PREFIX}/squirrelmail
 -	${CHOWN} -R www:www ${PREFIX}/squirrelmail/data
 +	${MKDIR} ${PREFIX}/etc/periodic/daily
 +	${INSTALL_SCRIPT} ${FILESDIR}/111.clean-squirrlmail ${PREFIX}/etc/periodic/daily
 +	${MKDIR} ${SQUIRRELDIR}
 +	${CP} -p ${WRKSRC}/index.php ${SQUIRRELDIR}
 +	${CP} -p ${WRKSRC}/configure ${SQUIRRELDIR}
 +.for DIR in class config data functions help images include locale plugins po src themes
 +	${CP} -rp ${WRKSRC}/${DIR} ${SQUIRRELDIR}
 +.endfor
 +	${CHOWN} -R www:www ${SQUIRRELDIR}/data
 +.if !defined(NOPORTDOCS)
 +	${MKDIR} ${DOCSDIR}
 +	${CP} -R ${WRKSRC}/doc/* ${DOCSDIR}
 +.endif
  
  post-install:
 -	@${SED} -e 's,%%PREFIX%%,${PREFIX},g' ${PKGMESSAGE}
 +	@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
 +	@${CAT} ${PKGMESSAGE}
  
  .include <bsd.port.mk>
 diff -ruN squirrelmail.orig/files/111.clean-squirrelmail squirrelmail/files/111.clean-squirrelmail
 --- squirrelmail.orig/files/111.clean-squirrelmail	Wed Dec 31 18:00:00 1969
 +++ squirrelmail/files/111.clean-squirrelmail	Sat Apr 12 15:19:52 2003
 @@ -0,0 +1,69 @@
 +#!/bin/sh
 +#
 +# $FreeBSD$
 +#
 +# This script copied from /etc/periodic/daily/110.clean-tmps,v 1.6.2.4 2002/10/13 19:59:01
 +#
 +# Perform attachment directory cleaning so that long-lived systems
 +# don't end up with excessively old files there.
 +#
 +
 +# Define these variables in either /etc/periodic.conf or
 +# /etc/periodic.conf.local to override the default values.
 +#
 +# 111.clean-squirrelmail
 +clean_squirrelmail_enable="NO"					# Delete squirrelmail attachments
 +clean_squirrelmail_dirs="/var/spool/squirrelmail/attach\"	# Delete under here
 +clean_squirrelmail_days="10"					# If not accessed for
 +clean_squirrelmail_ignore="quota.user quota.group\"		# Don't delete these
 +clean_squirrelmail_verbose="YES"				# Mention files deleted
 +
 +# If there is a global system configuration file, suck it in.
 +#
 +if [ -r /etc/defaults/periodic.conf ]
 +then
 +    . /etc/defaults/periodic.conf
 +    source_periodic_confs
 +fi
 +
 +case "$clean_squirrelmail_enable" in
 +    [Yy][Ee][Ss])
 +	if [ -z "$clean_squirrelmail_days" ]
 +	then
 +	    echo '$clean_squirrelmail_enable is set but' \
 +		'$clean_squirrelmail_days is not'
 +	    rc=2
 +	else
 +	    echo ""
 +	    echo "Removing old SquirrelMail Attachment files:"
 +
 +	    set -f noglob
 +	    args="-atime +$clean_squirrelmail_days -mtime +$clean_squirrelmail_days"
 +	    args="${args} -ctime +$clean_squirrelmail_days"
 +	    [ -n "$clean_squirrelmail_ignore" ] &&
 +		args="$args "`echo " ${clean_squirrelmail_ignore% }" |
 +		    sed 's/[ 	][ 	]*/ ! -name /g'`
 +	    case "$clean_squirrelmail_verbose" in
 +		[Yy][Ee][Ss])
 +		    print=-print;;
 +		*)
 +		    print=;;
 +	    esac
 +
 +	    rc=$(for dir in $clean_squirrelmail_dirs
 +		do
 +		    [ ."${dir#/}" != ."$dir" -a -d $dir ] && cd $dir && {
 +			find -d . -type f $args -delete $print
 +			find -d . ! -name . -type d -empty -mtime \
 +			    +$clean_squirrelmail_days -delete $print
 +		    } | sed "s,^\\.,  $dir,"
 +		done | tee /dev/stderr | wc -l)
 +	    [ -z "$print" ] && rc=0
 +	    [ $rc -gt 1 ] && rc=1
 +	    set -f glob
 +	fi;;
 +
 +    *)  rc=0;;
 +esac
 +
 +exit $rc
 diff -ruN squirrelmail.orig/files/patch-config-config_default.php squirrelmail/files/patch-config-config_default.php
 --- squirrelmail.orig/files/patch-config-config_default.php	Wed Dec 31 18:00:00 1969
 +++ squirrelmail/files/patch-config-config_default.php	Sat Apr 12 12:32:32 2003
 @@ -0,0 +1,20 @@
 +--- config/config_default.php.orig	Sat Jan  4 00:01:24 2003
 ++++ config/config_default.php	Fri Apr 11 23:36:32 2003
 +@@ -220,7 +220,7 @@
 +  *   $data_dir = '../data/';
 +  */
 + global $data_dir;
 +-$data_dir = '../data/';
 ++$data_dir = '/var/spool/squirrelmail/pref/';
 + 
 + /**
 +  * Path to directory used for storing attachments while a mail is
 +@@ -236,7 +236,7 @@
 +  *    + It should probably be another directory than data_dir.
 +  */
 + global $attachment_dir;
 +-$attachment_dir = "$data_dir";
 ++$attachment_dir = '/var/spool/squirrelmail/attach/';
 + 
 + /* Hash level used for data directory. */
 + global $dir_hash_level;
 diff -ruN squirrelmail.orig/pkg-deinstall squirrelmail/pkg-deinstall
 --- squirrelmail.orig/pkg-deinstall	Wed Dec 31 18:00:00 1969
 +++ squirrelmail/pkg-deinstall	Sat Apr 12 13:16:23 2003
 @@ -0,0 +1,43 @@
 +#!/bin/sh
 +#
 +#	$FreeBSD$
 +#
 +
 +#set -vx
 +
 +PKG_BATCH=${BATCH:=NO}
 +
 +PKG_PREFIX=${PKG_PREFIX:=/usr/local}
 +
 +SQUIRRELDIR=%%SQUIRRELDIR%%
 +
 +checkfile() {
 +        diff -bBqw $1 $2 >/dev/null 2>&1
 +        case $? in
 +                0)      # config file exists, but is the same
 +			rm $1
 +                        ;;
 +                1)      # config file exists and differs
 +                        ;;
 +                *)      # no config file exists
 +                        ;;
 +        esac
 +}
 +
 +case $2 in
 +	DEINSTALL)
 +		cd ${PKG_PREFIX}
 +		checkfile /var/spool/squirrelmail/prefs/default_pref \
 +			${SQUIRRELDIR}/data/default_pref
 +		;;
 +	POST-DEINSTALL)
 +		if [ "${PKG_BATCH}" = "NO" ]; then
 +			echo "If you are no longer going to use SquirrelMail"
 +			echo "you should remove the /var/spool/squirrelmail"
 +			echo "directory with:"
 +			echo
 +			echo "	rm -rf /var/spool/squirrelmail"
 +		fi
 +		;;
 +
 +esac
 diff -ruN squirrelmail.orig/pkg-install squirrelmail/pkg-install
 --- squirrelmail.orig/pkg-install	Sat Feb  9 18:44:59 2002
 +++ squirrelmail/pkg-install	Sat Apr 12 15:27:08 2003
 @@ -1,4 +1,12 @@
  #!/bin/sh
 +#
 +#	$FreeBSD$
 +#
 +
 +PKG_BATCH=${BATCH:=NO}
 +PKG_PREFIX=${PKG_PREFIX:=/usr/local}
 +
 +SQUIRRELDIR=%%SQUIRRELDIR%%
  
  case $2 in
  PRE-INSTALL)
 @@ -28,10 +36,21 @@
  		fi
  	fi
  
 -	install -d -o www -g www -m 0755 /var/spool/squirrelmail
 -
  	exit 0
  	;;
  POST-INSTALL)
 +	if [ "${PKG_BATCH}" = "NO" ]; then
 +		install -d -o www -g www -m 0755 /var/spool/squirrelmail
 +		install -d -o www -g www -m 0730 /var/spool/squirrelmail/attach
 +		install -d -o www -g www -m 0750 /var/spool/squirrelmail/pref
 +		if [ ! -f /var/spool/squirrelmail/pref/default_pref ]; then
 +			cp -rp ${SQUIRRELDIR}/data/default_pref \
 +				/var/spool/squirrelmail/pref/default_pref
 +		else
 +			echo "An older version of default_pref exists in"
 +			echo "/var/spool/squirrelmail/pref, you may want to"
 +			echo "compare it with the one in ${SQUIRRELDIR}/data"
 +		fi
 +	fi
  	;;
  esac
 diff -ruN squirrelmail.orig/pkg-message squirrelmail/pkg-message
 --- squirrelmail.orig/pkg-message	Sat Apr 12 15:59:26 2003
 +++ squirrelmail/pkg-message	Sat Apr 12 13:44:19 2003
 @@ -1,8 +1,8 @@
  
  You now need to add an alias to apache's httpd.conf pointing to
 -%%PREFIX%%/squirrelmail/ in order to access SquirrelMail from your
 -web browser, or create a VirtualHost with DocumentRoot set to that
 -directory.
 +%%SQUIRRELDIR%% in order to access SquirrelMail from
 +your web browser, or create a VirtualHost with DocumentRoot set
 +to that directory.
  
  For SquirrelMail to work properly you will need to make sure the
  following option is set in your php.ini file:
 @@ -13,6 +13,6 @@
  session.auto_start = 1
  
  In order to do your administrative configuration you need to 
 -cd %%PREFIX%%/squirrelmail && ./configure
 +cd %%SQUIRRELDIR%% && ./configure
  SquirrelMail will not work until this has been done.
  
 diff -ruN squirrelmail.orig/pkg-plist squirrelmail/pkg-plist
 --- squirrelmail.orig/pkg-plist	Sat Apr 12 15:59:10 2003
 +++ squirrelmail/pkg-plist	Sat Apr 12 15:04:38 2003
 @@ -1,758 +1,769 @@
 -squirrelmail/AUTHORS
 -squirrelmail/COPYING
 -squirrelmail/ChangeLog
 -squirrelmail/INSTALL
 -squirrelmail/README
 -squirrelmail/ReleaseNotes
 -squirrelmail/UPGRADE
 -squirrelmail/class/deliver/Deliver.class.php
 -squirrelmail/class/deliver/Deliver_IMAP.class.php
 -squirrelmail/class/deliver/Deliver_SMTP.class.php
 -squirrelmail/class/deliver/Deliver_SendMail.class.php
 -squirrelmail/class/deliver/index.php
 -squirrelmail/class/helper/VCard.class.php
 -squirrelmail/class/html.class.php
 -squirrelmail/class/index.php
 -squirrelmail/class/mime.class.php
 -squirrelmail/class/mime/AddressStructure.class.php
 -squirrelmail/class/mime/ContentType.class.php
 -squirrelmail/class/mime/Disposition.class.php
 -squirrelmail/class/mime/Language.class.php
 -squirrelmail/class/mime/Message.class.php
 -squirrelmail/class/mime/MessageHeader.class.php
 -squirrelmail/class/mime/Rfc822Header.class.php
 -squirrelmail/class/mime/SMimeMessage.class.php
 -squirrelmail/class/mime/index.php
 -squirrelmail/config/conf.pl
 -squirrelmail/config/config_default.php
 -squirrelmail/config/config_local.php
 -squirrelmail/config/index.php
 -squirrelmail/configure
 -squirrelmail/contrib/RPM/config.php.redhat
 -squirrelmail/contrib/RPM/squirrelmail.conf
 -squirrelmail/contrib/RPM/squirrelmail.cron
 -squirrelmail/contrib/RPM/squirrelmail.spec
 -squirrelmail/data/.htaccess
 -squirrelmail/data/default_pref
 -squirrelmail/data/index.php
 -squirrelmail/doc/README.russian_apache
 -squirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.0.txt
 -squirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.1.txt
 -squirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.2.txt
 -squirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.3.txt
 -squirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.4.txt
 -squirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.5
 -squirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.6.txt
 -squirrelmail/doc/ReleaseNotes/1.3/Notes-1.3.0.txt
 -squirrelmail/doc/ReleaseNotes/1.3/Notes-1.3.1.txt
 -squirrelmail/doc/ReleaseNotes/1.3/Notes-1.3.2.txt
 -squirrelmail/doc/addressbook.txt
 -squirrelmail/doc/authentication.txt
 -squirrelmail/doc/compose.txt
 -squirrelmail/doc/db-backend.txt
 -squirrelmail/doc/ie_ssl.txt
 -squirrelmail/doc/index.html
 -squirrelmail/doc/mime.txt
 -squirrelmail/doc/plugin.txt
 -squirrelmail/doc/rfc_documents.txt
 -squirrelmail/doc/themes.txt
 -squirrelmail/doc/translating.txt
 -squirrelmail/doc/translating_help.txt
 -squirrelmail/doc/tree.txt
 -squirrelmail/functions/abook_database.php
 -squirrelmail/functions/abook_global_file.php
 -squirrelmail/functions/abook_ldap_server.php
 -squirrelmail/functions/abook_local_file.php
 -squirrelmail/functions/addressbook.php
 -squirrelmail/functions/attachment_common.php
 -squirrelmail/functions/auth.php
 -squirrelmail/functions/constants.php
 -squirrelmail/functions/date.php
 -squirrelmail/functions/db_prefs.php
 -squirrelmail/functions/display_messages.php
 -squirrelmail/functions/file_prefs.php
 -squirrelmail/functions/gettext.php
 -squirrelmail/functions/global.php
 -squirrelmail/functions/html.php
 -squirrelmail/functions/i18n.php
 -squirrelmail/functions/imap.php
 -squirrelmail/functions/imap_general.php
 -squirrelmail/functions/imap_mailbox.php
 -squirrelmail/functions/imap_messages.php
 -squirrelmail/functions/imap_parse.php
 -squirrelmail/functions/imap_search.php
 -squirrelmail/functions/imap_utf7_local.php
 -squirrelmail/functions/index.php
 -squirrelmail/functions/mailbox_display.php
 -squirrelmail/functions/mime.php
 -squirrelmail/functions/options.php
 -squirrelmail/functions/page_header.php
 -squirrelmail/functions/plugin.php
 -squirrelmail/functions/prefs.php
 -squirrelmail/functions/strings.php
 -squirrelmail/functions/tree.php
 -squirrelmail/functions/url_parser.php
 -squirrelmail/help/bg_BG/FAQ.hlp
 -squirrelmail/help/bg_BG/addresses.hlp
 -squirrelmail/help/bg_BG/basic.hlp
 -squirrelmail/help/bg_BG/compose.hlp
 -squirrelmail/help/bg_BG/folders.hlp
 -squirrelmail/help/bg_BG/main_folder.hlp
 -squirrelmail/help/bg_BG/options.hlp
 -squirrelmail/help/bg_BG/read_mail.hlp
 -squirrelmail/help/bg_BG/search.hlp
 -squirrelmail/help/ca_ES/FAQ.hlp
 -squirrelmail/help/ca_ES/addresses.hlp
 -squirrelmail/help/ca_ES/basic.hlp
 -squirrelmail/help/ca_ES/compose.hlp
 -squirrelmail/help/ca_ES/folders.hlp
 -squirrelmail/help/ca_ES/main_folder.hlp
 -squirrelmail/help/ca_ES/options.hlp
 -squirrelmail/help/ca_ES/read_mail.hlp
 -squirrelmail/help/ca_ES/search.hlp
 -squirrelmail/help/cs_CZ/FAQ.hlp
 -squirrelmail/help/cs_CZ/addresses.hlp
 -squirrelmail/help/cs_CZ/basic.hlp
 -squirrelmail/help/cs_CZ/compose.hlp
 -squirrelmail/help/cs_CZ/folders.hlp
 -squirrelmail/help/cs_CZ/main_folder.hlp
 -squirrelmail/help/cs_CZ/options.hlp
 -squirrelmail/help/cs_CZ/read_mail.hlp
 -squirrelmail/help/cs_CZ/search.hlp
 -squirrelmail/help/da_DK/FAQ.hlp
 -squirrelmail/help/da_DK/addresses.hlp
 -squirrelmail/help/da_DK/basic.hlp
 -squirrelmail/help/da_DK/compose.hlp
 -squirrelmail/help/da_DK/folders.hlp
 -squirrelmail/help/da_DK/main_folder.hlp
 -squirrelmail/help/da_DK/options.hlp
 -squirrelmail/help/da_DK/read_mail.hlp
 -squirrelmail/help/da_DK/search.hlp
 -squirrelmail/help/de_DE/FAQ.hlp
 -squirrelmail/help/de_DE/addresses.hlp
 -squirrelmail/help/de_DE/basic.hlp
 -squirrelmail/help/de_DE/compose.hlp
 -squirrelmail/help/de_DE/folders.hlp
 -squirrelmail/help/de_DE/main_folder.hlp
 -squirrelmail/help/de_DE/options.hlp
 -squirrelmail/help/de_DE/read_mail.hlp
 -squirrelmail/help/de_DE/search.hlp
 -squirrelmail/help/en_US/FAQ.hlp
 -squirrelmail/help/en_US/addresses.hlp
 -squirrelmail/help/en_US/basic.hlp
 -squirrelmail/help/en_US/compose.hlp
 -squirrelmail/help/en_US/folders.hlp
 -squirrelmail/help/en_US/main_folder.hlp
 -squirrelmail/help/en_US/options.hlp
 -squirrelmail/help/en_US/read_mail.hlp
 -squirrelmail/help/en_US/search.hlp
 -squirrelmail/help/es_ES/FAQ.hlp
 -squirrelmail/help/es_ES/addresses.hlp
 -squirrelmail/help/es_ES/basic.hlp
 -squirrelmail/help/es_ES/compose.hlp
 -squirrelmail/help/es_ES/folders.hlp
 -squirrelmail/help/es_ES/main_folder.hlp
 -squirrelmail/help/es_ES/options.hlp
 -squirrelmail/help/es_ES/read_mail.hlp
 -squirrelmail/help/es_ES/search.hlp
 -squirrelmail/help/fi_FI/FAQ.hlp
 -squirrelmail/help/fi_FI/addresses.hlp
 -squirrelmail/help/fi_FI/basic.hlp
 -squirrelmail/help/fi_FI/compose.hlp
 -squirrelmail/help/fi_FI/folders.hlp
 -squirrelmail/help/fi_FI/main_folder.hlp
 -squirrelmail/help/fi_FI/options.hlp
 -squirrelmail/help/fi_FI/read_mail.hlp
 -squirrelmail/help/fi_FI/search.hlp
 -squirrelmail/help/fr_FR/FAQ.hlp
 -squirrelmail/help/fr_FR/addresses.hlp
 -squirrelmail/help/fr_FR/basic.hlp
 -squirrelmail/help/fr_FR/compose.hlp
 -squirrelmail/help/fr_FR/folders.hlp
 -squirrelmail/help/fr_FR/main_folder.hlp
 -squirrelmail/help/fr_FR/options.hlp
 -squirrelmail/help/fr_FR/read_mail.hlp
 -squirrelmail/help/fr_FR/search.hlp
 -squirrelmail/help/id_ID/FAQ.hlp
 -squirrelmail/help/id_ID/addresses.hlp
 -squirrelmail/help/id_ID/basic.hlp
 -squirrelmail/help/id_ID/compose.hlp
 -squirrelmail/help/id_ID/folders.hlp
 -squirrelmail/help/id_ID/main_folder.hlp
 -squirrelmail/help/id_ID/options.hlp
 -squirrelmail/help/id_ID/read_mail.hlp
 -squirrelmail/help/id_ID/search.hlp
 -squirrelmail/help/index.php
 -squirrelmail/help/it_IT/FAQ.hlp
 -squirrelmail/help/it_IT/addresses.hlp
 -squirrelmail/help/it_IT/basic.hlp
 -squirrelmail/help/it_IT/compose.hlp
 -squirrelmail/help/it_IT/folders.hlp
 -squirrelmail/help/it_IT/main_folder.hlp
 -squirrelmail/help/it_IT/options.hlp
 -squirrelmail/help/it_IT/read_mail.hlp
 -squirrelmail/help/it_IT/search.hlp
 -squirrelmail/help/ja_JP/FAQ.hlp
 -squirrelmail/help/ja_JP/addresses.hlp
 -squirrelmail/help/ja_JP/basic.hlp
 -squirrelmail/help/ja_JP/compose.hlp
 -squirrelmail/help/ja_JP/folders.hlp
 -squirrelmail/help/ja_JP/main_folder.hlp
 -squirrelmail/help/ja_JP/options.hlp
 -squirrelmail/help/ja_JP/read_mail.hlp
 -squirrelmail/help/ja_JP/search.hlp
 -squirrelmail/help/ko_KR/FAQ.hlp
 -squirrelmail/help/ko_KR/addresses.hlp
 -squirrelmail/help/ko_KR/basic.hlp
 -squirrelmail/help/ko_KR/compose.hlp
 -squirrelmail/help/ko_KR/folders.hlp
 -squirrelmail/help/ko_KR/main_folder.hlp
 -squirrelmail/help/ko_KR/options.hlp
 -squirrelmail/help/ko_KR/read_mail.hlp
 -squirrelmail/help/ko_KR/search.hlp
 -squirrelmail/help/lt_LT/FAQ.hlp
 -squirrelmail/help/lt_LT/addresses.hlp
 -squirrelmail/help/lt_LT/basic.hlp
 -squirrelmail/help/lt_LT/compose.hlp
 -squirrelmail/help/lt_LT/folders.hlp
 -squirrelmail/help/lt_LT/main_folder.hlp
 -squirrelmail/help/lt_LT/options.hlp
 -squirrelmail/help/lt_LT/read_mail.hlp
 -squirrelmail/help/lt_LT/search.hlp
 -squirrelmail/help/nl_NL/FAQ.hlp
 -squirrelmail/help/nl_NL/addresses.hlp
 -squirrelmail/help/nl_NL/basic.hlp
 -squirrelmail/help/nl_NL/compose.hlp
 -squirrelmail/help/nl_NL/folders.hlp
 -squirrelmail/help/nl_NL/main_folder.hlp
 -squirrelmail/help/nl_NL/options.hlp
 -squirrelmail/help/nl_NL/read_mail.hlp
 -squirrelmail/help/nl_NL/search.hlp
 -squirrelmail/help/pl_PL/FAQ.hlp
 -squirrelmail/help/pl_PL/addresses.hlp
 -squirrelmail/help/pl_PL/basic.hlp
 -squirrelmail/help/pl_PL/compose.hlp
 -squirrelmail/help/pl_PL/folders.hlp
 -squirrelmail/help/pl_PL/main_folder.hlp
 -squirrelmail/help/pl_PL/options.hlp
 -squirrelmail/help/pl_PL/read_mail.hlp
 -squirrelmail/help/pl_PL/search.hlp
 -squirrelmail/help/pt_BR/FAQ.hlp
 -squirrelmail/help/pt_BR/addresses.hlp
 -squirrelmail/help/pt_BR/basic.hlp
 -squirrelmail/help/pt_BR/compose.hlp
 -squirrelmail/help/pt_BR/folders.hlp
 -squirrelmail/help/pt_BR/main_folder.hlp
 -squirrelmail/help/pt_BR/options.hlp
 -squirrelmail/help/pt_BR/read_mail.hlp
 -squirrelmail/help/pt_BR/search.hlp
 -squirrelmail/help/pt_PT/FAQ.hlp
 -squirrelmail/help/pt_PT/addresses.hlp
 -squirrelmail/help/pt_PT/basic.hlp
 -squirrelmail/help/pt_PT/compose.hlp
 -squirrelmail/help/pt_PT/folders.hlp
 -squirrelmail/help/pt_PT/main_folder.hlp
 -squirrelmail/help/pt_PT/options.hlp
 -squirrelmail/help/pt_PT/read_mail.hlp
 -squirrelmail/help/pt_PT/search.hlp
 -squirrelmail/help/ru_RU/FAQ.hlp
 -squirrelmail/help/ru_RU/addresses.hlp
 -squirrelmail/help/ru_RU/basic.hlp
 -squirrelmail/help/ru_RU/compose.hlp
 -squirrelmail/help/ru_RU/folders.hlp
 -squirrelmail/help/ru_RU/main_folder.hlp
 -squirrelmail/help/ru_RU/options.hlp
 -squirrelmail/help/ru_RU/read_mail.hlp
 -squirrelmail/help/ru_RU/search.hlp
 -squirrelmail/help/sl_SI/FAQ.hlp
 -squirrelmail/help/sl_SI/addresses.hlp
 -squirrelmail/help/sl_SI/basic.hlp
 -squirrelmail/help/sl_SI/compose.hlp
 -squirrelmail/help/sl_SI/folders.hlp
 -squirrelmail/help/sl_SI/main_folder.hlp
 -squirrelmail/help/sl_SI/options.hlp
 -squirrelmail/help/sl_SI/read_mail.hlp
 -squirrelmail/help/sl_SI/search.hlp
 -squirrelmail/help/sr_YU/FAQ.hlp
 -squirrelmail/help/sr_YU/addresses.hlp
 -squirrelmail/help/sr_YU/basic.hlp 
 -squirrelmail/help/sr_YU/compose.hlp
 -squirrelmail/help/sr_YU/folders.hlp
 -squirrelmail/help/sr_YU/main_folder.hlp
 -squirrelmail/help/sr_YU/options.hlp
 -squirrelmail/help/sr_YU/read_mail.hlp
 -squirrelmail/help/sr_YU/search.hlp
 -squirrelmail/help/sv_SE/FAQ.hlp
 -squirrelmail/help/sv_SE/addresses.hlp
 -squirrelmail/help/sv_SE/basic.hlp
 -squirrelmail/help/sv_SE/compose.hlp
 -squirrelmail/help/sv_SE/folders.hlp
 -squirrelmail/help/sv_SE/main_folder.hlp
 -squirrelmail/help/sv_SE/options.hlp
 -squirrelmail/help/sv_SE/read_mail.hlp
 -squirrelmail/help/sv_SE/search.hlp
 -squirrelmail/help/th_TH/FAQ.hlp
 -squirrelmail/help/th_TH/addresses.hlp
 -squirrelmail/help/th_TH/basic.hlp
 -squirrelmail/help/th_TH/compose.hlp
 -squirrelmail/help/th_TH/folders.hlp
 -squirrelmail/help/th_TH/main_folder.hlp
 -squirrelmail/help/th_TH/options.hlp
 -squirrelmail/help/th_TH/read_mail.hlp
 -squirrelmail/help/th_TH/search.hlp
 -squirrelmail/images/down_pointer.png
 -squirrelmail/images/index.php
 -squirrelmail/images/minus.gif
 -squirrelmail/images/plus.gif
 -squirrelmail/images/sec_remove_da_DK.png
 -squirrelmail/images/sec_remove_eng.png
 -squirrelmail/images/sec_remove_es_ES.png
 -squirrelmail/images/sec_remove_fr_FR.png
 -squirrelmail/images/sec_remove_id_ID.png
 -squirrelmail/images/sec_remove_ja_JP.png
 -squirrelmail/images/sec_remove_ko_KR.png
 -squirrelmail/images/sec_remove_lt_LT.png
 -squirrelmail/images/sec_remove_ru.png
 -squirrelmail/images/sec_remove_sl_SI.png
 -squirrelmail/images/sec_remove_sr_YU.png
 -squirrelmail/images/sm_logo.png
 -squirrelmail/images/sort_none.png
 -squirrelmail/images/up_pointer.png
 -squirrelmail/include/index.php
 -squirrelmail/include/load_prefs.php
 -squirrelmail/include/options/display.php
 -squirrelmail/include/options/folder.php
 -squirrelmail/include/options/index.php
 -squirrelmail/include/options/personal.php
 -squirrelmail/include/validate.php
 -squirrelmail/index.php
 -squirrelmail/locale/ar/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/ar/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/bg_BG/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/bg_BG/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/ca_ES/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/ca_ES/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/cs_CZ/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/cs_CZ/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/da_DK/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/da_DK/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/de_DE/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/de_DE/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/el_GR/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/el_GR/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/es_ES/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/es_ES/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/et_EE/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/et_EE/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/fi_FI/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/fi_FI/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/fr_FR/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/fr_FR/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/he_HE/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/he_IL/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/he_IL/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/hr_HR/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/hr_HR/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/hu_HU/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/hu_HU/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/id_ID/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/id_ID/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/index.php
 -squirrelmail/locale/is_IS/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/is_IS/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/it_IT/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/it_IT/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/ja_JP/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/ja_JP/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/ko_KR/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/ko_KR/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/lt_LT/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/lt_LT/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/nl_NL/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/nl_NL/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/nn_NO/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/nn_NO/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/no_NO/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/no_NO/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/pl_PL/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/pl_PL/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/pt_BR/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/pt_BR/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/pt_PT/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/pt_PT/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/ro_RO/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/ro_RO/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/ru_RU/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/ru_RU/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/sk_SK/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/sk_SK/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/sl_SI/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/sl_SI/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/sr_YU/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/sr_YU/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/sv_SE/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/sv_SE/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/th_TH/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/th_TH/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/timezones.cfg
 -squirrelmail/locale/tr_TR/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/tr_TR/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/uk_UA/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/uk_UA/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/vi_VN/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/vi_VN/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/zh_CN/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/zh_CN/LC_MESSAGES/squirrelmail.po
 -squirrelmail/locale/zh_TW/LC_MESSAGES/squirrelmail.mo
 -squirrelmail/locale/zh_TW/LC_MESSAGES/squirrelmail.po
 -squirrelmail/plugins/README.plugins
 -squirrelmail/plugins/abook_take/README
 -squirrelmail/plugins/abook_take/setup.php
 -squirrelmail/plugins/abook_take/take.php
 -squirrelmail/plugins/administrator/INSTALL
 -squirrelmail/plugins/administrator/auth.php
 -squirrelmail/plugins/administrator/defines.php
 -squirrelmail/plugins/administrator/index.php
 -squirrelmail/plugins/administrator/options.php
 -squirrelmail/plugins/administrator/setup.php
 -squirrelmail/plugins/bug_report/INSTALL
 -squirrelmail/plugins/bug_report/README
 -squirrelmail/plugins/bug_report/bug_report.php
 -squirrelmail/plugins/bug_report/index.php
 -squirrelmail/plugins/bug_report/setup.php
 -squirrelmail/plugins/calendar/README
 -squirrelmail/plugins/calendar/calendar.php
 -squirrelmail/plugins/calendar/calendar_data.php
 -squirrelmail/plugins/calendar/day.php
 -squirrelmail/plugins/calendar/event_create.php
 -squirrelmail/plugins/calendar/event_delete.php
 -squirrelmail/plugins/calendar/event_edit.php
 -squirrelmail/plugins/calendar/functions.php
 -squirrelmail/plugins/calendar/index.php
 -squirrelmail/plugins/calendar/setup.php
 -squirrelmail/plugins/delete_move_next/README
 -squirrelmail/plugins/delete_move_next/index.php
 -squirrelmail/plugins/delete_move_next/setup.php
 -squirrelmail/plugins/filters/CHANGES
 -squirrelmail/plugins/filters/README
 -squirrelmail/plugins/filters/bulkquery/INSTALL
 -squirrelmail/plugins/filters/bulkquery/Makefile
 -squirrelmail/plugins/filters/bulkquery/README
 -squirrelmail/plugins/filters/bulkquery/bq.in
 -squirrelmail/plugins/filters/bulkquery/bq.out
 -squirrelmail/plugins/filters/bulkquery/bulkquery.c
 -squirrelmail/plugins/filters/filters.php
 -squirrelmail/plugins/filters/index.php
 -squirrelmail/plugins/filters/options.php
 -squirrelmail/plugins/filters/setup.php
 -squirrelmail/plugins/filters/spamoptions.php
 -squirrelmail/plugins/fortune/INSTALL
 -squirrelmail/plugins/fortune/setup.php
 -squirrelmail/plugins/index.php
 -squirrelmail/plugins/info/README
 -squirrelmail/plugins/info/functions.php
 -squirrelmail/plugins/info/options.php
 -squirrelmail/plugins/info/setup.php
 -squirrelmail/plugins/listcommands/README
 -squirrelmail/plugins/listcommands/index.php
 -squirrelmail/plugins/listcommands/mailout.php
 -squirrelmail/plugins/listcommands/setup.php
 -squirrelmail/plugins/mail_fetch/README
 -squirrelmail/plugins/mail_fetch/class.POP3.php
 -squirrelmail/plugins/mail_fetch/fetch.php
 -squirrelmail/plugins/mail_fetch/functions.php
 -squirrelmail/plugins/mail_fetch/index.php
 -squirrelmail/plugins/mail_fetch/options.php
 -squirrelmail/plugins/mail_fetch/setup.php
 -squirrelmail/plugins/make_archive.pl
 -squirrelmail/plugins/message_details/message_details_bottom.php
 -squirrelmail/plugins/message_details/message_details_main.php
 -squirrelmail/plugins/message_details/message_details_top.php
 -squirrelmail/plugins/message_details/setup.php
 -squirrelmail/plugins/newmail/HISTORY
 -squirrelmail/plugins/newmail/README
 -squirrelmail/plugins/newmail/index.php
 -squirrelmail/plugins/newmail/newmail.php
 -squirrelmail/plugins/newmail/newmail_opt.php
 -squirrelmail/plugins/newmail/setup.php
 -squirrelmail/plugins/newmail/sounds/FanFair.wav
 -squirrelmail/plugins/newmail/sounds/Friends.wav
 -squirrelmail/plugins/newmail/sounds/MontyPython.wav
 -squirrelmail/plugins/newmail/sounds/Notify.wav
 -squirrelmail/plugins/newmail/testsound.php
 -squirrelmail/plugins/sent_subfolders/index.php
 -squirrelmail/plugins/sent_subfolders/setup.php
 -squirrelmail/plugins/spamcop/README
 -squirrelmail/plugins/spamcop/index.php
 -squirrelmail/plugins/spamcop/options.php
 -squirrelmail/plugins/spamcop/setup.php
 -squirrelmail/plugins/spamcop/spamcop.php
 -squirrelmail/plugins/squirrelspell/INSTALL
 -squirrelmail/plugins/squirrelspell/doc/CRYPTO
 -squirrelmail/plugins/squirrelspell/doc/ChangeLog
 -squirrelmail/plugins/squirrelspell/doc/PRIVACY
 -squirrelmail/plugins/squirrelspell/doc/README
 -squirrelmail/plugins/squirrelspell/doc/UPGRADING
 -squirrelmail/plugins/squirrelspell/doc/index.php
 -squirrelmail/plugins/squirrelspell/index.php
 -squirrelmail/plugins/squirrelspell/js/WHATISTHIS
 -squirrelmail/plugins/squirrelspell/js/check_me.js
 -squirrelmail/plugins/squirrelspell/js/crypto_settings.js
 -squirrelmail/plugins/squirrelspell/js/decrypt_error.js
 -squirrelmail/plugins/squirrelspell/js/index.php
 -squirrelmail/plugins/squirrelspell/js/init.js
 -squirrelmail/plugins/squirrelspell/modules/.htaccess
 -squirrelmail/plugins/squirrelspell/modules/WHATISTHIS
 -squirrelmail/plugins/squirrelspell/modules/check_me.mod
 -squirrelmail/plugins/squirrelspell/modules/crypto.mod
 -squirrelmail/plugins/squirrelspell/modules/crypto_badkey.mod
 -squirrelmail/plugins/squirrelspell/modules/edit_dic.mod
 -squirrelmail/plugins/squirrelspell/modules/enc_setup.mod
 -squirrelmail/plugins/squirrelspell/modules/forget_me.mod
 -squirrelmail/plugins/squirrelspell/modules/forget_me_not.mod
 -squirrelmail/plugins/squirrelspell/modules/index.php
 -squirrelmail/plugins/squirrelspell/modules/init.mod
 -squirrelmail/plugins/squirrelspell/modules/lang_change.mod
 -squirrelmail/plugins/squirrelspell/modules/lang_setup.mod
 -squirrelmail/plugins/squirrelspell/modules/options_main.mod
 -squirrelmail/plugins/squirrelspell/setup.php
 -squirrelmail/plugins/squirrelspell/sqspell_config.php
 -squirrelmail/plugins/squirrelspell/sqspell_functions.php
 -squirrelmail/plugins/squirrelspell/sqspell_interface.php
 -squirrelmail/plugins/squirrelspell/sqspell_options.php
 -squirrelmail/plugins/translate/INSTALL
 -squirrelmail/plugins/translate/README
 -squirrelmail/plugins/translate/index.php
 -squirrelmail/plugins/translate/options.php
 -squirrelmail/plugins/translate/setup.php
 -squirrelmail/po/charsetconvert.pl
 -squirrelmail/po/compilepo
 -squirrelmail/po/independent_strings.txt
 -squirrelmail/po/index.php
 -squirrelmail/po/mergepo
 -squirrelmail/po/squirrelmail.po
 -squirrelmail/po/xgetpo
 -squirrelmail/src/addrbook_popup.php
 -squirrelmail/src/addrbook_search.php
 -squirrelmail/src/addrbook_search_html.php
 -squirrelmail/src/addressbook.php
 -squirrelmail/src/compose.php
 -squirrelmail/src/delete_message.php
 -squirrelmail/src/download.php
 -squirrelmail/src/empty_trash.php
 -squirrelmail/src/folders.php
 -squirrelmail/src/folders_create.php
 -squirrelmail/src/folders_delete.php
 -squirrelmail/src/folders_rename_do.php
 -squirrelmail/src/folders_rename_getname.php
 -squirrelmail/src/folders_subscribe.php
 -squirrelmail/src/help.php
 -squirrelmail/src/image.php
 -squirrelmail/src/index.php
 -squirrelmail/src/left_main.php
 -squirrelmail/src/login.php
 -squirrelmail/src/move_messages.php
 -squirrelmail/src/options.php
 -squirrelmail/src/options_highlight.php
 -squirrelmail/src/options_identities.php
 -squirrelmail/src/options_order.php
 -squirrelmail/src/printer_friendly_bottom.php
 -squirrelmail/src/printer_friendly_main.php
 -squirrelmail/src/printer_friendly_top.php
 -squirrelmail/src/read_body.php
 -squirrelmail/src/redirect.php
 -squirrelmail/src/right_main.php
 -squirrelmail/src/search.php
 -squirrelmail/src/signout.php
 -squirrelmail/src/vcard.php
 -squirrelmail/src/view_header.php
 -squirrelmail/src/view_text.php
 -squirrelmail/src/webmail.php
 -squirrelmail/themes/README.themes
 -squirrelmail/themes/alien_glow.php
 -squirrelmail/themes/black_bean_burrito_theme.php
 -squirrelmail/themes/blue_grey_theme.php
 -squirrelmail/themes/bluesnews_theme.php
 -squirrelmail/themes/bluesteel_theme.php
 -squirrelmail/themes/christmas.php
 -squirrelmail/themes/css/sans-08.css
 -squirrelmail/themes/css/sans-10.css
 -squirrelmail/themes/css/sans-12.css
 -squirrelmail/themes/css/serif-10.css
 -squirrelmail/themes/css/serif-12.css
 -squirrelmail/themes/dark_green.php
 -squirrelmail/themes/dark_grey_theme.php
 -squirrelmail/themes/darkness.php
 -squirrelmail/themes/deepocean2_theme.php
 -squirrelmail/themes/deepocean_theme.php
 -squirrelmail/themes/default_theme.php
 -squirrelmail/themes/dompie_theme.php
 -squirrelmail/themes/forest_theme.php
 -squirrelmail/themes/greenhouse_effect.php
 -squirrelmail/themes/high_contrast_theme.php
 -squirrelmail/themes/ice_theme.php
 -squirrelmail/themes/in_the_pink.php
 -squirrelmail/themes/index.php
 -squirrelmail/themes/kind_of_blue.php
 -squirrelmail/themes/maize_theme.php
 -squirrelmail/themes/methodical_theme.php
 -squirrelmail/themes/midnight.php
 -squirrelmail/themes/monostochastic.php
 -squirrelmail/themes/penguin.php
 -squirrelmail/themes/plain_blue_theme.php
 -squirrelmail/themes/purple_theme.php
 -squirrelmail/themes/random.php
 -squirrelmail/themes/sandstorm_theme.php
 -squirrelmail/themes/seaspray_theme.php
 -squirrelmail/themes/servery_theme.php
 -squirrelmail/themes/shades_of_grey.php
 -squirrelmail/themes/slashdot_theme.php
 -squirrelmail/themes/spice_of_life.php
 -squirrelmail/themes/spice_of_life_dark.php
 -squirrelmail/themes/spice_of_life_lite.php
 - at dirrm squirrelmail/themes/css
 - at dirrm squirrelmail/themes
 - at dirrm squirrelmail/src
 - at dirrm squirrelmail/po
 - at dirrm squirrelmail/plugins/translate
 - at dirrm squirrelmail/plugins/squirrelspell/modules
 - at dirrm squirrelmail/plugins/squirrelspell/js
 - at dirrm squirrelmail/plugins/squirrelspell/doc
 - at dirrm squirrelmail/plugins/squirrelspell
 - at dirrm squirrelmail/plugins/spamcop
 - at dirrm squirrelmail/plugins/sent_subfolders
 - at dirrm squirrelmail/plugins/newmail/sounds
 - at dirrm squirrelmail/plugins/newmail
 - at dirrm squirrelmail/plugins/message_details
 - at dirrm squirrelmail/plugins/mail_fetch
 - at dirrm squirrelmail/plugins/listcommands
 - at dirrm squirrelmail/plugins/info
 - at dirrm squirrelmail/plugins/fortune
 - at dirrm squirrelmail/plugins/filters/bulkquery
 - at dirrm squirrelmail/plugins/filters
 - at dirrm squirrelmail/plugins/delete_move_next
 - at dirrm squirrelmail/plugins/calendar
 - at dirrm squirrelmail/plugins/bug_report
 - at dirrm squirrelmail/plugins/administrator
 - at dirrm squirrelmail/plugins/abook_take
 - at dirrm squirrelmail/plugins
 - at dirrm squirrelmail/locale/zh_TW/LC_MESSAGES
 - at dirrm squirrelmail/locale/zh_TW
 - at dirrm squirrelmail/locale/zh_CN/LC_MESSAGES
 - at dirrm squirrelmail/locale/zh_CN
 - at dirrm squirrelmail/locale/vi_VN/LC_MESSAGES
 - at dirrm squirrelmail/locale/vi_VN
 - at dirrm squirrelmail/locale/uk_UA/LC_MESSAGES
 - at dirrm squirrelmail/locale/uk_UA
 - at dirrm squirrelmail/locale/tr_TR/LC_MESSAGES
 - at dirrm squirrelmail/locale/tr_TR
 - at dirrm squirrelmail/locale/th_TH/LC_MESSAGES
 - at dirrm squirrelmail/locale/th_TH
 - at dirrm squirrelmail/locale/sv_SE/LC_MESSAGES
 - at dirrm squirrelmail/locale/sv_SE
 - at dirrm squirrelmail/locale/sr_YU/LC_MESSAGES
 - at dirrm squirrelmail/locale/sr_YU
 - at dirrm squirrelmail/locale/sl_SI/LC_MESSAGES
 - at dirrm squirrelmail/locale/sl_SI
 - at dirrm squirrelmail/locale/sk_SK/LC_MESSAGES
 - at dirrm squirrelmail/locale/sk_SK
 - at dirrm squirrelmail/locale/ru_RU/LC_MESSAGES
 - at dirrm squirrelmail/locale/ru_RU
 - at dirrm squirrelmail/locale/ro_RO/LC_MESSAGES
 - at dirrm squirrelmail/locale/ro_RO
 - at dirrm squirrelmail/locale/pt_PT/LC_MESSAGES
 - at dirrm squirrelmail/locale/pt_PT
 - at dirrm squirrelmail/locale/pt_BR/LC_MESSAGES
 - at dirrm squirrelmail/locale/pt_BR
 - at dirrm squirrelmail/locale/pl_PL/LC_MESSAGES
 - at dirrm squirrelmail/locale/pl_PL
 - at dirrm squirrelmail/locale/no_NO/LC_MESSAGES
 - at dirrm squirrelmail/locale/no_NO
 - at dirrm squirrelmail/locale/nn_NO/LC_MESSAGES
 - at dirrm squirrelmail/locale/nn_NO
 - at dirrm squirrelmail/locale/nl_NL/LC_MESSAGES
 - at dirrm squirrelmail/locale/nl_NL
 - at dirrm squirrelmail/locale/lt_LT/LC_MESSAGES
 - at dirrm squirrelmail/locale/lt_LT
 - at dirrm squirrelmail/locale/ko_KR/LC_MESSAGES
 - at dirrm squirrelmail/locale/ko_KR
 - at dirrm squirrelmail/locale/ja_JP/LC_MESSAGES
 - at dirrm squirrelmail/locale/ja_JP
 - at dirrm squirrelmail/locale/it_IT/LC_MESSAGES
 - at dirrm squirrelmail/locale/it_IT
 - at dirrm squirrelmail/locale/is_IS/LC_MESSAGES
 - at dirrm squirrelmail/locale/is_IS
 - at dirrm squirrelmail/locale/id_ID/LC_MESSAGES
 - at dirrm squirrelmail/locale/id_ID
 - at dirrm squirrelmail/locale/hu_HU/LC_MESSAGES
 - at dirrm squirrelmail/locale/hu_HU
 - at dirrm squirrelmail/locale/hr_HR/LC_MESSAGES
 - at dirrm squirrelmail/locale/hr_HR
 - at dirrm squirrelmail/locale/he_IL/LC_MESSAGES
 - at dirrm squirrelmail/locale/he_IL
 - at dirrm squirrelmail/locale/he_HE/LC_MESSAGES
 - at dirrm squirrelmail/locale/he_HE
 - at dirrm squirrelmail/locale/fr_FR/LC_MESSAGES
 - at dirrm squirrelmail/locale/fr_FR
 - at dirrm squirrelmail/locale/fi_FI/LC_MESSAGES
 - at dirrm squirrelmail/locale/fi_FI
 - at dirrm squirrelmail/locale/et_EE/LC_MESSAGES
 - at dirrm squirrelmail/locale/et_EE
 - at dirrm squirrelmail/locale/es_ES/LC_MESSAGES
 - at dirrm squirrelmail/locale/es_ES
 - at dirrm squirrelmail/locale/el_GR/LC_MESSAGES
 - at dirrm squirrelmail/locale/el_GR
 - at dirrm squirrelmail/locale/de_DE/LC_MESSAGES
 - at dirrm squirrelmail/locale/de_DE
 - at dirrm squirrelmail/locale/da_DK/LC_MESSAGES
 - at dirrm squirrelmail/locale/da_DK
 - at dirrm squirrelmail/locale/cs_CZ/LC_MESSAGES
 - at dirrm squirrelmail/locale/cs_CZ
 - at dirrm squirrelmail/locale/ca_ES/LC_MESSAGES
 - at dirrm squirrelmail/locale/ca_ES
 - at dirrm squirrelmail/locale/bg_BG/LC_MESSAGES
 - at dirrm squirrelmail/locale/bg_BG
 - at dirrm squirrelmail/locale/ar/LC_MESSAGES
 - at dirrm squirrelmail/locale/ar
 - at dirrm squirrelmail/locale
 - at dirrm squirrelmail/include/options
 - at dirrm squirrelmail/include
 - at dirrm squirrelmail/images
 - at dirrm squirrelmail/help/th_TH
 - at dirrm squirrelmail/help/sv_SE
 - at dirrm squirrelmail/help/sr_YU
 - at dirrm squirrelmail/help/sl_SI
 - at dirrm squirrelmail/help/ru_RU
 - at dirrm squirrelmail/help/pt_PT
 - at dirrm squirrelmail/help/pt_BR
 - at dirrm squirrelmail/help/pl_PL
 - at dirrm squirrelmail/help/nl_NL
 - at dirrm squirrelmail/help/lt_LT
 - at dirrm squirrelmail/help/ko_KR
 - at dirrm squirrelmail/help/ja_JP
 - at dirrm squirrelmail/help/it_IT
 - at dirrm squirrelmail/help/id_ID
 - at dirrm squirrelmail/help/fr_FR
 - at dirrm squirrelmail/help/fi_FI
 - at dirrm squirrelmail/help/es_ES
 - at dirrm squirrelmail/help/en_US
 - at dirrm squirrelmail/help/de_DE
 - at dirrm squirrelmail/help/da_DK
 - at dirrm squirrelmail/help/cs_CZ
 - at dirrm squirrelmail/help/ca_ES
 - at dirrm squirrelmail/help/bg_BG
 - at dirrm squirrelmail/help
 - at dirrm squirrelmail/functions
 - at dirrm squirrelmail/doc/ReleaseNotes/1.3
 - at dirrm squirrelmail/doc/ReleaseNotes/1.2
 - at dirrm squirrelmail/doc/ReleaseNotes
 - at dirrm squirrelmail/doc
 - at dirrm squirrelmail/data
 - at dirrm squirrelmail/contrib/RPM
 - at dirrm squirrelmail/contrib
 - at dirrm squirrelmail/config
 - at dirrm squirrelmail/class/mime
 - at dirrm squirrelmail/class/helper
 - at dirrm squirrelmail/class/deliver
 - at dirrm squirrelmail/class
 - at dirrm squirrelmail
 +etc/periodic/daily/111.clean-squirrlmail
 +%%PORTDOCS%%share/doc/squirrelmail/AUTHORS
 +%%PORTDOCS%%share/doc/squirrelmail/COPYING
 +%%PORTDOCS%%share/doc/squirrelmail/ChangeLog
 +%%PORTDOCS%%share/doc/squirrelmail/INSTALL
 +%%PORTDOCS%%share/doc/squirrelmail/README
 +%%PORTDOCS%%share/doc/squirrelmail/README.themes
 +%%PORTDOCS%%share/doc/squirrelmail/README.russian_apache
 +%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes-%%PORTVERSION%%
 +%%PORTDOCS%%share/doc/squirrelmail/UPGRADE
 +%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.2/Notes-1.2.0.txt
 +%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.2/Notes-1.2.1.txt
 +%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.2/Notes-1.2.2.txt
 +%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.2/Notes-1.2.3.txt
 +%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.2/Notes-1.2.4.txt
 +%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.2/Notes-1.2.5
 +%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.2/Notes-1.2.6.txt
 +%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.3/Notes-1.3.0.txt
 +%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.3/Notes-1.3.1.txt
 +%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.3/Notes-1.3.2.txt
 +%%PORTDOCS%%share/doc/squirrelmail/addressbook.txt
 +%%PORTDOCS%%share/doc/squirrelmail/authentication.txt
 +%%PORTDOCS%%share/doc/squirrelmail/compose.txt
 +%%PORTDOCS%%share/doc/squirrelmail/db-backend.txt
 +%%PORTDOCS%%share/doc/squirrelmail/ie_ssl.txt
 +%%PORTDOCS%%share/doc/squirrelmail/index.html
 +%%PORTDOCS%%share/doc/squirrelmail/mime.txt
 +%%PORTDOCS%%share/doc/squirrelmail/plugin.txt
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/README.plugins
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/abook_take/README
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/administrator/INSTALL
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/bug_report/INSTALL
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/bug_report/README
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/calendar/README
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/delete_move_next/README
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/filters/CHANGES
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/filters/README
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/filters/bulkquery/INSTALL
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/filters/bulkquery/README
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/fortune/INSTALL
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/info/README
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/listcommands/README
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/mail_fetch/README
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/newmail/HISTORY
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/newmail/README
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/spamcop/README
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/squirrelspell/CRYPTO
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/squirrelspell/ChangeLog
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/squirrelspell/INSTALL
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/squirrelspell/PRIVACY
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/squirrelspell/README
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/squirrelspell/UPGRADING
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/translate/INSTALL
 +%%PORTDOCS%%share/doc/squirrelmail/plugins/translate/README
 +%%PORTDOCS%%share/doc/squirrelmail/rfc_documents.txt
 +%%PORTDOCS%%share/doc/squirrelmail/themes.txt
 +%%PORTDOCS%%share/doc/squirrelmail/translating.txt
 +%%PORTDOCS%%share/doc/squirrelmail/translating_help.txt
 +%%PORTDOCS%%share/doc/squirrelmail/tree.txt
 +%%SQUIRRELDIR%%/class/deliver/Deliver.class.php
 +%%SQUIRRELDIR%%/class/deliver/Deliver_IMAP.class.php
 +%%SQUIRRELDIR%%/class/deliver/Deliver_SMTP.class.php
 +%%SQUIRRELDIR%%/class/deliver/Deliver_SendMail.class.php
 +%%SQUIRRELDIR%%/class/deliver/index.php
 +%%SQUIRRELDIR%%/class/helper/VCard.class.php
 +%%SQUIRRELDIR%%/class/html.class.php
 +%%SQUIRRELDIR%%/class/index.php
 +%%SQUIRRELDIR%%/class/mime.class.php
 +%%SQUIRRELDIR%%/class/mime/AddressStructure.class.php
 +%%SQUIRRELDIR%%/class/mime/ContentType.class.php
 +%%SQUIRRELDIR%%/class/mime/Disposition.class.php
 +%%SQUIRRELDIR%%/class/mime/Language.class.php
 +%%SQUIRRELDIR%%/class/mime/Message.class.php
 +%%SQUIRRELDIR%%/class/mime/MessageHeader.class.php
 +%%SQUIRRELDIR%%/class/mime/Rfc822Header.class.php
 +%%SQUIRRELDIR%%/class/mime/SMimeMessage.class.php
 +%%SQUIRRELDIR%%/class/mime/index.php
 +%%SQUIRRELDIR%%/config/conf.pl
 +%%SQUIRRELDIR%%/config/config_default.php
 +%%SQUIRRELDIR%%/config/config_local.php
 +%%SQUIRRELDIR%%/config/index.php
 +%%SQUIRRELDIR%%/configure
 +%%SQUIRRELDIR%%/data/.htaccess
 +%%SQUIRRELDIR%%/data/default_pref
 +%%SQUIRRELDIR%%/data/index.php
 +%%SQUIRRELDIR%%/functions/abook_database.php
 +%%SQUIRRELDIR%%/functions/abook_global_file.php
 +%%SQUIRRELDIR%%/functions/abook_ldap_server.php
 +%%SQUIRRELDIR%%/functions/abook_local_file.php
 +%%SQUIRRELDIR%%/functions/addressbook.php
 +%%SQUIRRELDIR%%/functions/attachment_common.php
 +%%SQUIRRELDIR%%/functions/auth.php
 +%%SQUIRRELDIR%%/functions/constants.php
 +%%SQUIRRELDIR%%/functions/date.php
 +%%SQUIRRELDIR%%/functions/db_prefs.php
 +%%SQUIRRELDIR%%/functions/display_messages.php
 +%%SQUIRRELDIR%%/functions/file_prefs.php
 +%%SQUIRRELDIR%%/functions/gettext.php
 +%%SQUIRRELDIR%%/functions/global.php
 +%%SQUIRRELDIR%%/functions/html.php
 +%%SQUIRRELDIR%%/functions/i18n.php
 +%%SQUIRRELDIR%%/functions/imap.php
 +%%SQUIRRELDIR%%/functions/imap_general.php
 +%%SQUIRRELDIR%%/functions/imap_mailbox.php
 +%%SQUIRRELDIR%%/functions/imap_messages.php
 +%%SQUIRRELDIR%%/functions/imap_parse.php
 +%%SQUIRRELDIR%%/functions/imap_search.php
 +%%SQUIRRELDIR%%/functions/imap_utf7_local.php
 +%%SQUIRRELDIR%%/functions/index.php
 +%%SQUIRRELDIR%%/functions/mailbox_display.php
 +%%SQUIRRELDIR%%/functions/mime.php
 +%%SQUIRRELDIR%%/functions/options.php
 +%%SQUIRRELDIR%%/functions/page_header.php
 +%%SQUIRRELDIR%%/functions/plugin.php
 +%%SQUIRRELDIR%%/functions/prefs.php
 +%%SQUIRRELDIR%%/functions/strings.php
 +%%SQUIRRELDIR%%/functions/tree.php
 +%%SQUIRRELDIR%%/functions/url_parser.php
 +%%SQUIRRELDIR%%/help/bg_BG/FAQ.hlp
 +%%SQUIRRELDIR%%/help/bg_BG/addresses.hlp
 +%%SQUIRRELDIR%%/help/bg_BG/basic.hlp
 +%%SQUIRRELDIR%%/help/bg_BG/compose.hlp
 +%%SQUIRRELDIR%%/help/bg_BG/folders.hlp
 +%%SQUIRRELDIR%%/help/bg_BG/main_folder.hlp
 +%%SQUIRRELDIR%%/help/bg_BG/options.hlp
 +%%SQUIRRELDIR%%/help/bg_BG/read_mail.hlp
 +%%SQUIRRELDIR%%/help/bg_BG/search.hlp
 +%%SQUIRRELDIR%%/help/ca_ES/FAQ.hlp
 +%%SQUIRRELDIR%%/help/ca_ES/addresses.hlp
 +%%SQUIRRELDIR%%/help/ca_ES/basic.hlp
 +%%SQUIRRELDIR%%/help/ca_ES/compose.hlp
 +%%SQUIRRELDIR%%/help/ca_ES/folders.hlp
 +%%SQUIRRELDIR%%/help/ca_ES/main_folder.hlp
 +%%SQUIRRELDIR%%/help/ca_ES/options.hlp
 +%%SQUIRRELDIR%%/help/ca_ES/read_mail.hlp
 +%%SQUIRRELDIR%%/help/ca_ES/search.hlp
 +%%SQUIRRELDIR%%/help/cs_CZ/FAQ.hlp
 +%%SQUIRRELDIR%%/help/cs_CZ/addresses.hlp
 +%%SQUIRRELDIR%%/help/cs_CZ/basic.hlp
 +%%SQUIRRELDIR%%/help/cs_CZ/compose.hlp
 +%%SQUIRRELDIR%%/help/cs_CZ/folders.hlp
 +%%SQUIRRELDIR%%/help/cs_CZ/main_folder.hlp
 +%%SQUIRRELDIR%%/help/cs_CZ/options.hlp
 +%%SQUIRRELDIR%%/help/cs_CZ/read_mail.hlp
 +%%SQUIRRELDIR%%/help/cs_CZ/search.hlp
 +%%SQUIRRELDIR%%/help/da_DK/FAQ.hlp
 +%%SQUIRRELDIR%%/help/da_DK/addresses.hlp
 +%%SQUIRRELDIR%%/help/da_DK/basic.hlp
 +%%SQUIRRELDIR%%/help/da_DK/compose.hlp
 +%%SQUIRRELDIR%%/help/da_DK/folders.hlp
 +%%SQUIRRELDIR%%/help/da_DK/main_folder.hlp
 +%%SQUIRRELDIR%%/help/da_DK/options.hlp
 +%%SQUIRRELDIR%%/help/da_DK/read_mail.hlp
 +%%SQUIRRELDIR%%/help/da_DK/search.hlp
 +%%SQUIRRELDIR%%/help/de_DE/FAQ.hlp
 +%%SQUIRRELDIR%%/help/de_DE/addresses.hlp
 +%%SQUIRRELDIR%%/help/de_DE/basic.hlp
 +%%SQUIRRELDIR%%/help/de_DE/compose.hlp
 +%%SQUIRRELDIR%%/help/de_DE/folders.hlp
 +%%SQUIRRELDIR%%/help/de_DE/main_folder.hlp
 +%%SQUIRRELDIR%%/help/de_DE/options.hlp
 +%%SQUIRRELDIR%%/help/de_DE/read_mail.hlp
 +%%SQUIRRELDIR%%/help/de_DE/search.hlp
 +%%SQUIRRELDIR%%/help/en_US/FAQ.hlp
 +%%SQUIRRELDIR%%/help/en_US/addresses.hlp
 +%%SQUIRRELDIR%%/help/en_US/basic.hlp
 +%%SQUIRRELDIR%%/help/en_US/compose.hlp
 +%%SQUIRRELDIR%%/help/en_US/folders.hlp
 +%%SQUIRRELDIR%%/help/en_US/main_folder.hlp
 +%%SQUIRRELDIR%%/help/en_US/options.hlp
 +%%SQUIRRELDIR%%/help/en_US/read_mail.hlp
 +%%SQUIRRELDIR%%/help/en_US/search.hlp
 +%%SQUIRRELDIR%%/help/es_ES/FAQ.hlp
 +%%SQUIRRELDIR%%/help/es_ES/addresses.hlp
 +%%SQUIRRELDIR%%/help/es_ES/basic.hlp
 +%%SQUIRRELDIR%%/help/es_ES/compose.hlp
 +%%SQUIRRELDIR%%/help/es_ES/folders.hlp
 +%%SQUIRRELDIR%%/help/es_ES/main_folder.hlp
 +%%SQUIRRELDIR%%/help/es_ES/options.hlp
 +%%SQUIRRELDIR%%/help/es_ES/read_mail.hlp
 +%%SQUIRRELDIR%%/help/es_ES/search.hlp
 +%%SQUIRRELDIR%%/help/fi_FI/FAQ.hlp
 +%%SQUIRRELDIR%%/help/fi_FI/addresses.hlp
 +%%SQUIRRELDIR%%/help/fi_FI/basic.hlp
 +%%SQUIRRELDIR%%/help/fi_FI/compose.hlp
 +%%SQUIRRELDIR%%/help/fi_FI/folders.hlp
 +%%SQUIRRELDIR%%/help/fi_FI/main_folder.hlp
 +%%SQUIRRELDIR%%/help/fi_FI/options.hlp
 +%%SQUIRRELDIR%%/help/fi_FI/read_mail.hlp
 +%%SQUIRRELDIR%%/help/fi_FI/search.hlp
 +%%SQUIRRELDIR%%/help/fr_FR/FAQ.hlp
 +%%SQUIRRELDIR%%/help/fr_FR/addresses.hlp
 +%%SQUIRRELDIR%%/help/fr_FR/basic.hlp
 +%%SQUIRRELDIR%%/help/fr_FR/compose.hlp
 +%%SQUIRRELDIR%%/help/fr_FR/folders.hlp
 +%%SQUIRRELDIR%%/help/fr_FR/main_folder.hlp
 +%%SQUIRRELDIR%%/help/fr_FR/options.hlp
 +%%SQUIRRELDIR%%/help/fr_FR/read_mail.hlp
 +%%SQUIRRELDIR%%/help/fr_FR/search.hlp
 +%%SQUIRRELDIR%%/help/id_ID/FAQ.hlp
 +%%SQUIRRELDIR%%/help/id_ID/addresses.hlp
 +%%SQUIRRELDIR%%/help/id_ID/basic.hlp
 +%%SQUIRRELDIR%%/help/id_ID/compose.hlp
 +%%SQUIRRELDIR%%/help/id_ID/folders.hlp
 +%%SQUIRRELDIR%%/help/id_ID/main_folder.hlp
 +%%SQUIRRELDIR%%/help/id_ID/options.hlp
 +%%SQUIRRELDIR%%/help/id_ID/read_mail.hlp
 +%%SQUIRRELDIR%%/help/id_ID/search.hlp
 +%%SQUIRRELDIR%%/help/index.php
 +%%SQUIRRELDIR%%/help/it_IT/FAQ.hlp
 +%%SQUIRRELDIR%%/help/it_IT/addresses.hlp
 +%%SQUIRRELDIR%%/help/it_IT/basic.hlp
 +%%SQUIRRELDIR%%/help/it_IT/compose.hlp
 +%%SQUIRRELDIR%%/help/it_IT/folders.hlp
 +%%SQUIRRELDIR%%/help/it_IT/main_folder.hlp
 +%%SQUIRRELDIR%%/help/it_IT/options.hlp
 +%%SQUIRRELDIR%%/help/it_IT/read_mail.hlp
 +%%SQUIRRELDIR%%/help/it_IT/search.hlp
 +%%SQUIRRELDIR%%/help/ja_JP/FAQ.hlp
 +%%SQUIRRELDIR%%/help/ja_JP/addresses.hlp
 +%%SQUIRRELDIR%%/help/ja_JP/basic.hlp
 +%%SQUIRRELDIR%%/help/ja_JP/compose.hlp
 +%%SQUIRRELDIR%%/help/ja_JP/folders.hlp
 +%%SQUIRRELDIR%%/help/ja_JP/main_folder.hlp
 +%%SQUIRRELDIR%%/help/ja_JP/options.hlp
 +%%SQUIRRELDIR%%/help/ja_JP/read_mail.hlp
 +%%SQUIRRELDIR%%/help/ja_JP/search.hlp
 +%%SQUIRRELDIR%%/help/ko_KR/FAQ.hlp
 +%%SQUIRRELDIR%%/help/ko_KR/addresses.hlp
 +%%SQUIRRELDIR%%/help/ko_KR/basic.hlp
 +%%SQUIRRELDIR%%/help/ko_KR/compose.hlp
 +%%SQUIRRELDIR%%/help/ko_KR/folders.hlp
 +%%SQUIRRELDIR%%/help/ko_KR/main_folder.hlp
 +%%SQUIRRELDIR%%/help/ko_KR/options.hlp
 +%%SQUIRRELDIR%%/help/ko_KR/read_mail.hlp
 +%%SQUIRRELDIR%%/help/ko_KR/search.hlp
 +%%SQUIRRELDIR%%/help/lt_LT/FAQ.hlp
 +%%SQUIRRELDIR%%/help/lt_LT/addresses.hlp
 +%%SQUIRRELDIR%%/help/lt_LT/basic.hlp
 +%%SQUIRRELDIR%%/help/lt_LT/compose.hlp
 +%%SQUIRRELDIR%%/help/lt_LT/folders.hlp
 +%%SQUIRRELDIR%%/help/lt_LT/main_folder.hlp
 +%%SQUIRRELDIR%%/help/lt_LT/options.hlp
 +%%SQUIRRELDIR%%/help/lt_LT/read_mail.hlp
 +%%SQUIRRELDIR%%/help/lt_LT/search.hlp
 +%%SQUIRRELDIR%%/help/nl_NL/FAQ.hlp
 +%%SQUIRRELDIR%%/help/nl_NL/addresses.hlp
 +%%SQUIRRELDIR%%/help/nl_NL/basic.hlp
 +%%SQUIRRELDIR%%/help/nl_NL/compose.hlp
 +%%SQUIRRELDIR%%/help/nl_NL/folders.hlp
 +%%SQUIRRELDIR%%/help/nl_NL/main_folder.hlp
 +%%SQUIRRELDIR%%/help/nl_NL/options.hlp
 +%%SQUIRRELDIR%%/help/nl_NL/read_mail.hlp
 +%%SQUIRRELDIR%%/help/nl_NL/search.hlp
 +%%SQUIRRELDIR%%/help/pl_PL/FAQ.hlp
 +%%SQUIRRELDIR%%/help/pl_PL/addresses.hlp
 +%%SQUIRRELDIR%%/help/pl_PL/basic.hlp
 +%%SQUIRRELDIR%%/help/pl_PL/compose.hlp
 +%%SQUIRRELDIR%%/help/pl_PL/folders.hlp
 +%%SQUIRRELDIR%%/help/pl_PL/main_folder.hlp
 +%%SQUIRRELDIR%%/help/pl_PL/options.hlp
 +%%SQUIRRELDIR%%/help/pl_PL/read_mail.hlp
 +%%SQUIRRELDIR%%/help/pl_PL/search.hlp
 +%%SQUIRRELDIR%%/help/pt_BR/FAQ.hlp
 +%%SQUIRRELDIR%%/help/pt_BR/addresses.hlp
 +%%SQUIRRELDIR%%/help/pt_BR/basic.hlp
 +%%SQUIRRELDIR%%/help/pt_BR/compose.hlp
 +%%SQUIRRELDIR%%/help/pt_BR/folders.hlp
 +%%SQUIRRELDIR%%/help/pt_BR/main_folder.hlp
 +%%SQUIRRELDIR%%/help/pt_BR/options.hlp
 +%%SQUIRRELDIR%%/help/pt_BR/read_mail.hlp
 +%%SQUIRRELDIR%%/help/pt_BR/search.hlp
 +%%SQUIRRELDIR%%/help/pt_PT/FAQ.hlp
 +%%SQUIRRELDIR%%/help/pt_PT/addresses.hlp
 +%%SQUIRRELDIR%%/help/pt_PT/basic.hlp
 +%%SQUIRRELDIR%%/help/pt_PT/compose.hlp
 +%%SQUIRRELDIR%%/help/pt_PT/folders.hlp
 +%%SQUIRRELDIR%%/help/pt_PT/main_folder.hlp
 +%%SQUIRRELDIR%%/help/pt_PT/options.hlp
 +%%SQUIRRELDIR%%/help/pt_PT/read_mail.hlp
 +%%SQUIRRELDIR%%/help/pt_PT/search.hlp
 +%%SQUIRRELDIR%%/help/ru_RU/FAQ.hlp
 +%%SQUIRRELDIR%%/help/ru_RU/addresses.hlp
 +%%SQUIRRELDIR%%/help/ru_RU/basic.hlp
 +%%SQUIRRELDIR%%/help/ru_RU/compose.hlp
 +%%SQUIRRELDIR%%/help/ru_RU/folders.hlp
 +%%SQUIRRELDIR%%/help/ru_RU/main_folder.hlp
 +%%SQUIRRELDIR%%/help/ru_RU/options.hlp
 +%%SQUIRRELDIR%%/help/ru_RU/read_mail.hlp
 +%%SQUIRRELDIR%%/help/ru_RU/search.hlp
 +%%SQUIRRELDIR%%/help/sl_SI/FAQ.hlp
 +%%SQUIRRELDIR%%/help/sl_SI/addresses.hlp
 +%%SQUIRRELDIR%%/help/sl_SI/basic.hlp
 +%%SQUIRRELDIR%%/help/sl_SI/compose.hlp
 +%%SQUIRRELDIR%%/help/sl_SI/folders.hlp
 +%%SQUIRRELDIR%%/help/sl_SI/main_folder.hlp
 +%%SQUIRRELDIR%%/help/sl_SI/options.hlp
 +%%SQUIRRELDIR%%/help/sl_SI/read_mail.hlp
 +%%SQUIRRELDIR%%/help/sl_SI/search.hlp
 +%%SQUIRRELDIR%%/help/sr_YU/FAQ.hlp
 +%%SQUIRRELDIR%%/help/sr_YU/addresses.hlp
 +%%SQUIRRELDIR%%/help/sr_YU/basic.hlp 
 +%%SQUIRRELDIR%%/help/sr_YU/compose.hlp
 +%%SQUIRRELDIR%%/help/sr_YU/folders.hlp
 +%%SQUIRRELDIR%%/help/sr_YU/main_folder.hlp
 +%%SQUIRRELDIR%%/help/sr_YU/options.hlp
 +%%SQUIRRELDIR%%/help/sr_YU/read_mail.hlp
 +%%SQUIRRELDIR%%/help/sr_YU/search.hlp
 +%%SQUIRRELDIR%%/help/sv_SE/FAQ.hlp
 +%%SQUIRRELDIR%%/help/sv_SE/addresses.hlp
 +%%SQUIRRELDIR%%/help/sv_SE/basic.hlp
 +%%SQUIRRELDIR%%/help/sv_SE/compose.hlp
 +%%SQUIRRELDIR%%/help/sv_SE/folders.hlp
 +%%SQUIRRELDIR%%/help/sv_SE/main_folder.hlp
 +%%SQUIRRELDIR%%/help/sv_SE/options.hlp
 +%%SQUIRRELDIR%%/help/sv_SE/read_mail.hlp
 +%%SQUIRRELDIR%%/help/sv_SE/search.hlp
 +%%SQUIRRELDIR%%/help/th_TH/FAQ.hlp
 +%%SQUIRRELDIR%%/help/th_TH/addresses.hlp
 +%%SQUIRRELDIR%%/help/th_TH/basic.hlp
 +%%SQUIRRELDIR%%/help/th_TH/compose.hlp
 +%%SQUIRRELDIR%%/help/th_TH/folders.hlp
 +%%SQUIRRELDIR%%/help/th_TH/main_folder.hlp
 +%%SQUIRRELDIR%%/help/th_TH/options.hlp
 +%%SQUIRRELDIR%%/help/th_TH/read_mail.hlp
 +%%SQUIRRELDIR%%/help/th_TH/search.hlp
 +%%SQUIRRELDIR%%/images/down_pointer.png
 +%%SQUIRRELDIR%%/images/index.php
 +%%SQUIRRELDIR%%/images/minus.gif
 +%%SQUIRRELDIR%%/images/plus.gif
 +%%SQUIRRELDIR%%/images/sec_remove_da_DK.png
 +%%SQUIRRELDIR%%/images/sec_remove_eng.png
 +%%SQUIRRELDIR%%/images/sec_remove_es_ES.png
 +%%SQUIRRELDIR%%/images/sec_remove_fr_FR.png
 +%%SQUIRRELDIR%%/images/sec_remove_id_ID.png
 +%%SQUIRRELDIR%%/images/sec_remove_ja_JP.png
 +%%SQUIRRELDIR%%/images/sec_remove_ko_KR.png
 +%%SQUIRRELDIR%%/images/sec_remove_lt_LT.png
 +%%SQUIRRELDIR%%/images/sec_remove_ru.png
 +%%SQUIRRELDIR%%/images/sec_remove_sl_SI.png
 +%%SQUIRRELDIR%%/images/sec_remove_sr_YU.png
 +%%SQUIRRELDIR%%/images/sm_logo.png
 +%%SQUIRRELDIR%%/images/sort_none.png
 +%%SQUIRRELDIR%%/images/up_pointer.png
 +%%SQUIRRELDIR%%/include/index.php
 +%%SQUIRRELDIR%%/include/load_prefs.php
 +%%SQUIRRELDIR%%/include/options/display.php
 +%%SQUIRRELDIR%%/include/options/folder.php
 +%%SQUIRRELDIR%%/include/options/index.php
 +%%SQUIRRELDIR%%/include/options/personal.php
 +%%SQUIRRELDIR%%/include/validate.php
 +%%SQUIRRELDIR%%/index.php
 +%%SQUIRRELDIR%%/locale/ar/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/ar/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/he_HE/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/index.php
 +%%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/no_NO/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/no_NO/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/sk_SK/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/sk_SK/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/sl_SI/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/sl_SI/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/sr_YU/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/sr_YU/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/th_TH/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/th_TH/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/timezones.cfg
 +%%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/zh_CN/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/zh_CN/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/locale/zh_TW/LC_MESSAGES/squirrelmail.mo
 +%%SQUIRRELDIR%%/locale/zh_TW/LC_MESSAGES/squirrelmail.po
 +%%SQUIRRELDIR%%/plugins/abook_take/setup.php
 +%%SQUIRRELDIR%%/plugins/abook_take/take.php
 +%%SQUIRRELDIR%%/plugins/administrator/auth.php
 +%%SQUIRRELDIR%%/plugins/administrator/defines.php
 +%%SQUIRRELDIR%%/plugins/administrator/index.php
 +%%SQUIRRELDIR%%/plugins/administrator/options.php
 +%%SQUIRRELDIR%%/plugins/administrator/setup.php
 +%%SQUIRRELDIR%%/plugins/bug_report/bug_report.php
 +%%SQUIRRELDIR%%/plugins/bug_report/index.php
 +%%SQUIRRELDIR%%/plugins/bug_report/setup.php
 +%%SQUIRRELDIR%%/plugins/calendar/calendar.php
 +%%SQUIRRELDIR%%/plugins/calendar/calendar_data.php
 +%%SQUIRRELDIR%%/plugins/calendar/day.php
 +%%SQUIRRELDIR%%/plugins/calendar/event_create.php
 +%%SQUIRRELDIR%%/plugins/calendar/event_delete.php
 +%%SQUIRRELDIR%%/plugins/calendar/event_edit.php
 +%%SQUIRRELDIR%%/plugins/calendar/functions.php
 +%%SQUIRRELDIR%%/plugins/calendar/index.php
 +%%SQUIRRELDIR%%/plugins/calendar/setup.php
 +%%SQUIRRELDIR%%/plugins/delete_move_next/index.php
 +%%SQUIRRELDIR%%/plugins/delete_move_next/setup.php
 +%%SQUIRRELDIR%%/plugins/filters/bulkquery/Makefile
 +%%SQUIRRELDIR%%/plugins/filters/bulkquery/bq.in
 +%%SQUIRRELDIR%%/plugins/filters/bulkquery/bq.out
 +%%SQUIRRELDIR%%/plugins/filters/bulkquery/bulkquery.c
 +%%SQUIRRELDIR%%/plugins/filters/filters.php
 +%%SQUIRRELDIR%%/plugins/filters/index.php
 +%%SQUIRRELDIR%%/plugins/filters/options.php
 +%%SQUIRRELDIR%%/plugins/filters/setup.php
 +%%SQUIRRELDIR%%/plugins/filters/spamoptions.php
 +%%SQUIRRELDIR%%/plugins/fortune/setup.php
 +%%SQUIRRELDIR%%/plugins/index.php
 +%%SQUIRRELDIR%%/plugins/info/functions.php
 +%%SQUIRRELDIR%%/plugins/info/options.php
 +%%SQUIRRELDIR%%/plugins/info/setup.php
 +%%SQUIRRELDIR%%/plugins/listcommands/index.php
 +%%SQUIRRELDIR%%/plugins/listcommands/mailout.php
 +%%SQUIRRELDIR%%/plugins/listcommands/setup.php
 +%%SQUIRRELDIR%%/plugins/mail_fetch/class.POP3.php
 +%%SQUIRRELDIR%%/plugins/mail_fetch/fetch.php
 +%%SQUIRRELDIR%%/plugins/mail_fetch/functions.php
 +%%SQUIRRELDIR%%/plugins/mail_fetch/index.php
 +%%SQUIRRELDIR%%/plugins/mail_fetch/options.php
 +%%SQUIRRELDIR%%/plugins/mail_fetch/setup.php
 +%%SQUIRRELDIR%%/plugins/make_archive.pl
 +%%SQUIRRELDIR%%/plugins/message_details/message_details_bottom.php
 +%%SQUIRRELDIR%%/plugins/message_details/message_details_main.php
 +%%SQUIRRELDIR%%/plugins/message_details/message_details_top.php
 +%%SQUIRRELDIR%%/plugins/message_details/setup.php
 +%%SQUIRRELDIR%%/plugins/newmail/index.php
 +%%SQUIRRELDIR%%/plugins/newmail/newmail.php
 +%%SQUIRRELDIR%%/plugins/newmail/newmail_opt.php
 +%%SQUIRRELDIR%%/plugins/newmail/setup.php
 +%%SQUIRRELDIR%%/plugins/newmail/sounds/FanFair.wav
 +%%SQUIRRELDIR%%/plugins/newmail/sounds/Friends.wav
 +%%SQUIRRELDIR%%/plugins/newmail/sounds/MontyPython.wav
 +%%SQUIRRELDIR%%/plugins/newmail/sounds/Notify.wav
 +%%SQUIRRELDIR%%/plugins/newmail/testsound.php
 +%%SQUIRRELDIR%%/plugins/sent_subfolders/index.php
 +%%SQUIRRELDIR%%/plugins/sent_subfolders/setup.php
 +%%SQUIRRELDIR%%/plugins/spamcop/index.php
 +%%SQUIRRELDIR%%/plugins/spamcop/options.php
 +%%SQUIRRELDIR%%/plugins/spamcop/setup.php
 +%%SQUIRRELDIR%%/plugins/spamcop/spamcop.php
 +%%SQUIRRELDIR%%/plugins/squirrelspell/index.php
 +%%SQUIRRELDIR%%/plugins/squirrelspell/js/WHATISTHIS
 +%%SQUIRRELDIR%%/plugins/squirrelspell/js/check_me.js
 +%%SQUIRRELDIR%%/plugins/squirrelspell/js/crypto_settings.js
 +%%SQUIRRELDIR%%/plugins/squirrelspell/js/decrypt_error.js
 +%%SQUIRRELDIR%%/plugins/squirrelspell/js/index.php
 +%%SQUIRRELDIR%%/plugins/squirrelspell/js/init.js
 +%%SQUIRRELDIR%%/plugins/squirrelspell/modules/.htaccess
 +%%SQUIRRELDIR%%/plugins/squirrelspell/modules/WHATISTHIS
 +%%SQUIRRELDIR%%/plugins/squirrelspell/modules/check_me.mod
 +%%SQUIRRELDIR%%/plugins/squirrelspell/modules/crypto.mod
 +%%SQUIRRELDIR%%/plugins/squirrelspell/modules/crypto_badkey.mod
 +%%SQUIRRELDIR%%/plugins/squirrelspell/modules/edit_dic.mod
 +%%SQUIRRELDIR%%/plugins/squirrelspell/modules/enc_setup.mod
 +%%SQUIRRELDIR%%/plugins/squirrelspell/modules/forget_me.mod
 +%%SQUIRRELDIR%%/plugins/squirrelspell/modules/forget_me_not.mod
 +%%SQUIRRELDIR%%/plugins/squirrelspell/modules/index.php
 +%%SQUIRRELDIR%%/plugins/squirrelspell/modules/init.mod
 +%%SQUIRRELDIR%%/plugins/squirrelspell/modules/lang_change.mod
 +%%SQUIRRELDIR%%/plugins/squirrelspell/modules/lang_setup.mod
 +%%SQUIRRELDIR%%/plugins/squirrelspell/modules/options_main.mod
 +%%SQUIRRELDIR%%/plugins/squirrelspell/setup.php
 +%%SQUIRRELDIR%%/plugins/squirrelspell/sqspell_config.php
 +%%SQUIRRELDIR%%/plugins/squirrelspell/sqspell_functions.php
 +%%SQUIRRELDIR%%/plugins/squirrelspell/sqspell_interface.php
 +%%SQUIRRELDIR%%/plugins/squirrelspell/sqspell_options.php
 +%%SQUIRRELDIR%%/plugins/translate/index.php
 +%%SQUIRRELDIR%%/plugins/translate/options.php
 +%%SQUIRRELDIR%%/plugins/translate/setup.php
 +%%SQUIRRELDIR%%/po/charsetconvert.pl
 +%%SQUIRRELDIR%%/po/compilepo
 +%%SQUIRRELDIR%%/po/independent_strings.txt
 +%%SQUIRRELDIR%%/po/index.php
 +%%SQUIRRELDIR%%/po/mergepo
 +%%SQUIRRELDIR%%/po/squirrelmail.po
 +%%SQUIRRELDIR%%/po/xgetpo
 +%%SQUIRRELDIR%%/src/addrbook_popup.php
 +%%SQUIRRELDIR%%/src/addrbook_search.php
 +%%SQUIRRELDIR%%/src/addrbook_search_html.php
 +%%SQUIRRELDIR%%/src/addressbook.php
 +%%SQUIRRELDIR%%/src/compose.php
 +%%SQUIRRELDIR%%/src/delete_message.php
 +%%SQUIRRELDIR%%/src/download.php
 +%%SQUIRRELDIR%%/src/empty_trash.php
 +%%SQUIRRELDIR%%/src/folders.php
 +%%SQUIRRELDIR%%/src/folders_create.php
 +%%SQUIRRELDIR%%/src/folders_delete.php
 +%%SQUIRRELDIR%%/src/folders_rename_do.php
 +%%SQUIRRELDIR%%/src/folders_rename_getname.php
 +%%SQUIRRELDIR%%/src/folders_subscribe.php
 +%%SQUIRRELDIR%%/src/help.php
 +%%SQUIRRELDIR%%/src/image.php
 +%%SQUIRRELDIR%%/src/index.php
 +%%SQUIRRELDIR%%/src/left_main.php
 +%%SQUIRRELDIR%%/src/login.php
 +%%SQUIRRELDIR%%/src/move_messages.php
 +%%SQUIRRELDIR%%/src/options.php
 +%%SQUIRRELDIR%%/src/options_highlight.php
 +%%SQUIRRELDIR%%/src/options_identities.php
 +%%SQUIRRELDIR%%/src/options_order.php
 +%%SQUIRRELDIR%%/src/printer_friendly_bottom.php
 +%%SQUIRRELDIR%%/src/printer_friendly_main.php
 +%%SQUIRRELDIR%%/src/printer_friendly_top.php
 +%%SQUIRRELDIR%%/src/read_body.php
 +%%SQUIRRELDIR%%/src/redirect.php
 +%%SQUIRRELDIR%%/src/right_main.php
 +%%SQUIRRELDIR%%/src/search.php
 +%%SQUIRRELDIR%%/src/signout.php
 +%%SQUIRRELDIR%%/src/vcard.php
 +%%SQUIRRELDIR%%/src/view_header.php
 +%%SQUIRRELDIR%%/src/view_text.php
 +%%SQUIRRELDIR%%/src/webmail.php
 +%%SQUIRRELDIR%%/themes/alien_glow.php
 +%%SQUIRRELDIR%%/themes/black_bean_burrito_theme.php
 +%%SQUIRRELDIR%%/themes/blue_grey_theme.php
 +%%SQUIRRELDIR%%/themes/bluesnews_theme.php
 +%%SQUIRRELDIR%%/themes/bluesteel_theme.php
 +%%SQUIRRELDIR%%/themes/christmas.php
 +%%SQUIRRELDIR%%/themes/css/sans-08.css
 +%%SQUIRRELDIR%%/themes/css/sans-10.css
 +%%SQUIRRELDIR%%/themes/css/sans-12.css
 +%%SQUIRRELDIR%%/themes/css/serif-10.css
 +%%SQUIRRELDIR%%/themes/css/serif-12.css
 +%%SQUIRRELDIR%%/themes/dark_green.php
 +%%SQUIRRELDIR%%/themes/dark_grey_theme.php
 +%%SQUIRRELDIR%%/themes/darkness.php
 +%%SQUIRRELDIR%%/themes/deepocean2_theme.php
 +%%SQUIRRELDIR%%/themes/deepocean_theme.php
 +%%SQUIRRELDIR%%/themes/default_theme.php
 +%%SQUIRRELDIR%%/themes/dompie_theme.php
 +%%SQUIRRELDIR%%/themes/forest_theme.php
 +%%SQUIRRELDIR%%/themes/greenhouse_effect.php
 +%%SQUIRRELDIR%%/themes/high_contrast_theme.php
 +%%SQUIRRELDIR%%/themes/ice_theme.php
 +%%SQUIRRELDIR%%/themes/in_the_pink.php
 +%%SQUIRRELDIR%%/themes/index.php
 +%%SQUIRRELDIR%%/themes/kind_of_blue.php
 +%%SQUIRRELDIR%%/themes/maize_theme.php
 +%%SQUIRRELDIR%%/themes/methodical_theme.php
 +%%SQUIRRELDIR%%/themes/midnight.php
 +%%SQUIRRELDIR%%/themes/monostochastic.php
 +%%SQUIRRELDIR%%/themes/penguin.php
 +%%SQUIRRELDIR%%/themes/plain_blue_theme.php
 +%%SQUIRRELDIR%%/themes/purple_theme.php
 +%%SQUIRRELDIR%%/themes/random.php
 +%%SQUIRRELDIR%%/themes/sandstorm_theme.php
 +%%SQUIRRELDIR%%/themes/seaspray_theme.php
 +%%SQUIRRELDIR%%/themes/servery_theme.php
 +%%SQUIRRELDIR%%/themes/shades_of_grey.php
 +%%SQUIRRELDIR%%/themes/slashdot_theme.php
 +%%SQUIRRELDIR%%/themes/spice_of_life.php
 +%%SQUIRRELDIR%%/themes/spice_of_life_dark.php
 +%%SQUIRRELDIR%%/themes/spice_of_life_lite.php
 + at dirrm etc/periodic/daily
 + at dirrm etc/periodic
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins/abook_take
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins/administrator
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins/bug_report
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins/calendar
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins/delete_move_next
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins/filters/bulkquery
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins/filters
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins/fortune
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins/info
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins/listcommands
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins/mail_fetch
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins/newmail
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins/spamcop
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins/squirrelspell
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins/translate
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/plugins
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/ReleaseNotes/1.3
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/ReleaseNotes/1.2  
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail/ReleaseNotes
 +%%PORTDOCS%%@dirrm share/doc/squirrelmail
 + at dirrm %%SQUIRRELDIR%%/themes/css
 + at dirrm %%SQUIRRELDIR%%/themes
 + at dirrm %%SQUIRRELDIR%%/src
 + at dirrm %%SQUIRRELDIR%%/po
 + at dirrm %%SQUIRRELDIR%%/plugins/translate
 + at dirrm %%SQUIRRELDIR%%/plugins/squirrelspell/modules
 + at dirrm %%SQUIRRELDIR%%/plugins/squirrelspell/js
 + at dirrm %%SQUIRRELDIR%%/plugins/squirrelspell
 + at dirrm %%SQUIRRELDIR%%/plugins/spamcop
 + at dirrm %%SQUIRRELDIR%%/plugins/sent_subfolders
 + at dirrm %%SQUIRRELDIR%%/plugins/newmail/sounds
 + at dirrm %%SQUIRRELDIR%%/plugins/newmail
 + at dirrm %%SQUIRRELDIR%%/plugins/message_details
 + at dirrm %%SQUIRRELDIR%%/plugins/mail_fetch
 + at dirrm %%SQUIRRELDIR%%/plugins/listcommands
 + at dirrm %%SQUIRRELDIR%%/plugins/info
 + at dirrm %%SQUIRRELDIR%%/plugins/fortune
 + at dirrm %%SQUIRRELDIR%%/plugins/filters/bulkquery
 + at dirrm %%SQUIRRELDIR%%/plugins/filters
 + at dirrm %%SQUIRRELDIR%%/plugins/delete_move_next
 + at dirrm %%SQUIRRELDIR%%/plugins/calendar
 + at dirrm %%SQUIRRELDIR%%/plugins/bug_report
 + at dirrm %%SQUIRRELDIR%%/plugins/administrator
 + at dirrm %%SQUIRRELDIR%%/plugins/abook_take
 + at dirrm %%SQUIRRELDIR%%/plugins
 + at dirrm %%SQUIRRELDIR%%/locale/zh_TW/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/zh_TW
 + at dirrm %%SQUIRRELDIR%%/locale/zh_CN/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/zh_CN
 + at dirrm %%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/vi_VN
 + at dirrm %%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/uk_UA
 + at dirrm %%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/tr_TR
 + at dirrm %%SQUIRRELDIR%%/locale/th_TH/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/th_TH
 + at dirrm %%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/sv_SE
 + at dirrm %%SQUIRRELDIR%%/locale/sr_YU/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/sr_YU
 + at dirrm %%SQUIRRELDIR%%/locale/sl_SI/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/sl_SI
 + at dirrm %%SQUIRRELDIR%%/locale/sk_SK/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/sk_SK
 + at dirrm %%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/ru_RU
 + at dirrm %%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/ro_RO
 + at dirrm %%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/pt_PT
 + at dirrm %%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/pt_BR
 + at dirrm %%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/pl_PL
 + at dirrm %%SQUIRRELDIR%%/locale/no_NO/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/no_NO
 + at dirrm %%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/nn_NO
 + at dirrm %%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/nl_NL
 + at dirrm %%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/lt_LT
 + at dirrm %%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/ko_KR
 + at dirrm %%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/ja_JP
 + at dirrm %%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/it_IT
 + at dirrm %%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/is_IS
 + at dirrm %%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/id_ID
 + at dirrm %%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/hu_HU
 + at dirrm %%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/hr_HR
 + at dirrm %%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/he_IL
 + at dirrm %%SQUIRRELDIR%%/locale/he_HE/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/he_HE
 + at dirrm %%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/fr_FR
 + at dirrm %%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/fi_FI
 + at dirrm %%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/et_EE
 + at dirrm %%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/es_ES
 + at dirrm %%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/el_GR
 + at dirrm %%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/de_DE
 + at dirrm %%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/da_DK
 + at dirrm %%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/cs_CZ
 + at dirrm %%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/ca_ES
 + at dirrm %%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/bg_BG
 + at dirrm %%SQUIRRELDIR%%/locale/ar/LC_MESSAGES
 + at dirrm %%SQUIRRELDIR%%/locale/ar
 + at dirrm %%SQUIRRELDIR%%/locale
 + at dirrm %%SQUIRRELDIR%%/include/options
 + at dirrm %%SQUIRRELDIR%%/include
 + at dirrm %%SQUIRRELDIR%%/images
 + at dirrm %%SQUIRRELDIR%%/help/th_TH
 + at dirrm %%SQUIRRELDIR%%/help/sv_SE
 + at dirrm %%SQUIRRELDIR%%/help/sr_YU
 + at dirrm %%SQUIRRELDIR%%/help/sl_SI
 + at dirrm %%SQUIRRELDIR%%/help/ru_RU
 + at dirrm %%SQUIRRELDIR%%/help/pt_PT
 + at dirrm %%SQUIRRELDIR%%/help/pt_BR
 + at dirrm %%SQUIRRELDIR%%/help/pl_PL
 + at dirrm %%SQUIRRELDIR%%/help/nl_NL
 + at dirrm %%SQUIRRELDIR%%/help/lt_LT
 + at dirrm %%SQUIRRELDIR%%/help/ko_KR
 + at dirrm %%SQUIRRELDIR%%/help/ja_JP
 + at dirrm %%SQUIRRELDIR%%/help/it_IT
 + at dirrm %%SQUIRRELDIR%%/help/id_ID
 + at dirrm %%SQUIRRELDIR%%/help/fr_FR
 + at dirrm %%SQUIRRELDIR%%/help/fi_FI
 + at dirrm %%SQUIRRELDIR%%/help/es_ES
 + at dirrm %%SQUIRRELDIR%%/help/en_US
 + at dirrm %%SQUIRRELDIR%%/help/de_DE
 + at dirrm %%SQUIRRELDIR%%/help/da_DK
 + at dirrm %%SQUIRRELDIR%%/help/cs_CZ
 + at dirrm %%SQUIRRELDIR%%/help/ca_ES
 + at dirrm %%SQUIRRELDIR%%/help/bg_BG
 + at dirrm %%SQUIRRELDIR%%/help
 + at dirrm %%SQUIRRELDIR%%/functions
 + at dirrm %%SQUIRRELDIR%%/data
 + at dirrm %%SQUIRRELDIR%%/config
 + at dirrm %%SQUIRRELDIR%%/class/mime
 + at dirrm %%SQUIRRELDIR%%/class/helper
 + at dirrm %%SQUIRRELDIR%%/class/deliver
 + at dirrm %%SQUIRRELDIR%%/class
 + at dirrm %%SQUIRRELDIR%%



More information about the freebsd-ports-bugs mailing list