FreeBSD Bugzilla – Attachment 63418 Details for
Bug 94606
New port: mail/squirrelmail-devel SquirrelMail development version port
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
file.shar
file.shar (text/plain), 81.51 KB, created by
simond
on 2006-03-17 13:40:14 UTC
(
hide
)
Description:
file.shar
Filename:
MIME Type:
Creator:
simond
Created:
2006-03-17 13:40:14 UTC
Size:
81.51 KB
patch
obsolete
># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># squirrelmail-devel ># squirrelmail-devel/files ># squirrelmail-devel/files/patch-config-config_default.php ># squirrelmail-devel/files/111.clean-squirrelmail ># squirrelmail-devel/pkg-deinstall ># squirrelmail-devel/Makefile ># squirrelmail-devel/distinfo ># squirrelmail-devel/pkg-descr ># squirrelmail-devel/pkg-install ># squirrelmail-devel/pkg-message ># squirrelmail-devel/pkg-plist ># >echo c - squirrelmail-devel >mkdir -p squirrelmail-devel > /dev/null 2>&1 >echo c - squirrelmail-devel/files >mkdir -p squirrelmail-devel/files > /dev/null 2>&1 >echo x - squirrelmail-devel/files/patch-config-config_default.php >sed 's/^X//' >squirrelmail-devel/files/patch-config-config_default.php << 'END-of-squirrelmail-devel/files/patch-config-config_default.php' >X--- config/config_default.php.orig Sun Feb 12 02:03:10 2006 >X+++ config/config_default.php Wed Mar 15 20:09:20 2006 >X@@ -469,7 +469,7 @@ >X * >X * @global string $data_dir >X */ >X-$data_dir = '/var/local/squirrelmail/data'; >X+$data_dir = '/var/spool/squirrelmail/pref/'; >X >X /** >X * Attachments directory >X@@ -488,7 +488,7 @@ >X * + It should probably be another directory than data_dir. >X * @global string $attachment_dir >X */ >X-$attachment_dir = $data_dir; >X+$attachment_dir = '/var/spool/squirrelmail/attach/'; >X >X /** >X * Hash level used for data directory. >X >END-of-squirrelmail-devel/files/patch-config-config_default.php >echo x - squirrelmail-devel/files/111.clean-squirrelmail >sed 's/^X//' >squirrelmail-devel/files/111.clean-squirrelmail << 'END-of-squirrelmail-devel/files/111.clean-squirrelmail' >X#!/bin/sh >X# >X# $FreeBSD: ports/mail/squirrelmail/files/111.clean-squirrelmail,v 1.1 2004/01/13 09:14:24 edwin Exp $ >X# >X# This script copied from /etc/periodic/daily/110.clean-tmps,v 1.6.2.4 2002/10/13 19:59:01 >X# >X# Perform attachment directory cleaning so that long-lived systems >X# don't end up with excessively old files there. >X# >X >X# Define these variables in either /etc/periodic.conf or >X# /etc/periodic.conf.local to override the default values. >X# >X# 111.clean-squirrelmail >Xclean_squirrelmail_enable="NO" # Delete squirrelmail attachments >Xclean_squirrelmail_dirs="/var/spool/squirrelmail/attach" # Delete under here >Xclean_squirrelmail_days="10" # If not accessed for >Xclean_squirrelmail_ignore="quota.user quota.group" # Don't delete these >Xclean_squirrelmail_verbose="YES" # Mention files deleted >X >X# If there is a global system configuration file, suck it in. >X# >Xif [ -r /etc/defaults/periodic.conf ] >Xthen >X . /etc/defaults/periodic.conf >X source_periodic_confs >Xfi >X >Xcase "$clean_squirrelmail_enable" in >X [Yy][Ee][Ss]) >X if [ -z "$clean_squirrelmail_days" ] >X then >X echo '$clean_squirrelmail_enable is set but' \ >X '$clean_squirrelmail_days is not' >X rc=2 >X else >X echo "" >X echo "Removing old SquirrelMail Attachment files:" >X >X set -f noglob >X args="-atime +$clean_squirrelmail_days -mtime +$clean_squirrelmail_days" >X args="${args} -ctime +$clean_squirrelmail_days" >X [ -n "$clean_squirrelmail_ignore" ] && >X args="$args "`echo " ${clean_squirrelmail_ignore% }" | >X sed 's/[ ][ ]*/ ! -name /g'` >X case "$clean_squirrelmail_verbose" in >X [Yy][Ee][Ss]) >X print=-print;; >X *) >X print=;; >X esac >X >X rc=$(for dir in $clean_squirrelmail_dirs >X do >X [ ."${dir#/}" != ."$dir" -a -d $dir ] && cd $dir && { >X find -d . -type f $args -delete $print >X find -d . ! -name . -type d -empty -mtime \ >X +$clean_squirrelmail_days -delete $print >X } | sed "s,^\\., $dir," >X done | tee /dev/stderr | wc -l) >X [ -z "$print" ] && rc=0 >X [ $rc -gt 1 ] && rc=1 >X set -f glob >X fi;; >X >X *) rc=0;; >Xesac >X >Xexit $rc >END-of-squirrelmail-devel/files/111.clean-squirrelmail >echo x - squirrelmail-devel/pkg-deinstall >sed 's/^X//' >squirrelmail-devel/pkg-deinstall << 'END-of-squirrelmail-devel/pkg-deinstall' >X#!/bin/sh >X# >X# $FreeBSD: ports/mail/squirrelmail/pkg-deinstall,v 1.1 2004/01/13 15:59:50 clement Exp $ >X# >X >X#set -vx >X >XPKG_BATCH=${BATCH:=NO} >X >XPKG_PREFIX=${PKG_PREFIX:=/usr/local} >X >XSQUIRRELDIR=%%SQUIRRELDIR%% >X >Xcheckfile() { >X diff -bBqw $1 $2 >/dev/null 2>&1 >X case $? in >X 0) # config file exists, but is the same >X rm $1 >X ;; >X 1) # config file exists and differs >X ;; >X *) # no config file exists >X ;; >X esac >X} >X >Xcase $2 in >X DEINSTALL) >X cd ${PKG_PREFIX} >X checkfile /var/spool/squirrelmail/prefs/default_pref \ >X ${SQUIRRELDIR}/config/default_pref >X ;; >X POST-DEINSTALL) >X if [ "${PKG_BATCH}" = "NO" ]; then >X echo "If you are no longer going to use SquirrelMail" >X echo "you should remove the /var/spool/squirrelmail" >X echo "directory with:" >X echo >X echo " rm -rf /var/spool/squirrelmail" >X fi >X ;; >X >Xesac >END-of-squirrelmail-devel/pkg-deinstall >echo x - squirrelmail-devel/Makefile >sed 's/^X//' >squirrelmail-devel/Makefile << 'END-of-squirrelmail-devel/Makefile' >X# New ports collection makefile for: squirrelmail >X# Date created: 17 March 2006 >X# Whom: Simon Dick <simond@irrelevant.org> >X# >X# $FreeBSD$ >X# >X >XPORTNAME= squirrelmail >XPORTVERSION?= 1.5.1 >XCATEGORIES?= mail www >XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} >XMASTER_SITE_SUBDIR= squirrelmail >XDISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ >X all_locales-${PORTVERSION}-20060219${EXTRACT_SUFX} >XDIST_SUBDIR= squirrelmail >X >XMAINTAINER?= simond@irrelevant.org >XCOMMENT?= A webmail system which accesses mail over IMAP >X >XCONFLICTS?= ja-squirrelmail-1.* squirrelmail-1.4* >X >XUSE_PHP= session mhash gettext mbstring pcre openssl xml >XWANT_PHP_WEB= yes >X >XUSE_BZIP2= yes >X >X.ifdef WITH_DATABASE >XWANT_PHP_PEAR= yes >XRUN_DEPENDS+= ${PREFIX}/share/pear/DB.php:${PORTSDIR}/databases/pear-DB >X.endif >X >X.ifdef WITH_LDAP >XUSE_PHP+= ldap >X.endif >X >X.ifndef WITHOUT_WWWDIR >XSQUIRRELDIR?= ${PREFIX}/www/squirrelmail >X.else >XSQUIRRELDIR?= ${PREFIX}/squirrelmail >X.endif >X >XPKGDEINSTALL= ${WRKDIR}/pkg-deinstall >XPKGINSTALL= ${WRKDIR}/pkg-install >XPKGMESSAGE= ${WRKDIR}/pkg-message >X >XPLIST_SUB+= PORTVERSION=${PORTVERSION} \ >X SQUIRRELDIR="${SQUIRRELDIR:S,^${PREFIX}/,,}" >X >Xpre-everything:: >X @${ECHO_CMD} "SquirrelMail is installed into ${SQUIRRELDIR}" >X @${ECHO_CMD} "To use the old location ${PREFIX}/squirrelmail define" >X @${ECHO_CMD} "WITHOUT_WWWDIR when patching or installing" >X @${ECHO_CMD} >X @${ECHO_CMD} "Use WITH_LDAP to ensure PHP LDAP support is installed" >X @${ECHO_CMD} "Use WITH_DATABASE to ensure PEAR framework for database support is installed" >X @${ECHO_CMD} " (note that this does not install the database specific PEAR support, e.g. MySQL)" >X @${ECHO_CMD} >X >X.if !target(slaveport-post-patch) >Xslaveport-post-patch: >X.endif >X >Xpost-patch: slaveport-post-patch >X.ifndef PATCH_DEBUG >X @${RM} -f ${WRKSRC}/config/config_default.php.orig >X.endif >X @${SED} -e "s;%%SQUIRRELDIR%%;${SQUIRRELDIR};g" \ >X ${MASTERDIR}/pkg-install > ${PKGINSTALL} >X @${SED} -e "s;%%SQUIRRELDIR%%;${SQUIRRELDIR};g" \ >X ${MASTERDIR}/pkg-deinstall > ${PKGDEINSTALL} >X @${SED} -e "s;%%SQUIRRELDIR%%;${SQUIRRELDIR};g" \ >X ${MASTERDIR}/pkg-message > ${PKGMESSAGE} >X @${REINPLACE_CMD} -e 's|ispell|${LOCALBASE}/bin/ispell|g' \ >X ${WRKSRC}/plugins/squirrelspell/sqspell_config.php >X @${RM} ${WRKSRC}/plugins/squirrelspell/sqspell_config.php.bak >X >X# Rearrange the documentation >Xdo-build: >X.for file in AUTHORS ChangeLog COPYING INSTALL README UPGRADE >X @${MV} ${WRKSRC}/${file} ${WRKSRC}/doc/ >X.endfor >X @${MV} ${WRKSRC}/ReleaseNotes ${WRKSRC}/doc/ReleaseNotes-${PORTVERSION}.txt >X @${MV} ${WRKSRC}/themes/README.themes ${WRKSRC}/doc/ >X @cd ${WRKSRC} ; for f in `find plugins -name "README*" -or \ >X -name INSTALL -or -name CHANGES -or -name HISTORY`; \ >X do \ >X ${MKDIR} doc/`dirname $$f` ; \ >X ${MV} $$f doc/`dirname $$f` ; \ >X done; \ >X ${MV} doc/plugins/squirrelspell/doc/README doc/plugins/squirrelspell ; \ >X ${RM} -rf doc/plugins/squirrelspell/doc ; \ >X ${MV} plugins/squirrelspell/doc/* doc/plugins/squirrelspell ; \ >X ${RM} -f doc/plugins/squirrelspell/index.php ; \ >X ${RM} -rf plugins/squirrelspell/doc >X @${ECHO} "left_refresh=300" >> ${WRKSRC}/config/default_pref >X @${CP} -r ${WRKSRC}/../locale ${WRKSRC} >X @${CP} -r ${WRKSRC}/../images ${WRKSRC} >X @${CP} -r ${WRKSRC}/../help ${WRKSRC} >X >Xpre-install: >X @${ECHO} "Your umask should be lax while installing this. Like, 022 or something." >X @${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL >X >Xdo-install: >X ${MKDIR} ${PREFIX}/etc/periodic/daily >X ${INSTALL_SCRIPT} ${FILESDIR}/111.clean-squirrelmail ${PREFIX}/etc/periodic/daily >X ${MKDIR} ${SQUIRRELDIR} >X ${CP} -p ${WRKSRC}/index.php ${SQUIRRELDIR} >X ${CP} -p ${WRKSRC}/configure ${SQUIRRELDIR} >X.for DIR in class config functions help images include locale plugins po src templates themes >X ${CP} -rp ${WRKSRC}/${DIR} ${SQUIRRELDIR} >X.endfor >X.if !defined(NOPORTDOCS) >X ${MKDIR} ${DOCSDIR} >X ${CP} -R ${WRKSRC}/doc/* ${DOCSDIR} >X.endif >X >Xpost-install: >X @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL >X @${CAT} ${PKGMESSAGE} >X >X.include <bsd.port.mk> >END-of-squirrelmail-devel/Makefile >echo x - squirrelmail-devel/distinfo >sed 's/^X//' >squirrelmail-devel/distinfo << 'END-of-squirrelmail-devel/distinfo' >XMD5 (squirrelmail/squirrelmail-1.5.1.tar.bz2) = 2165f0da22180300372d7d2d0bc3d262 >XSHA256 (squirrelmail/squirrelmail-1.5.1.tar.bz2) = 3e7f370dd869fb57ed5b3c159d7450c1180309fffeda9dbf168b2d456f477909 >XSIZE (squirrelmail/squirrelmail-1.5.1.tar.bz2) = 904370 >XMD5 (squirrelmail/all_locales-1.5.1-20060219.tar.bz2) = ea311416ba9a96352a0728f5a7611102 >XSHA256 (squirrelmail/all_locales-1.5.1-20060219.tar.bz2) = f27d7f1506607c8cf2651bb4384f5a840eb71f0d38cfae4d77b292c56e49d0a3 >XSIZE (squirrelmail/all_locales-1.5.1-20060219.tar.bz2) = 2616039 >END-of-squirrelmail-devel/distinfo >echo x - squirrelmail-devel/pkg-descr >sed 's/^X//' >squirrelmail-devel/pkg-descr << 'END-of-squirrelmail-devel/pkg-descr' >XSquirrelMail is a standards-based webmail package written in PHP4. It >Xincludes built-in pure PHP support for the IMAP and SMTP protocols, and >Xall pages render in pure HTML 4.0 (with no Javascript) for maximum >Xcompatibility across browsers. It has very few requirements and is very >Xeasy to configure and install. SquirrelMail has a all the functionality >Xyou would want from an email client, including strong MIME support, >Xaddress books, and folder manipulation >X >XWWW: http://www.squirrelmail.org/ >X >X- Simon Dick >Xsimond@irrelevant.org >END-of-squirrelmail-devel/pkg-descr >echo x - squirrelmail-devel/pkg-install >sed 's/^X//' >squirrelmail-devel/pkg-install << 'END-of-squirrelmail-devel/pkg-install' >X#!/bin/sh >X# >X# $FreeBSD: ports/mail/squirrelmail/pkg-install,v 1.2 2004/01/13 09:14:23 edwin Exp $ >X# >X >XPKG_BATCH=${BATCH:=NO} >XPKG_PREFIX=${PKG_PREFIX:=/usr/local} >X >XSQUIRRELDIR=%%SQUIRRELDIR%% >X >Xcase $2 in >XPRE-INSTALL) >X USER=www >X GROUP=${USER} >X UID=80 >X GID=${UID} >X >X if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then >X if pw groupadd ${GROUP} -g ${GID}; then >X echo "Added group \"${GROUP}\"." >X else >X echo "Adding group \"${GROUP}\" failed..." >X exit 1 >X fi >X fi >X >X if ! pw usershow "${USER}" 2>/dev/null 1>&2; then >X if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ >X -s "/sbin/nologin" -d "/nonexistent" \ >X -c "World Wide Web Owner"; \ >X then >X echo "Added user \"${USER}\"." >X else >X echo "Adding user \"${USER}\" failed..." >X exit 1 >X fi >X fi >X >X exit 0 >X ;; >XPOST-INSTALL) >X if [ "${PKG_BATCH}" = "NO" ]; then >X install -d -o www -g www -m 0755 /var/spool/squirrelmail >X install -d -o www -g www -m 0730 /var/spool/squirrelmail/attach >X install -d -o www -g www -m 0750 /var/spool/squirrelmail/pref >X if [ ! -f /var/spool/squirrelmail/pref/default_pref ]; then >X cp -rp ${SQUIRRELDIR}/config/default_pref \ >X /var/spool/squirrelmail/pref/default_pref >X else >X echo "An older version of default_pref exists in" >X echo "/var/spool/squirrelmail/pref, you may want to" >X echo "compare it with the one in ${SQUIRRELDIR}/config" >X fi >X fi >X ;; >Xesac >END-of-squirrelmail-devel/pkg-install >echo x - squirrelmail-devel/pkg-message >sed 's/^X//' >squirrelmail-devel/pkg-message << 'END-of-squirrelmail-devel/pkg-message' >X >XYou now need to add an alias to apache's httpd.conf pointing to >X%%SQUIRRELDIR%% in order to access SquirrelMail from >Xyour web browser, or create a VirtualHost with DocumentRoot set >Xto that directory. >X >XFor SquirrelMail to work properly you will need to make sure the >Xfollowing option is set in your php.ini file: >Xfile_uploads = On >X >XIf you have problems with SquirrelMail saying "you must login" after >Xyou just have, the following php.ini option may help: >Xsession.auto_start = 1 >X >XIn order to do your administrative configuration you need to >Xcd %%SQUIRRELDIR%% && ./configure >XSquirrelMail will not work until this has been done. >END-of-squirrelmail-devel/pkg-message >echo x - squirrelmail-devel/pkg-plist >sed 's/^X//' >squirrelmail-devel/pkg-plist << 'END-of-squirrelmail-devel/pkg-plist' >Xetc/periodic/daily/111.clean-squirrelmail >X%%PORTDOCS%%%%DOCSDIR%%/AUTHORS >X%%PORTDOCS%%%%DOCSDIR%%/COPYING >X%%PORTDOCS%%%%DOCSDIR%%/ChangeLog >X%%PORTDOCS%%%%DOCSDIR%%/Development/addressbook.txt >X%%PORTDOCS%%%%DOCSDIR%%/Development/compose.txt >X%%PORTDOCS%%%%DOCSDIR%%/Development/imap_servers.txt >X%%PORTDOCS%%%%DOCSDIR%%/Development/index.html >X%%PORTDOCS%%%%DOCSDIR%%/Development/mime.txt >X%%PORTDOCS%%%%DOCSDIR%%/Development/plugin.txt >X%%PORTDOCS%%%%DOCSDIR%%/Development/rfc_documents.txt >X%%PORTDOCS%%%%DOCSDIR%%/Development/tree.txt >X%%PORTDOCS%%%%DOCSDIR%%/INSTALL >X%%PORTDOCS%%%%DOCSDIR%%/README >X%%PORTDOCS%%%%DOCSDIR%%/README.themes >X%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes-%%PORTVERSION%%.txt >X%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.2/Notes-1.2.0.txt >X%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.2/Notes-1.2.1.txt >X%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.2/Notes-1.2.2.txt >X%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.2/Notes-1.2.3.txt >X%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.2/Notes-1.2.4.txt >X%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.2/Notes-1.2.5.txt >X%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.2/Notes-1.2.6.txt >X%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.3/Notes-1.3.0.txt >X%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.3/Notes-1.3.1.txt >X%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.3/Notes-1.3.2.txt >X%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.4/Notes-1.4.0.txt >X%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes/1.5/Notes-1.5.0.txt >X%%PORTDOCS%%%%DOCSDIR%%/UPGRADE >X%%PORTDOCS%%%%DOCSDIR%%/authentication.txt >X%%PORTDOCS%%%%DOCSDIR%%/db-backend.txt >X%%PORTDOCS%%%%DOCSDIR%%/i18n.txt >X%%PORTDOCS%%%%DOCSDIR%%/ie_ssl.txt >X%%PORTDOCS%%%%DOCSDIR%%/index.html >X%%PORTDOCS%%%%DOCSDIR%%/plugins/README.plugins >X%%PORTDOCS%%%%DOCSDIR%%/plugins/abook_take/README >X%%PORTDOCS%%%%DOCSDIR%%/plugins/administrator/INSTALL >X%%PORTDOCS%%%%DOCSDIR%%/plugins/bug_report/README >X%%PORTDOCS%%%%DOCSDIR%%/plugins/calendar/README >X%%PORTDOCS%%%%DOCSDIR%%/plugins/change_password/README >X%%PORTDOCS%%%%DOCSDIR%%/plugins/filters/README >X%%PORTDOCS%%%%DOCSDIR%%/plugins/filters/bulkquery/INSTALL >X%%PORTDOCS%%%%DOCSDIR%%/plugins/filters/bulkquery/README >X%%PORTDOCS%%%%DOCSDIR%%/plugins/fortune/README >X%%PORTDOCS%%%%DOCSDIR%%/plugins/info/README >X%%PORTDOCS%%%%DOCSDIR%%/plugins/listcommands/README >X%%PORTDOCS%%%%DOCSDIR%%/plugins/mail_fetch/README >X%%PORTDOCS%%%%DOCSDIR%%/plugins/newmail/README >X%%PORTDOCS%%%%DOCSDIR%%/plugins/spamcop/README >X%%PORTDOCS%%%%DOCSDIR%%/plugins/squirrelspell/CRYPTO >X%%PORTDOCS%%%%DOCSDIR%%/plugins/squirrelspell/INSTALL >X%%PORTDOCS%%%%DOCSDIR%%/plugins/squirrelspell/PRIVACY >X%%PORTDOCS%%%%DOCSDIR%%/plugins/squirrelspell/README >X%%PORTDOCS%%%%DOCSDIR%%/plugins/translate/README >X%%PORTDOCS%%%%DOCSDIR%%/presets.txt >X%%PORTDOCS%%%%DOCSDIR%%/russian_apache.txt >X%%PORTDOCS%%%%DOCSDIR%%/security.txt >X%%PORTDOCS%%%%DOCSDIR%%/themes.txt >X%%PORTDOCS%%%%DOCSDIR%%/translating.txt >X%%PORTDOCS%%%%DOCSDIR%%/translating_help.txt >X%%SQUIRRELDIR%%/class/deliver/Deliver.class.php >X%%SQUIRRELDIR%%/class/deliver/Deliver_IMAP.class.php >X%%SQUIRRELDIR%%/class/deliver/Deliver_SMTP.class.php >X%%SQUIRRELDIR%%/class/deliver/Deliver_SendMail.class.php >X%%SQUIRRELDIR%%/class/deliver/index.php >X%%SQUIRRELDIR%%/class/error.class.php >X%%SQUIRRELDIR%%/class/helper/VCard.class.php >X%%SQUIRRELDIR%%/class/helper/index.php >X%%SQUIRRELDIR%%/class/index.php >X%%SQUIRRELDIR%%/class/l10n.class.php >X%%SQUIRRELDIR%%/class/l10n/gettext.class.php >X%%SQUIRRELDIR%%/class/l10n/index.php >X%%SQUIRRELDIR%%/class/l10n/streams.class.php >X%%SQUIRRELDIR%%/class/mime.class.php >X%%SQUIRRELDIR%%/class/mime/AddressStructure.class.php >X%%SQUIRRELDIR%%/class/mime/ContentType.class.php >X%%SQUIRRELDIR%%/class/mime/Disposition.class.php >X%%SQUIRRELDIR%%/class/mime/Language.class.php >X%%SQUIRRELDIR%%/class/mime/Message.class.php >X%%SQUIRRELDIR%%/class/mime/MessageHeader.class.php >X%%SQUIRRELDIR%%/class/mime/Rfc822Header.class.php >X%%SQUIRRELDIR%%/class/mime/SMimeMessage.class.php >X%%SQUIRRELDIR%%/class/mime/index.php >X%%SQUIRRELDIR%%/class/template/index.php >X%%SQUIRRELDIR%%/class/template/template.class.php >X%%SQUIRRELDIR%%/config/conf.pl >X%%SQUIRRELDIR%%/config/config_default.php >X%%SQUIRRELDIR%%/config/config_local.example.php >X%%SQUIRRELDIR%%/config/default_pref >X%%SQUIRRELDIR%%/config/index.php >X%%SQUIRRELDIR%%/configure >X%%SQUIRRELDIR%%/functions/abook_database.php >X%%SQUIRRELDIR%%/functions/abook_ldap_server.php >X%%SQUIRRELDIR%%/functions/abook_local_file.php >X%%SQUIRRELDIR%%/functions/addressbook.php >X%%SQUIRRELDIR%%/functions/arrays.php >X%%SQUIRRELDIR%%/functions/attachment_common.php >X%%SQUIRRELDIR%%/functions/auth.php >X%%SQUIRRELDIR%%/functions/constants.php >X%%SQUIRRELDIR%%/functions/date.php >X%%SQUIRRELDIR%%/functions/db_prefs.php >X%%SQUIRRELDIR%%/functions/decode/cp1250.php >X%%SQUIRRELDIR%%/functions/decode/cp1251.php >X%%SQUIRRELDIR%%/functions/decode/cp1252.php >X%%SQUIRRELDIR%%/functions/decode/cp1253.php >X%%SQUIRRELDIR%%/functions/decode/cp1254.php >X%%SQUIRRELDIR%%/functions/decode/cp1255.php >X%%SQUIRRELDIR%%/functions/decode/cp1256.php >X%%SQUIRRELDIR%%/functions/decode/cp1257.php >X%%SQUIRRELDIR%%/functions/decode/cp1258.php >X%%SQUIRRELDIR%%/functions/decode/cp855.php >X%%SQUIRRELDIR%%/functions/decode/cp866.php >X%%SQUIRRELDIR%%/functions/decode/index.php >X%%SQUIRRELDIR%%/functions/decode/iso_8859_1.php >X%%SQUIRRELDIR%%/functions/decode/iso_8859_10.php >X%%SQUIRRELDIR%%/functions/decode/iso_8859_11.php >X%%SQUIRRELDIR%%/functions/decode/iso_8859_13.php >X%%SQUIRRELDIR%%/functions/decode/iso_8859_14.php >X%%SQUIRRELDIR%%/functions/decode/iso_8859_15.php >X%%SQUIRRELDIR%%/functions/decode/iso_8859_16.php >X%%SQUIRRELDIR%%/functions/decode/iso_8859_2.php >X%%SQUIRRELDIR%%/functions/decode/iso_8859_3.php >X%%SQUIRRELDIR%%/functions/decode/iso_8859_4.php >X%%SQUIRRELDIR%%/functions/decode/iso_8859_5.php >X%%SQUIRRELDIR%%/functions/decode/iso_8859_6.php >X%%SQUIRRELDIR%%/functions/decode/iso_8859_7.php >X%%SQUIRRELDIR%%/functions/decode/iso_8859_8.php >X%%SQUIRRELDIR%%/functions/decode/iso_8859_9.php >X%%SQUIRRELDIR%%/functions/decode/iso_ir_111.php >X%%SQUIRRELDIR%%/functions/decode/koi8_r.php >X%%SQUIRRELDIR%%/functions/decode/koi8_u.php >X%%SQUIRRELDIR%%/functions/decode/ns_4551_1.php >X%%SQUIRRELDIR%%/functions/decode/tis_620.php >X%%SQUIRRELDIR%%/functions/decode/us_ascii.php >X%%SQUIRRELDIR%%/functions/decode/utf_8.php >X%%SQUIRRELDIR%%/functions/display_messages.php >X%%SQUIRRELDIR%%/functions/encode/cp1251.php >X%%SQUIRRELDIR%%/functions/encode/cp1255.php >X%%SQUIRRELDIR%%/functions/encode/cp1256.php >X%%SQUIRRELDIR%%/functions/encode/index.php >X%%SQUIRRELDIR%%/functions/encode/iso_8859_1.php >X%%SQUIRRELDIR%%/functions/encode/iso_8859_15.php >X%%SQUIRRELDIR%%/functions/encode/iso_8859_2.php >X%%SQUIRRELDIR%%/functions/encode/iso_8859_7.php >X%%SQUIRRELDIR%%/functions/encode/iso_8859_9.php >X%%SQUIRRELDIR%%/functions/encode/koi8_r.php >X%%SQUIRRELDIR%%/functions/encode/koi8_u.php >X%%SQUIRRELDIR%%/functions/encode/tis_620.php >X%%SQUIRRELDIR%%/functions/encode/us_ascii.php >X%%SQUIRRELDIR%%/functions/encode/utf_8.php >X%%SQUIRRELDIR%%/functions/file_prefs.php >X%%SQUIRRELDIR%%/functions/folder_manip.php >X%%SQUIRRELDIR%%/functions/forms.php >X%%SQUIRRELDIR%%/functions/gettext.php >X%%SQUIRRELDIR%%/functions/global.php >X%%SQUIRRELDIR%%/functions/html.php >X%%SQUIRRELDIR%%/functions/htmlentities/index.php >X%%SQUIRRELDIR%%/functions/htmlentities/iso-8859-1.php >X%%SQUIRRELDIR%%/functions/htmlentities/readme.php >X%%SQUIRRELDIR%%/functions/htmlentities/utf-8.php >X%%SQUIRRELDIR%%/functions/i18n.php >X%%SQUIRRELDIR%%/functions/identity.php >X%%SQUIRRELDIR%%/functions/imap.php >X%%SQUIRRELDIR%%/functions/imap_asearch.php >X%%SQUIRRELDIR%%/functions/imap_general.php >X%%SQUIRRELDIR%%/functions/imap_mailbox.php >X%%SQUIRRELDIR%%/functions/imap_messages.php >X%%SQUIRRELDIR%%/functions/imap_utf7_local.php >X%%SQUIRRELDIR%%/functions/index.php >X%%SQUIRRELDIR%%/functions/mailbox_display.php >X%%SQUIRRELDIR%%/functions/mime.php >X%%SQUIRRELDIR%%/functions/ngettext.php >X%%SQUIRRELDIR%%/functions/options.php >X%%SQUIRRELDIR%%/functions/page_header.php >X%%SQUIRRELDIR%%/functions/plugin.php >X%%SQUIRRELDIR%%/functions/prefs.php >X%%SQUIRRELDIR%%/functions/rfc822address.php >X%%SQUIRRELDIR%%/functions/strings.php >X%%SQUIRRELDIR%%/functions/tree.php >X%%SQUIRRELDIR%%/functions/url_parser.php >X%%SQUIRRELDIR%%/help/bg_BG/FAQ.hlp >X%%SQUIRRELDIR%%/help/bg_BG/addresses.hlp >X%%SQUIRRELDIR%%/help/bg_BG/basic.hlp >X%%SQUIRRELDIR%%/help/bg_BG/compose.hlp >X%%SQUIRRELDIR%%/help/bg_BG/folders.hlp >X%%SQUIRRELDIR%%/help/bg_BG/main_folder.hlp >X%%SQUIRRELDIR%%/help/bg_BG/options.hlp >X%%SQUIRRELDIR%%/help/bg_BG/read_mail.hlp >X%%SQUIRRELDIR%%/help/bg_BG/search.hlp >X%%SQUIRRELDIR%%/help/ca_ES/FAQ.hlp >X%%SQUIRRELDIR%%/help/ca_ES/addresses.hlp >X%%SQUIRRELDIR%%/help/ca_ES/basic.hlp >X%%SQUIRRELDIR%%/help/ca_ES/compose.hlp >X%%SQUIRRELDIR%%/help/ca_ES/folders.hlp >X%%SQUIRRELDIR%%/help/ca_ES/main_folder.hlp >X%%SQUIRRELDIR%%/help/ca_ES/options.hlp >X%%SQUIRRELDIR%%/help/ca_ES/read_mail.hlp >X%%SQUIRRELDIR%%/help/ca_ES/search.hlp >X%%SQUIRRELDIR%%/help/cs_CZ/FAQ.hlp >X%%SQUIRRELDIR%%/help/cs_CZ/addresses.hlp >X%%SQUIRRELDIR%%/help/cs_CZ/basic.hlp >X%%SQUIRRELDIR%%/help/cs_CZ/compose.hlp >X%%SQUIRRELDIR%%/help/cs_CZ/folders.hlp >X%%SQUIRRELDIR%%/help/cs_CZ/main_folder.hlp >X%%SQUIRRELDIR%%/help/cs_CZ/options.hlp >X%%SQUIRRELDIR%%/help/cs_CZ/read_mail.hlp >X%%SQUIRRELDIR%%/help/cs_CZ/search.hlp >X%%SQUIRRELDIR%%/help/cy_GB/FAQ.hlp >X%%SQUIRRELDIR%%/help/cy_GB/addresses.hlp >X%%SQUIRRELDIR%%/help/cy_GB/basic.hlp >X%%SQUIRRELDIR%%/help/cy_GB/compose.hlp >X%%SQUIRRELDIR%%/help/cy_GB/folders.hlp >X%%SQUIRRELDIR%%/help/cy_GB/main_folder.hlp >X%%SQUIRRELDIR%%/help/cy_GB/options.hlp >X%%SQUIRRELDIR%%/help/cy_GB/read_mail.hlp >X%%SQUIRRELDIR%%/help/cy_GB/search.hlp >X%%SQUIRRELDIR%%/help/da_DK/FAQ.hlp >X%%SQUIRRELDIR%%/help/da_DK/addresses.hlp >X%%SQUIRRELDIR%%/help/da_DK/basic.hlp >X%%SQUIRRELDIR%%/help/da_DK/compose.hlp >X%%SQUIRRELDIR%%/help/da_DK/folders.hlp >X%%SQUIRRELDIR%%/help/da_DK/main_folder.hlp >X%%SQUIRRELDIR%%/help/da_DK/options.hlp >X%%SQUIRRELDIR%%/help/da_DK/read_mail.hlp >X%%SQUIRRELDIR%%/help/da_DK/search.hlp >X%%SQUIRRELDIR%%/help/de_DE/FAQ.hlp >X%%SQUIRRELDIR%%/help/de_DE/addresses.hlp >X%%SQUIRRELDIR%%/help/de_DE/basic.hlp >X%%SQUIRRELDIR%%/help/de_DE/compose.hlp >X%%SQUIRRELDIR%%/help/de_DE/folders.hlp >X%%SQUIRRELDIR%%/help/de_DE/main_folder.hlp >X%%SQUIRRELDIR%%/help/de_DE/options.hlp >X%%SQUIRRELDIR%%/help/de_DE/read_mail.hlp >X%%SQUIRRELDIR%%/help/de_DE/search.hlp >X%%SQUIRRELDIR%%/help/en_GB/FAQ.hlp >X%%SQUIRRELDIR%%/help/en_GB/addresses.hlp >X%%SQUIRRELDIR%%/help/en_GB/basic.hlp >X%%SQUIRRELDIR%%/help/en_GB/compose.hlp >X%%SQUIRRELDIR%%/help/en_GB/folders.hlp >X%%SQUIRRELDIR%%/help/en_GB/main_folder.hlp >X%%SQUIRRELDIR%%/help/en_GB/options.hlp >X%%SQUIRRELDIR%%/help/en_GB/read_mail.hlp >X%%SQUIRRELDIR%%/help/en_GB/search.hlp >X%%SQUIRRELDIR%%/help/en_US/FAQ.hlp >X%%SQUIRRELDIR%%/help/en_US/addresses.hlp >X%%SQUIRRELDIR%%/help/en_US/basic.hlp >X%%SQUIRRELDIR%%/help/en_US/compose.hlp >X%%SQUIRRELDIR%%/help/en_US/folders.hlp >X%%SQUIRRELDIR%%/help/en_US/main_folder.hlp >X%%SQUIRRELDIR%%/help/en_US/options.hlp >X%%SQUIRRELDIR%%/help/en_US/read_mail.hlp >X%%SQUIRRELDIR%%/help/en_US/search.hlp >X%%SQUIRRELDIR%%/help/es_ES/FAQ.hlp >X%%SQUIRRELDIR%%/help/es_ES/addresses.hlp >X%%SQUIRRELDIR%%/help/es_ES/basic.hlp >X%%SQUIRRELDIR%%/help/es_ES/compose.hlp >X%%SQUIRRELDIR%%/help/es_ES/folders.hlp >X%%SQUIRRELDIR%%/help/es_ES/main_folder.hlp >X%%SQUIRRELDIR%%/help/es_ES/options.hlp >X%%SQUIRRELDIR%%/help/es_ES/read_mail.hlp >X%%SQUIRRELDIR%%/help/es_ES/search.hlp >X%%SQUIRRELDIR%%/help/fi_FI/FAQ.hlp >X%%SQUIRRELDIR%%/help/fi_FI/addresses.hlp >X%%SQUIRRELDIR%%/help/fi_FI/basic.hlp >X%%SQUIRRELDIR%%/help/fi_FI/compose.hlp >X%%SQUIRRELDIR%%/help/fi_FI/folders.hlp >X%%SQUIRRELDIR%%/help/fi_FI/main_folder.hlp >X%%SQUIRRELDIR%%/help/fi_FI/options.hlp >X%%SQUIRRELDIR%%/help/fi_FI/read_mail.hlp >X%%SQUIRRELDIR%%/help/fi_FI/search.hlp >X%%SQUIRRELDIR%%/help/fr_FR/FAQ.hlp >X%%SQUIRRELDIR%%/help/fr_FR/addresses.hlp >X%%SQUIRRELDIR%%/help/fr_FR/basic.hlp >X%%SQUIRRELDIR%%/help/fr_FR/compose.hlp >X%%SQUIRRELDIR%%/help/fr_FR/folders.hlp >X%%SQUIRRELDIR%%/help/fr_FR/main_folder.hlp >X%%SQUIRRELDIR%%/help/fr_FR/options.hlp >X%%SQUIRRELDIR%%/help/fr_FR/read_mail.hlp >X%%SQUIRRELDIR%%/help/fr_FR/search.hlp >X%%SQUIRRELDIR%%/help/id_ID/FAQ.hlp >X%%SQUIRRELDIR%%/help/id_ID/addresses.hlp >X%%SQUIRRELDIR%%/help/id_ID/basic.hlp >X%%SQUIRRELDIR%%/help/id_ID/compose.hlp >X%%SQUIRRELDIR%%/help/id_ID/folders.hlp >X%%SQUIRRELDIR%%/help/id_ID/main_folder.hlp >X%%SQUIRRELDIR%%/help/id_ID/options.hlp >X%%SQUIRRELDIR%%/help/id_ID/read_mail.hlp >X%%SQUIRRELDIR%%/help/id_ID/search.hlp >X%%SQUIRRELDIR%%/help/index.php >X%%SQUIRRELDIR%%/help/it_IT/FAQ.hlp >X%%SQUIRRELDIR%%/help/it_IT/addresses.hlp >X%%SQUIRRELDIR%%/help/it_IT/basic.hlp >X%%SQUIRRELDIR%%/help/it_IT/compose.hlp >X%%SQUIRRELDIR%%/help/it_IT/folders.hlp >X%%SQUIRRELDIR%%/help/it_IT/main_folder.hlp >X%%SQUIRRELDIR%%/help/it_IT/options.hlp >X%%SQUIRRELDIR%%/help/it_IT/read_mail.hlp >X%%SQUIRRELDIR%%/help/it_IT/search.hlp >X%%SQUIRRELDIR%%/help/ja_JP/FAQ.hlp >X%%SQUIRRELDIR%%/help/ja_JP/addresses.hlp >X%%SQUIRRELDIR%%/help/ja_JP/basic.hlp >X%%SQUIRRELDIR%%/help/ja_JP/compose.hlp >X%%SQUIRRELDIR%%/help/ja_JP/folders.hlp >X%%SQUIRRELDIR%%/help/ja_JP/main_folder.hlp >X%%SQUIRRELDIR%%/help/ja_JP/options.hlp >X%%SQUIRRELDIR%%/help/ja_JP/read_mail.hlp >X%%SQUIRRELDIR%%/help/ja_JP/search.hlp >X%%SQUIRRELDIR%%/help/ko_KR/FAQ.hlp >X%%SQUIRRELDIR%%/help/ko_KR/addresses.hlp >X%%SQUIRRELDIR%%/help/ko_KR/basic.hlp >X%%SQUIRRELDIR%%/help/ko_KR/compose.hlp >X%%SQUIRRELDIR%%/help/ko_KR/folders.hlp >X%%SQUIRRELDIR%%/help/ko_KR/main_folder.hlp >X%%SQUIRRELDIR%%/help/ko_KR/options.hlp >X%%SQUIRRELDIR%%/help/ko_KR/read_mail.hlp >X%%SQUIRRELDIR%%/help/ko_KR/search.hlp >X%%SQUIRRELDIR%%/help/lt_LT/FAQ.hlp >X%%SQUIRRELDIR%%/help/lt_LT/addresses.hlp >X%%SQUIRRELDIR%%/help/lt_LT/basic.hlp >X%%SQUIRRELDIR%%/help/lt_LT/compose.hlp >X%%SQUIRRELDIR%%/help/lt_LT/folders.hlp >X%%SQUIRRELDIR%%/help/lt_LT/main_folder.hlp >X%%SQUIRRELDIR%%/help/lt_LT/options.hlp >X%%SQUIRRELDIR%%/help/lt_LT/read_mail.hlp >X%%SQUIRRELDIR%%/help/lt_LT/search.hlp >X%%SQUIRRELDIR%%/help/nl_NL/FAQ.hlp >X%%SQUIRRELDIR%%/help/nl_NL/addresses.hlp >X%%SQUIRRELDIR%%/help/nl_NL/basic.hlp >X%%SQUIRRELDIR%%/help/nl_NL/compose.hlp >X%%SQUIRRELDIR%%/help/nl_NL/folders.hlp >X%%SQUIRRELDIR%%/help/nl_NL/main_folder.hlp >X%%SQUIRRELDIR%%/help/nl_NL/options.hlp >X%%SQUIRRELDIR%%/help/nl_NL/read_mail.hlp >X%%SQUIRRELDIR%%/help/nl_NL/search.hlp >X%%SQUIRRELDIR%%/help/pl_PL/FAQ.hlp >X%%SQUIRRELDIR%%/help/pl_PL/addresses.hlp >X%%SQUIRRELDIR%%/help/pl_PL/basic.hlp >X%%SQUIRRELDIR%%/help/pl_PL/compose.hlp >X%%SQUIRRELDIR%%/help/pl_PL/folders.hlp >X%%SQUIRRELDIR%%/help/pl_PL/main_folder.hlp >X%%SQUIRRELDIR%%/help/pl_PL/options.hlp >X%%SQUIRRELDIR%%/help/pl_PL/read_mail.hlp >X%%SQUIRRELDIR%%/help/pl_PL/search.hlp >X%%SQUIRRELDIR%%/help/pt_BR/FAQ.hlp >X%%SQUIRRELDIR%%/help/pt_BR/addresses.hlp >X%%SQUIRRELDIR%%/help/pt_BR/basic.hlp >X%%SQUIRRELDIR%%/help/pt_BR/compose.hlp >X%%SQUIRRELDIR%%/help/pt_BR/folders.hlp >X%%SQUIRRELDIR%%/help/pt_BR/main_folder.hlp >X%%SQUIRRELDIR%%/help/pt_BR/options.hlp >X%%SQUIRRELDIR%%/help/pt_BR/read_mail.hlp >X%%SQUIRRELDIR%%/help/pt_BR/search.hlp >X%%SQUIRRELDIR%%/help/pt_PT/FAQ.hlp >X%%SQUIRRELDIR%%/help/pt_PT/addresses.hlp >X%%SQUIRRELDIR%%/help/pt_PT/basic.hlp >X%%SQUIRRELDIR%%/help/pt_PT/compose.hlp >X%%SQUIRRELDIR%%/help/pt_PT/folders.hlp >X%%SQUIRRELDIR%%/help/pt_PT/main_folder.hlp >X%%SQUIRRELDIR%%/help/pt_PT/options.hlp >X%%SQUIRRELDIR%%/help/pt_PT/read_mail.hlp >X%%SQUIRRELDIR%%/help/pt_PT/search.hlp >X%%SQUIRRELDIR%%/help/ru_RU/FAQ.hlp >X%%SQUIRRELDIR%%/help/ru_RU/addresses.hlp >X%%SQUIRRELDIR%%/help/ru_RU/basic.hlp >X%%SQUIRRELDIR%%/help/ru_RU/compose.hlp >X%%SQUIRRELDIR%%/help/ru_RU/folders.hlp >X%%SQUIRRELDIR%%/help/ru_RU/main_folder.hlp >X%%SQUIRRELDIR%%/help/ru_RU/options.hlp >X%%SQUIRRELDIR%%/help/ru_RU/read_mail.hlp >X%%SQUIRRELDIR%%/help/ru_RU/search.hlp >X%%SQUIRRELDIR%%/help/sk_SK/FAQ.hlp >X%%SQUIRRELDIR%%/help/sk_SK/addresses.hlp >X%%SQUIRRELDIR%%/help/sk_SK/basic.hlp >X%%SQUIRRELDIR%%/help/sk_SK/compose.hlp >X%%SQUIRRELDIR%%/help/sk_SK/folders.hlp >X%%SQUIRRELDIR%%/help/sk_SK/main_folder.hlp >X%%SQUIRRELDIR%%/help/sk_SK/options.hlp >X%%SQUIRRELDIR%%/help/sk_SK/read_mail.hlp >X%%SQUIRRELDIR%%/help/sk_SK/search.hlp >X%%SQUIRRELDIR%%/help/sl_SI/FAQ.hlp >X%%SQUIRRELDIR%%/help/sl_SI/addresses.hlp >X%%SQUIRRELDIR%%/help/sl_SI/basic.hlp >X%%SQUIRRELDIR%%/help/sl_SI/compose.hlp >X%%SQUIRRELDIR%%/help/sl_SI/folders.hlp >X%%SQUIRRELDIR%%/help/sl_SI/main_folder.hlp >X%%SQUIRRELDIR%%/help/sl_SI/options.hlp >X%%SQUIRRELDIR%%/help/sl_SI/read_mail.hlp >X%%SQUIRRELDIR%%/help/sl_SI/search.hlp >X%%SQUIRRELDIR%%/help/sr_YU/FAQ.hlp >X%%SQUIRRELDIR%%/help/sr_YU/addresses.hlp >X%%SQUIRRELDIR%%/help/sr_YU/basic.hlp >X%%SQUIRRELDIR%%/help/sr_YU/compose.hlp >X%%SQUIRRELDIR%%/help/sr_YU/folders.hlp >X%%SQUIRRELDIR%%/help/sr_YU/main_folder.hlp >X%%SQUIRRELDIR%%/help/sr_YU/options.hlp >X%%SQUIRRELDIR%%/help/sr_YU/read_mail.hlp >X%%SQUIRRELDIR%%/help/sr_YU/search.hlp >X%%SQUIRRELDIR%%/help/sv_SE/FAQ.hlp >X%%SQUIRRELDIR%%/help/sv_SE/addresses.hlp >X%%SQUIRRELDIR%%/help/sv_SE/basic.hlp >X%%SQUIRRELDIR%%/help/sv_SE/compose.hlp >X%%SQUIRRELDIR%%/help/sv_SE/folders.hlp >X%%SQUIRRELDIR%%/help/sv_SE/main_folder.hlp >X%%SQUIRRELDIR%%/help/sv_SE/options.hlp >X%%SQUIRRELDIR%%/help/sv_SE/read_mail.hlp >X%%SQUIRRELDIR%%/help/sv_SE/search.hlp >X%%SQUIRRELDIR%%/help/th_TH/addresses.hlp >X%%SQUIRRELDIR%%/help/th_TH/basic.hlp >X%%SQUIRRELDIR%%/help/th_TH/compose.hlp >X%%SQUIRRELDIR%%/help/th_TH/FAQ.hlp >X%%SQUIRRELDIR%%/help/th_TH/folders.hlp >X%%SQUIRRELDIR%%/help/th_TH/main_folder.hlp >X%%SQUIRRELDIR%%/help/th_TH/options.hlp >X%%SQUIRRELDIR%%/help/th_TH/read_mail.hlp >X%%SQUIRRELDIR%%/help/th_TH/search.hlp >X%%SQUIRRELDIR%%/help/zh_CN/FAQ.hlp >X%%SQUIRRELDIR%%/help/zh_CN/addresses.hlp >X%%SQUIRRELDIR%%/help/zh_CN/basic.hlp >X%%SQUIRRELDIR%%/help/zh_CN/compose.hlp >X%%SQUIRRELDIR%%/help/zh_CN/folders.hlp >X%%SQUIRRELDIR%%/help/zh_CN/main_folder.hlp >X%%SQUIRRELDIR%%/help/zh_CN/options.hlp >X%%SQUIRRELDIR%%/help/zh_CN/read_mail.hlp >X%%SQUIRRELDIR%%/help/zh_CN/search.hlp >X%%SQUIRRELDIR%%/images/blank.png >X%%SQUIRRELDIR%%/images/delitem.png >X%%SQUIRRELDIR%%/images/down_pointer.png >X%%SQUIRRELDIR%%/images/draft.png >X%%SQUIRRELDIR%%/images/folder.png >X%%SQUIRRELDIR%%/images/folder_noinf.png >X%%SQUIRRELDIR%%/images/inbox.png >X%%SQUIRRELDIR%%/images/index.php >X%%SQUIRRELDIR%%/images/minus.png >X%%SQUIRRELDIR%%/images/plus.png >X%%SQUIRRELDIR%%/images/sec_remove_bn_IN.png >X%%SQUIRRELDIR%%/images/sec_remove_cs_CZ.png >X%%SQUIRRELDIR%%/images/sec_remove_da_DK.png >X%%SQUIRRELDIR%%/images/sec_remove_de_DE.png >X%%SQUIRRELDIR%%/images/sec_remove_el_GR.png >X%%SQUIRRELDIR%%/images/sec_remove_eng.png >X%%SQUIRRELDIR%%/images/sec_remove_es_ES.png >X%%SQUIRRELDIR%%/images/sec_remove_et_EE.png >X%%SQUIRRELDIR%%/images/sec_remove_fi_FI.png >X%%SQUIRRELDIR%%/images/sec_remove_fo_FO.png >X%%SQUIRRELDIR%%/images/sec_remove_fr_FR.png >X%%SQUIRRELDIR%%/images/sec_remove_he_IL.png >X%%SQUIRRELDIR%%/images/sec_remove_hr_HR.png >X%%SQUIRRELDIR%%/images/sec_remove_hu_HU.png >X%%SQUIRRELDIR%%/images/sec_remove_id_ID.png >X%%SQUIRRELDIR%%/images/sec_remove_it_IT.png >X%%SQUIRRELDIR%%/images/sec_remove_ja_JP.png >X%%SQUIRRELDIR%%/images/sec_remove_ko_KR.png >X%%SQUIRRELDIR%%/images/sec_remove_lt_LT.png >X%%SQUIRRELDIR%%/images/sec_remove_nb_NO.png >X%%SQUIRRELDIR%%/images/sec_remove_nl_NL.png >X%%SQUIRRELDIR%%/images/sec_remove_nn_NO.png >X%%SQUIRRELDIR%%/images/sec_remove_pt_BR.png >X%%SQUIRRELDIR%%/images/sec_remove_pt_PT.png >X%%SQUIRRELDIR%%/images/sec_remove_ru_RU.png >X%%SQUIRRELDIR%%/images/sec_remove_sk_SK.png >X%%SQUIRRELDIR%%/images/sec_remove_sl_SI.png >X%%SQUIRRELDIR%%/images/sec_remove_sr_YU.png >X%%SQUIRRELDIR%%/images/sec_remove_sv_SE.png >X%%SQUIRRELDIR%%/images/sec_remove_tr_TR.png >X%%SQUIRRELDIR%%/images/sec_remove_ug.png >X%%SQUIRRELDIR%%/images/senti.png >X%%SQUIRRELDIR%%/images/sm_logo.png >X%%SQUIRRELDIR%%/images/sort_none.png >X%%SQUIRRELDIR%%/images/themes/default/attach.png >X%%SQUIRRELDIR%%/images/themes/default/flagged.png >X%%SQUIRRELDIR%%/images/themes/default/index.php >X%%SQUIRRELDIR%%/images/themes/default/msg_new.png >X%%SQUIRRELDIR%%/images/themes/default/msg_new_deleted.png >X%%SQUIRRELDIR%%/images/themes/default/msg_new_deleted_reply.png >X%%SQUIRRELDIR%%/images/themes/default/msg_new_reply.png >X%%SQUIRRELDIR%%/images/themes/default/msg_read.png >X%%SQUIRRELDIR%%/images/themes/default/msg_read_deleted.png >X%%SQUIRRELDIR%%/images/themes/default/msg_read_deleted_reply.png >X%%SQUIRRELDIR%%/images/themes/default/msg_read_reply.png >X%%SQUIRRELDIR%%/images/themes/default/prio_high.png >X%%SQUIRRELDIR%%/images/themes/default/prio_low.png >X%%SQUIRRELDIR%%/images/themes/default/theme.php >X%%SQUIRRELDIR%%/images/themes/default/transparent.png >X%%SQUIRRELDIR%%/images/themes/index.php >X%%SQUIRRELDIR%%/images/themes/none/index.php >X%%SQUIRRELDIR%%/images/themes/none/theme.php >X%%SQUIRRELDIR%%/images/themes/xp/attach.png >X%%SQUIRRELDIR%%/images/themes/xp/flagged.png >X%%SQUIRRELDIR%%/images/themes/xp/index.php >X%%SQUIRRELDIR%%/images/themes/xp/msg_new.png >X%%SQUIRRELDIR%%/images/themes/xp/msg_new_deleted.png >X%%SQUIRRELDIR%%/images/themes/xp/msg_new_deleted_reply.png >X%%SQUIRRELDIR%%/images/themes/xp/msg_new_reply.png >X%%SQUIRRELDIR%%/images/themes/xp/msg_read.png >X%%SQUIRRELDIR%%/images/themes/xp/msg_read_deleted.png >X%%SQUIRRELDIR%%/images/themes/xp/msg_read_deleted_reply.png >X%%SQUIRRELDIR%%/images/themes/xp/msg_read_reply.png >X%%SQUIRRELDIR%%/images/themes/xp/prio_high.png >X%%SQUIRRELDIR%%/images/themes/xp/prio_low.png >X%%SQUIRRELDIR%%/images/themes/xp/theme.php >X%%SQUIRRELDIR%%/images/themes/xp/transparent.png >X%%SQUIRRELDIR%%/images/up_pointer.png >X%%SQUIRRELDIR%%/include/errors.php >X%%SQUIRRELDIR%%/include/index.php >X%%SQUIRRELDIR%%/include/load_prefs.php >X%%SQUIRRELDIR%%/include/options/compose.php >X%%SQUIRRELDIR%%/include/options/display.php >X%%SQUIRRELDIR%%/include/options/folder.php >X%%SQUIRRELDIR%%/include/options/index.php >X%%SQUIRRELDIR%%/include/options/personal.php >X%%SQUIRRELDIR%%/include/timezones.php >X%%SQUIRRELDIR%%/include/timezones/check.php >X%%SQUIRRELDIR%%/include/timezones/index.php >X%%SQUIRRELDIR%%/include/timezones/standard.php >X%%SQUIRRELDIR%%/include/timezones/standard_orig.php >X%%SQUIRRELDIR%%/include/validate.php >X%%SQUIRRELDIR%%/index.php >X%%SQUIRRELDIR%%/locale/README.locales >X%%SQUIRRELDIR%%/locale/ar/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/ar/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/ar/setup.php >X%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/bg_BG/setup.php >X%%SQUIRRELDIR%%/locale/bn_IN/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/bn_IN/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/bn_IN/setup.php >X%%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/ca_ES/setup.php >X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/abook_import_export.mo >X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/abook_import_export.po >X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/compatibility.mo >X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/compatibility.po >X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/proon.mo >X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/proon.po >X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vacation_local.mo >X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vacation_local.po >X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/yelp.mo >X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/yelp.po >X%%SQUIRRELDIR%%/locale/cs_CZ/setup.php >X%%SQUIRRELDIR%%/locale/cy_GB/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/cy_GB/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/cy_GB/setup.php >X%%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/da_DK/setup.php >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/abook_import_export.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/abook_import_export.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/archive_mail.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/archive_mail.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/askuserinfo.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/askuserinfo.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/calendar.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/calendar.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_sqlpass.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_sqlpass.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/empty_folders.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/empty_folders.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/expire.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/expire.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/ldapquery.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/ldapquery.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/limit_languages.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/limit_languages.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/login_alias.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/login_alias.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/naguser.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/naguser.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/reply_buttons.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/reply_buttons.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/restrict_senders.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/restrict_senders.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/select_language.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/select_language.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/serversidefilter.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/serversidefilter.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/show_ssl_link.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/show_ssl_link.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrel_logger.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrel_logger.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/templates.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/templates.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/unsafe_image_rules.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/unsafe_image_rules.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/vacation_local.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/vacation_local.po >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/verify_reply_to.mo >X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/verify_reply_to.po >X%%SQUIRRELDIR%%/locale/de_DE/setup.php >X%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/ldapquery.mo >X%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/ldapquery.po >X%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/el_GR/setup.php >X%%SQUIRRELDIR%%/locale/en_GB/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/en_GB/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/en_GB/setup.php >X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/askuserinfo.mo >X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/askuserinfo.po >X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_sqlpass.mo >X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_sqlpass.po >X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/smallcal.mo >X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/smallcal.po >X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/unsafe_image_rules.mo >X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/unsafe_image_rules.po >X%%SQUIRRELDIR%%/locale/es_ES/setup.php >X%%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/et_EE/setup.php >X%%SQUIRRELDIR%%/locale/eu_ES/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/eu_ES/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/eu_ES/setup.php >X%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/fa_IR/setup.php >X%%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/fi_FI/setup.php >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/abook_import_export.mo >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/abook_import_export.po >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/archive_mail.mo >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/archive_mail.po >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/askuserinfo.mo >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/askuserinfo.po >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/compatibility.mo >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/compatibility.po >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/empty_folders.mo >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/empty_folders.po >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/folder_settings.mo >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/folder_settings.po >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/html_mail.mo >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/html_mail.po >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/fo_FO/setup.php >X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/archive_mail.mo >X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/archive_mail.po >X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/calendar.mo >X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/calendar.po >X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/empty_folders.mo >X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/empty_folders.po >X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/spam_buttons.mo >X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/spam_buttons.po >X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vacation_local.mo >X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vacation_local.po >X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/yelp.mo >X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/yelp.po >X%%SQUIRRELDIR%%/locale/fr_FR/setup.php >X%%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/he_IL/setup.php >X%%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/hr_HR/setup.php >X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/hu_HU/setup.php >X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/askuserinfo.mo >X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/askuserinfo.po >X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/compatibility.mo >X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/compatibility.po >X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/id_ID/setup.php >X%%SQUIRRELDIR%%/locale/index.php >X%%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/is_IS/setup.php >X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/archive_mail.mo >X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/archive_mail.po >X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/calendar.mo >X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/calendar.po >X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/vacation_local.mo >X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/vacation_local.po >X%%SQUIRRELDIR%%/locale/it_IT/setup.php >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/archive_mail.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/archive_mail.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/askuserinfo.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/askuserinfo.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/compatibility.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/compatibility.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/cookie_warning.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/cookie_warning.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/custom_charset.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/custom_charset.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/debugger.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/debugger.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/html_mail.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/html_mail.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/mini.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/mini.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/reply_buttons.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/reply_buttons.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/sasql.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/sasql.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/select_language.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/select_language.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/serversidefilter.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/serversidefilter.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/show_ssl_link.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/show_ssl_link.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/smallcal.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/smallcal.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/spam_buttons.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/spam_buttons.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrel_logger.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrel_logger.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/web_search.mo >X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/web_search.po >X%%SQUIRRELDIR%%/locale/ja_JP/setup.php >X%%SQUIRRELDIR%%/locale/ka/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/ka/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/ka/setup.php >X%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/ko_KR/setup.php >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/abook_import_export.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/abook_import_export.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/archive_mail.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/archive_mail.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/askuserinfo.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/askuserinfo.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/calendar.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/calendar.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/change_sqlpass.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/change_sqlpass.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/compatibility.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/compatibility.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/compose_fix.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/compose_fix.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/cookie_warning.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/cookie_warning.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/custom_charset.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/custom_charset.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/debugger.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/debugger.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/empty_folders.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/empty_folders.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/html_mail.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/html_mail.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/ldapquery.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/ldapquery.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/limit_languages.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/limit_languages.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/login_alias.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/login_alias.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/mini.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/mini.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/naguser.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/naguser.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/qmailadmin_login.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/qmailadmin_login.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/reply_buttons.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/reply_buttons.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/restrict_senders.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/restrict_senders.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/sasql.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/sasql.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/select_language.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/select_language.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/serversidefilter.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/serversidefilter.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/show_ssl_link.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/show_ssl_link.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/smallcal.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/smallcal.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/spam_buttons.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/spam_buttons.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/squirrel_logger.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/squirrel_logger.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/templates.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/templates.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/unsafe_image_rules.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/unsafe_image_rules.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/vacation_local.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/vacation_local.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/verify_reply_to.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/verify_reply_to.po >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/yelp.mo >X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/yelp.po >X%%SQUIRRELDIR%%/locale/lt_LT/setup.php >X%%SQUIRRELDIR%%/locale/ms_MY/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/ms_MY/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/ms_MY/setup.php >X%%SQUIRRELDIR%%/locale/nb_NO/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/nb_NO/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/nb_NO/setup.php >X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/archive_mail.mo >X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/archive_mail.po >X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/askuserinfo.mo >X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/askuserinfo.po >X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/calendar.mo >X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/calendar.po >X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/nl_NL/setup.php >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/abook_import_export.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/abook_import_export.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/archive_mail.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/archive_mail.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/askuserinfo.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/askuserinfo.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/calendar.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/calendar.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/change_sqlpass.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/change_sqlpass.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/compatibility.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/compatibility.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/compose_fix.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/compose_fix.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/cookie_warning.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/cookie_warning.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/custom_charset.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/custom_charset.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/debugger.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/debugger.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/empty_folders.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/empty_folders.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/html_mail.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/html_mail.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/ldapquery.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/ldapquery.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/limit_languages.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/limit_languages.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/login_alias.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/login_alias.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/naguser.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/naguser.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/qmailadmin_login.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/qmailadmin_login.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/reply_buttons.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/reply_buttons.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/restrict_senders.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/restrict_senders.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/sasql.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/sasql.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/serversidefilter.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/serversidefilter.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/show_ssl_link.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/show_ssl_link.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/smallcal.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/smallcal.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/spam_buttons.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/spam_buttons.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/squirrel_logger.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/squirrel_logger.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/templates.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/templates.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/vacation_local.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/vacation_local.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/verify_reply_to.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/verify_reply_to.po >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/yelp.mo >X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/yelp.po >X%%SQUIRRELDIR%%/locale/nn_NO/setup.php >X%%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/pl_PL/setup.php >X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/abook_import_export.mo >X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/abook_import_export.po >X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/archive_mail.mo >X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/archive_mail.po >X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/unsafe_image_rules.mo >X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/unsafe_image_rules.po >X%%SQUIRRELDIR%%/locale/pt_BR/setup.php >X%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/askuserinfo.mo >X%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/askuserinfo.po >X%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/unsafe_image_rules.mo >X%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/unsafe_image_rules.po >X%%SQUIRRELDIR%%/locale/pt_PT/setup.php >X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/ro_RO/setup.php >X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/custom_charset.mo >X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/custom_charset.po >X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/sasql.mo >X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/sasql.po >X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/serversidefilter.mo >X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/serversidefilter.po >X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/ru_RU/setup.php >X%%SQUIRRELDIR%%/locale/ru_UA/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/ru_UA/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/ru_UA/setup.php >X%%SQUIRRELDIR%%/locale/sk_SK/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/sk_SK/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/sk_SK/setup.php >X%%SQUIRRELDIR%%/locale/sl_SI/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/sl_SI/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/sl_SI/setup.php >X%%SQUIRRELDIR%%/locale/sr_YU/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/sr_YU/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/sr_YU/setup.php >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/abook_import_export.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/abook_import_export.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/archive_mail.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/archive_mail.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/askuserinfo.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/askuserinfo.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/change_sqlpass.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/change_sqlpass.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/compatibility.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/compatibility.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/compose_fix.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/compose_fix.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/cookie_warning.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/cookie_warning.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/custom_charset.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/custom_charset.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/debugger.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/debugger.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/empty_folders.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/empty_folders.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/html_mail.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/html_mail.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/limit_languages.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/limit_languages.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/login_alias.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/login_alias.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/mini.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/mini.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/multilogin.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/multilogin.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/naguser.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/naguser.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/qmailadmin_login.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/qmailadmin_login.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/reply_buttons.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/reply_buttons.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/restrict_senders.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/restrict_senders.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/sasql.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/sasql.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/select_language.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/select_language.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/serversidefilter.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/serversidefilter.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/show_ssl_link.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/show_ssl_link.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/smallcal.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/smallcal.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/spam_buttons.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/spam_buttons.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/squirrel_logger.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/squirrel_logger.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/templates.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/templates.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/unsafe_image_rules.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/unsafe_image_rules.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/vacation_local.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/vacation_local.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/verify_reply_to.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/verify_reply_to.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/web_search.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/web_search.po >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/yelp.mo >X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/yelp.po >X%%SQUIRRELDIR%%/locale/sv_SE/setup.php >X%%SQUIRRELDIR%%/locale/th_TH/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/th_TH/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/th_TH/setup.php >X%%SQUIRRELDIR%%/locale/tl_PH/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/tl_PH/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/tl_PH/setup.php >X%%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/tr_TR/setup.php >X%%SQUIRRELDIR%%/locale/ug/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/ug/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/ug/setup.php >X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/uk_UA/setup.php >X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/vi_VN/setup.php >X%%SQUIRRELDIR%%/locale/zh_CN/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/zh_CN/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/zh_CN/setup.php >X%%SQUIRRELDIR%%/locale/zh_TW/LC_MESSAGES/squirrelmail.mo >X%%SQUIRRELDIR%%/locale/zh_TW/LC_MESSAGES/squirrelmail.po >X%%SQUIRRELDIR%%/locale/zh_TW/setup.php >X%%SQUIRRELDIR%%/plugins/abook_take/functions.php >X%%SQUIRRELDIR%%/plugins/abook_take/index.php >X%%SQUIRRELDIR%%/plugins/abook_take/setup.php >X%%SQUIRRELDIR%%/plugins/abook_take/take.php >X%%SQUIRRELDIR%%/plugins/administrator/auth.php >X%%SQUIRRELDIR%%/plugins/administrator/defines.php >X%%SQUIRRELDIR%%/plugins/administrator/index.php >X%%SQUIRRELDIR%%/plugins/administrator/options.php >X%%SQUIRRELDIR%%/plugins/administrator/setup.php >X%%SQUIRRELDIR%%/plugins/bug_report/bug_report.php >X%%SQUIRRELDIR%%/plugins/bug_report/config_default.php >X%%SQUIRRELDIR%%/plugins/bug_report/functions.php >X%%SQUIRRELDIR%%/plugins/bug_report/index.php >X%%SQUIRRELDIR%%/plugins/bug_report/setup.php >X%%SQUIRRELDIR%%/plugins/bug_report/show_system_specs.php >X%%SQUIRRELDIR%%/plugins/bug_report/system_specs.php >X%%SQUIRRELDIR%%/plugins/calendar/calendar.php >X%%SQUIRRELDIR%%/plugins/calendar/calendar_data.php >X%%SQUIRRELDIR%%/plugins/calendar/day.php >X%%SQUIRRELDIR%%/plugins/calendar/event_create.php >X%%SQUIRRELDIR%%/plugins/calendar/event_delete.php >X%%SQUIRRELDIR%%/plugins/calendar/event_edit.php >X%%SQUIRRELDIR%%/plugins/calendar/functions.php >X%%SQUIRRELDIR%%/plugins/calendar/index.php >X%%SQUIRRELDIR%%/plugins/calendar/setup.php >X%%SQUIRRELDIR%%/plugins/change_password/API >X%%SQUIRRELDIR%%/plugins/change_password/backend/index.php >X%%SQUIRRELDIR%%/plugins/change_password/backend/ldap.php >X%%SQUIRRELDIR%%/plugins/change_password/backend/merak.php >X%%SQUIRRELDIR%%/plugins/change_password/backend/mysql.php >X%%SQUIRRELDIR%%/plugins/change_password/backend/peardb.php >X%%SQUIRRELDIR%%/plugins/change_password/backend/poppassd.php >X%%SQUIRRELDIR%%/plugins/change_password/backend/template.php >X%%SQUIRRELDIR%%/plugins/change_password/backend/vmailmgrd.php >X%%SQUIRRELDIR%%/plugins/change_password/config_default.php >X%%SQUIRRELDIR%%/plugins/change_password/functions.php >X%%SQUIRRELDIR%%/plugins/change_password/index.php >X%%SQUIRRELDIR%%/plugins/change_password/options.php >X%%SQUIRRELDIR%%/plugins/change_password/setup.php >X%%SQUIRRELDIR%%/plugins/change_password/version >X%%SQUIRRELDIR%%/plugins/filters/bulkquery/Makefile >X%%SQUIRRELDIR%%/plugins/filters/bulkquery/bq.in >X%%SQUIRRELDIR%%/plugins/filters/bulkquery/bq.out >X%%SQUIRRELDIR%%/plugins/filters/bulkquery/bulkquery.c >X%%SQUIRRELDIR%%/plugins/filters/bulkquery/index.php >X%%SQUIRRELDIR%%/plugins/filters/config_default.php >X%%SQUIRRELDIR%%/plugins/filters/filters.php >X%%SQUIRRELDIR%%/plugins/filters/index.php >X%%SQUIRRELDIR%%/plugins/filters/options.php >X%%SQUIRRELDIR%%/plugins/filters/setup.php >X%%SQUIRRELDIR%%/plugins/filters/spamoptions.php >X%%SQUIRRELDIR%%/plugins/fortune/config_default.php >X%%SQUIRRELDIR%%/plugins/fortune/functions.php >X%%SQUIRRELDIR%%/plugins/fortune/index.php >X%%SQUIRRELDIR%%/plugins/fortune/setup.php >X%%SQUIRRELDIR%%/plugins/index.php >X%%SQUIRRELDIR%%/plugins/info/functions.php >X%%SQUIRRELDIR%%/plugins/info/index.php >X%%SQUIRRELDIR%%/plugins/info/options.php >X%%SQUIRRELDIR%%/plugins/info/setup.php >X%%SQUIRRELDIR%%/plugins/listcommands/functions.php >X%%SQUIRRELDIR%%/plugins/listcommands/index.php >X%%SQUIRRELDIR%%/plugins/listcommands/mailout.php >X%%SQUIRRELDIR%%/plugins/listcommands/setup.php >X%%SQUIRRELDIR%%/plugins/mail_fetch/class.POP3.php >X%%SQUIRRELDIR%%/plugins/mail_fetch/config_sample.php >X%%SQUIRRELDIR%%/plugins/mail_fetch/fetch.php >X%%SQUIRRELDIR%%/plugins/mail_fetch/functions.php >X%%SQUIRRELDIR%%/plugins/mail_fetch/index.php >X%%SQUIRRELDIR%%/plugins/mail_fetch/options.php >X%%SQUIRRELDIR%%/plugins/mail_fetch/setup.php >X%%SQUIRRELDIR%%/plugins/make_archive.pl >X%%SQUIRRELDIR%%/plugins/message_details/index.php >X%%SQUIRRELDIR%%/plugins/message_details/message_details_bottom.php >X%%SQUIRRELDIR%%/plugins/message_details/message_details_main.php >X%%SQUIRRELDIR%%/plugins/message_details/message_details_top.php >X%%SQUIRRELDIR%%/plugins/message_details/setup.php >X%%SQUIRRELDIR%%/plugins/newmail/COPYRIGHTS >X%%SQUIRRELDIR%%/plugins/newmail/config_default.php >X%%SQUIRRELDIR%%/plugins/newmail/config_sample.php >X%%SQUIRRELDIR%%/plugins/newmail/functions.php >X%%SQUIRRELDIR%%/plugins/newmail/index.php >X%%SQUIRRELDIR%%/plugins/newmail/loadfile.php >X%%SQUIRRELDIR%%/plugins/newmail/media/austin_mail.mp3 >X%%SQUIRRELDIR%%/plugins/newmail/media/austin_mail.swf >X%%SQUIRRELDIR%%/plugins/newmail/media/austin_mail.wav >X%%SQUIRRELDIR%%/plugins/newmail/media/got_a_message.mp3 >X%%SQUIRRELDIR%%/plugins/newmail/media/got_a_message.swf >X%%SQUIRRELDIR%%/plugins/newmail/media/got_a_message.wav >X%%SQUIRRELDIR%%/plugins/newmail/media/index.php >X%%SQUIRRELDIR%%/plugins/newmail/media/monty_message.mp3 >X%%SQUIRRELDIR%%/plugins/newmail/media/monty_message.swf >X%%SQUIRRELDIR%%/plugins/newmail/media/monty_message.wav >X%%SQUIRRELDIR%%/plugins/newmail/media/notify.mp3 >X%%SQUIRRELDIR%%/plugins/newmail/media/notify.swf >X%%SQUIRRELDIR%%/plugins/newmail/media/notify.wav >X%%SQUIRRELDIR%%/plugins/newmail/newmail.php >X%%SQUIRRELDIR%%/plugins/newmail/newmail_opt.php >X%%SQUIRRELDIR%%/plugins/newmail/setup.php >X%%SQUIRRELDIR%%/plugins/newmail/sounds/FanFair.wav >X%%SQUIRRELDIR%%/plugins/newmail/sounds/Friends.wav >X%%SQUIRRELDIR%%/plugins/newmail/sounds/MontyPython.wav >X%%SQUIRRELDIR%%/plugins/newmail/sounds/Notify.wav >X%%SQUIRRELDIR%%/plugins/newmail/sounds/index.php >X%%SQUIRRELDIR%%/plugins/newmail/testsound.php >X%%SQUIRRELDIR%%/plugins/sent_subfolders/index.php >X%%SQUIRRELDIR%%/plugins/sent_subfolders/setup.php >X%%SQUIRRELDIR%%/plugins/spamcop/functions.php >X%%SQUIRRELDIR%%/plugins/spamcop/index.php >X%%SQUIRRELDIR%%/plugins/spamcop/options.php >X%%SQUIRRELDIR%%/plugins/spamcop/setup.php >X%%SQUIRRELDIR%%/plugins/spamcop/spamcop.php >X%%SQUIRRELDIR%%/plugins/squirrelspell/index.php >X%%SQUIRRELDIR%%/plugins/squirrelspell/js/WHATISTHIS >X%%SQUIRRELDIR%%/plugins/squirrelspell/js/check_me.js >X%%SQUIRRELDIR%%/plugins/squirrelspell/js/crypto_settings.js >X%%SQUIRRELDIR%%/plugins/squirrelspell/js/decrypt_error.js >X%%SQUIRRELDIR%%/plugins/squirrelspell/js/index.php >X%%SQUIRRELDIR%%/plugins/squirrelspell/js/init.js >X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/.htaccess >X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/WHATISTHIS >X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/check_me.mod >X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/crypto.mod >X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/crypto_badkey.mod >X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/edit_dic.mod >X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/enc_setup.mod >X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/forget_me.mod >X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/forget_me_not.mod >X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/index.php >X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/init.mod >X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/lang_change.mod >X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/lang_setup.mod >X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/options_main.mod >X%%SQUIRRELDIR%%/plugins/squirrelspell/setup.php >X%%SQUIRRELDIR%%/plugins/squirrelspell/sqspell_config.php >X%%SQUIRRELDIR%%/plugins/squirrelspell/sqspell_functions.php >X%%SQUIRRELDIR%%/plugins/squirrelspell/sqspell_interface.php >X%%SQUIRRELDIR%%/plugins/squirrelspell/sqspell_options.php >X%%SQUIRRELDIR%%/plugins/translate/config_default.php >X%%SQUIRRELDIR%%/plugins/translate/config_sample.php >X%%SQUIRRELDIR%%/plugins/translate/functions.php >X%%SQUIRRELDIR%%/plugins/translate/index.php >X%%SQUIRRELDIR%%/plugins/translate/options.php >X%%SQUIRRELDIR%%/plugins/translate/setup.php >X%%SQUIRRELDIR%%/po/compilepo >X%%SQUIRRELDIR%%/po/independent_strings.txt >X%%SQUIRRELDIR%%/po/index.php >X%%SQUIRRELDIR%%/po/mergepo >X%%SQUIRRELDIR%%/po/squirrelmail.pot >X%%SQUIRRELDIR%%/po/xgetpo >X%%SQUIRRELDIR%%/src/about.php >X%%SQUIRRELDIR%%/src/addrbook_popup.php >X%%SQUIRRELDIR%%/src/addrbook_search.php >X%%SQUIRRELDIR%%/src/addrbook_search_html.php >X%%SQUIRRELDIR%%/src/addressbook.php >X%%SQUIRRELDIR%%/src/compose.php >X%%SQUIRRELDIR%%/src/configtest.php >X%%SQUIRRELDIR%%/src/delete_message.php >X%%SQUIRRELDIR%%/src/download.php >X%%SQUIRRELDIR%%/src/empty_trash.php >X%%SQUIRRELDIR%%/src/folders.php >X%%SQUIRRELDIR%%/src/help.php >X%%SQUIRRELDIR%%/src/image.php >X%%SQUIRRELDIR%%/src/index.php >X%%SQUIRRELDIR%%/src/left_main.php >X%%SQUIRRELDIR%%/src/login.php >X%%SQUIRRELDIR%%/src/mailto.php >X%%SQUIRRELDIR%%/src/options.php >X%%SQUIRRELDIR%%/src/options_highlight.php >X%%SQUIRRELDIR%%/src/options_identities.php >X%%SQUIRRELDIR%%/src/options_order.php >X%%SQUIRRELDIR%%/src/printer_friendly_bottom.php >X%%SQUIRRELDIR%%/src/printer_friendly_main.php >X%%SQUIRRELDIR%%/src/printer_friendly_top.php >X%%SQUIRRELDIR%%/src/read_body.php >X%%SQUIRRELDIR%%/src/redirect.php >X%%SQUIRRELDIR%%/src/right_main.php >X%%SQUIRRELDIR%%/src/search.php >X%%SQUIRRELDIR%%/src/signout.php >X%%SQUIRRELDIR%%/src/style.php >X%%SQUIRRELDIR%%/src/vcard.php >X%%SQUIRRELDIR%%/src/view_header.php >X%%SQUIRRELDIR%%/src/view_html.php >X%%SQUIRRELDIR%%/src/view_text.php >X%%SQUIRRELDIR%%/src/webmail.php >X%%SQUIRRELDIR%%/templates/default/error_message.tpl >X%%SQUIRRELDIR%%/templates/default/footer.tpl >X%%SQUIRRELDIR%%/templates/default/index.php >X%%SQUIRRELDIR%%/templates/default/js/default.js >X%%SQUIRRELDIR%%/templates/default/js/index.php >X%%SQUIRRELDIR%%/templates/default/login.tpl >X%%SQUIRRELDIR%%/templates/default/message_list.tpl >X%%SQUIRRELDIR%%/templates/default/page_header.tpl >X%%SQUIRRELDIR%%/templates/default/paginator.tpl >X%%SQUIRRELDIR%%/templates/default/stylesheet.tpl >X%%SQUIRRELDIR%%/templates/index.php >X%%SQUIRRELDIR%%/templates/util_message_list.php >X%%SQUIRRELDIR%%/templates/util_paginator.php >X%%SQUIRRELDIR%%/themes/alien_glow.php >X%%SQUIRRELDIR%%/themes/black_bean_burrito_theme.php >X%%SQUIRRELDIR%%/themes/blue_grey_theme.php >X%%SQUIRRELDIR%%/themes/bluesnews_theme.php >X%%SQUIRRELDIR%%/themes/bluesome.php >X%%SQUIRRELDIR%%/themes/bluesteel_theme.php >X%%SQUIRRELDIR%%/themes/christmas.php >X%%SQUIRRELDIR%%/themes/css/comic-sans-08.css >X%%SQUIRRELDIR%%/themes/css/comic-sans-10.css >X%%SQUIRRELDIR%%/themes/css/comic-sans-12.css >X%%SQUIRRELDIR%%/themes/css/index.php >X%%SQUIRRELDIR%%/themes/css/sans-08.css >X%%SQUIRRELDIR%%/themes/css/sans-10.css >X%%SQUIRRELDIR%%/themes/css/sans-12.css >X%%SQUIRRELDIR%%/themes/css/serif-10.css >X%%SQUIRRELDIR%%/themes/css/serif-12.css >X%%SQUIRRELDIR%%/themes/css/tahoma-08.css >X%%SQUIRRELDIR%%/themes/css/tahoma-10.css >X%%SQUIRRELDIR%%/themes/css/tahoma-12.css >X%%SQUIRRELDIR%%/themes/css/verdana-08.css >X%%SQUIRRELDIR%%/themes/css/verdana-10.css >X%%SQUIRRELDIR%%/themes/css/verdana-12.css >X%%SQUIRRELDIR%%/themes/dark_green.php >X%%SQUIRRELDIR%%/themes/dark_grey_theme.php >X%%SQUIRRELDIR%%/themes/darkness.php >X%%SQUIRRELDIR%%/themes/deepocean2_theme.php >X%%SQUIRRELDIR%%/themes/deepocean_theme.php >X%%SQUIRRELDIR%%/themes/default_theme.php >X%%SQUIRRELDIR%%/themes/dompie_theme.php >X%%SQUIRRELDIR%%/themes/forest_theme.php >X%%SQUIRRELDIR%%/themes/greenhouse_effect.php >X%%SQUIRRELDIR%%/themes/high_contrast_theme.php >X%%SQUIRRELDIR%%/themes/ice_theme.php >X%%SQUIRRELDIR%%/themes/in_the_pink.php >X%%SQUIRRELDIR%%/themes/index.php >X%%SQUIRRELDIR%%/themes/kind_of_blue.php >X%%SQUIRRELDIR%%/themes/maize_theme.php >X%%SQUIRRELDIR%%/themes/methodical_theme.php >X%%SQUIRRELDIR%%/themes/midnight.php >X%%SQUIRRELDIR%%/themes/minimal_bw.php >X%%SQUIRRELDIR%%/themes/monostochastic.php >X%%SQUIRRELDIR%%/themes/netstyle_theme.php >X%%SQUIRRELDIR%%/themes/penguin.php >X%%SQUIRRELDIR%%/themes/plain_blue_theme.php >X%%SQUIRRELDIR%%/themes/purple_theme.php >X%%SQUIRRELDIR%%/themes/random.php >X%%SQUIRRELDIR%%/themes/redmond.php >X%%SQUIRRELDIR%%/themes/sandstorm_theme.php >X%%SQUIRRELDIR%%/themes/seaspray_theme.php >X%%SQUIRRELDIR%%/themes/servery_theme.php >X%%SQUIRRELDIR%%/themes/shades_of_grey.php >X%%SQUIRRELDIR%%/themes/silver_steel_theme.php >X%%SQUIRRELDIR%%/themes/simple_green2.php >X%%SQUIRRELDIR%%/themes/simple_green_theme.php >X%%SQUIRRELDIR%%/themes/simple_purple.php >X%%SQUIRRELDIR%%/themes/slashdot_theme.php >X%%SQUIRRELDIR%%/themes/spice_of_life.php >X%%SQUIRRELDIR%%/themes/spice_of_life_dark.php >X%%SQUIRRELDIR%%/themes/spice_of_life_lite.php >X%%SQUIRRELDIR%%/themes/wood_theme.php >X@dirrmtry etc/periodic/daily >X@dirrmtry etc/periodic >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/abook_take >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/administrator >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/bug_report >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/calendar >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/change_password >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/filters/bulkquery >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/filters >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/fortune >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/info >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/listcommands >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/mail_fetch >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/newmail >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/spamcop >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/squirrelspell >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins/translate >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/plugins >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/Development >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/ReleaseNotes/1.5 >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/ReleaseNotes/1.4 >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/ReleaseNotes/1.3 >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/ReleaseNotes/1.2 >X%%PORTDOCS%%@dirrm %%DOCSDIR%%/ReleaseNotes >X%%PORTDOCS%%@dirrm %%DOCSDIR%% >X@dirrm %%SQUIRRELDIR%%/themes/css >X@dirrm %%SQUIRRELDIR%%/themes >X@dirrm %%SQUIRRELDIR%%/templates/default/js >X@dirrm %%SQUIRRELDIR%%/templates/default >X@dirrm %%SQUIRRELDIR%%/templates >X@dirrm %%SQUIRRELDIR%%/src >X@dirrm %%SQUIRRELDIR%%/po >X@dirrm %%SQUIRRELDIR%%/plugins/translate >X@dirrm %%SQUIRRELDIR%%/plugins/squirrelspell/modules >X@dirrm %%SQUIRRELDIR%%/plugins/squirrelspell/js >X@dirrm %%SQUIRRELDIR%%/plugins/squirrelspell >X@dirrm %%SQUIRRELDIR%%/plugins/spamcop >X@dirrm %%SQUIRRELDIR%%/plugins/sent_subfolders >X@dirrm %%SQUIRRELDIR%%/plugins/newmail/sounds >X@dirrm %%SQUIRRELDIR%%/plugins/newmail/media >X@dirrm %%SQUIRRELDIR%%/plugins/newmail >X@dirrm %%SQUIRRELDIR%%/plugins/message_details >X@dirrm %%SQUIRRELDIR%%/plugins/mail_fetch >X@dirrm %%SQUIRRELDIR%%/plugins/listcommands >X@dirrm %%SQUIRRELDIR%%/plugins/info >X@dirrm %%SQUIRRELDIR%%/plugins/fortune >X@dirrm %%SQUIRRELDIR%%/plugins/filters/bulkquery >X@dirrm %%SQUIRRELDIR%%/plugins/filters >X@dirrm %%SQUIRRELDIR%%/plugins/change_password/backend >X@dirrm %%SQUIRRELDIR%%/plugins/change_password >X@dirrm %%SQUIRRELDIR%%/plugins/calendar >X@dirrm %%SQUIRRELDIR%%/plugins/bug_report >X@dirrm %%SQUIRRELDIR%%/plugins/administrator >X@dirrm %%SQUIRRELDIR%%/plugins/abook_take >X@dirrmtry %%SQUIRRELDIR%%/plugins >X@dirrm %%SQUIRRELDIR%%/locale/zh_TW/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/zh_TW >X@dirrm %%SQUIRRELDIR%%/locale/zh_CN/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/zh_CN >X@dirrm %%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/vi_VN >X@dirrm %%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/uk_UA >X@dirrm %%SQUIRRELDIR%%/locale/ug/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/ug >X@dirrm %%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/tr_TR >X@dirrm %%SQUIRRELDIR%%/locale/tl_PH/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/tl_PH >X@dirrm %%SQUIRRELDIR%%/locale/th_TH/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/th_TH >X@dirrm %%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/sv_SE >X@dirrm %%SQUIRRELDIR%%/locale/sr_YU/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/sr_YU >X@dirrm %%SQUIRRELDIR%%/locale/sl_SI/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/sl_SI >X@dirrm %%SQUIRRELDIR%%/locale/sk_SK/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/sk_SK >X@dirrm %%SQUIRRELDIR%%/locale/ru_UA/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/ru_UA >X@dirrm %%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/ru_RU >X@dirrm %%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/ro_RO >X@dirrm %%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/pt_PT >X@dirrm %%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/pt_BR >X@dirrm %%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/pl_PL >X@dirrm %%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/nn_NO >X@dirrm %%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/nl_NL >X@dirrm %%SQUIRRELDIR%%/locale/nb_NO/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/nb_NO >X@dirrm %%SQUIRRELDIR%%/locale/ms_MY/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/ms_MY >X@dirrm %%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/lt_LT >X@dirrm %%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/ko_KR >X@dirrm %%SQUIRRELDIR%%/locale/ka/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/ka >X@dirrm %%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/ja_JP >X@dirrm %%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/it_IT >X@dirrm %%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/is_IS >X@dirrm %%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/id_ID >X@dirrm %%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/hu_HU >X@dirrm %%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/hr_HR >X@dirrm %%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/he_IL >X@dirrm %%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/fr_FR >X@dirrm %%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/fo_FO >X@dirrm %%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/fi_FI >X@dirrm %%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/fa_IR >X@dirrm %%SQUIRRELDIR%%/locale/eu_ES/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/eu_ES >X@dirrm %%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/et_EE >X@dirrm %%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/es_ES >X@dirrm %%SQUIRRELDIR%%/locale/en_GB/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/en_GB >X@dirrm %%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/el_GR >X@dirrm %%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/de_DE >X@dirrm %%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/da_DK >X@dirrm %%SQUIRRELDIR%%/locale/cy_GB/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/cy_GB >X@dirrm %%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/cs_CZ >X@dirrm %%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/ca_ES >X@dirrm %%SQUIRRELDIR%%/locale/bn_IN/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/bn_IN >X@dirrm %%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/bg_BG >X@dirrm %%SQUIRRELDIR%%/locale/ar/LC_MESSAGES >X@dirrm %%SQUIRRELDIR%%/locale/ar >X@dirrm %%SQUIRRELDIR%%/locale >X@dirrm %%SQUIRRELDIR%%/include/timezones >X@dirrm %%SQUIRRELDIR%%/include/options >X@dirrm %%SQUIRRELDIR%%/include >X@dirrm %%SQUIRRELDIR%%/images/themes/xp >X@dirrm %%SQUIRRELDIR%%/images/themes/none >X@dirrm %%SQUIRRELDIR%%/images/themes/default >X@dirrm %%SQUIRRELDIR%%/images/themes >X@dirrm %%SQUIRRELDIR%%/images >X@dirrm %%SQUIRRELDIR%%/help/zh_CN >X@dirrm %%SQUIRRELDIR%%/help/th_TH >X@dirrm %%SQUIRRELDIR%%/help/sv_SE >X@dirrm %%SQUIRRELDIR%%/help/sr_YU >X@dirrm %%SQUIRRELDIR%%/help/sl_SI >X@dirrm %%SQUIRRELDIR%%/help/sk_SK >X@dirrm %%SQUIRRELDIR%%/help/ru_RU >X@dirrm %%SQUIRRELDIR%%/help/pt_PT >X@dirrm %%SQUIRRELDIR%%/help/pt_BR >X@dirrm %%SQUIRRELDIR%%/help/pl_PL >X@dirrm %%SQUIRRELDIR%%/help/nl_NL >X@dirrm %%SQUIRRELDIR%%/help/lt_LT >X@dirrm %%SQUIRRELDIR%%/help/ko_KR >X@dirrm %%SQUIRRELDIR%%/help/ja_JP >X@dirrm %%SQUIRRELDIR%%/help/it_IT >X@dirrm %%SQUIRRELDIR%%/help/id_ID >X@dirrm %%SQUIRRELDIR%%/help/fr_FR >X@dirrm %%SQUIRRELDIR%%/help/fi_FI >X@dirrm %%SQUIRRELDIR%%/help/es_ES >X@dirrm %%SQUIRRELDIR%%/help/en_US >X@dirrm %%SQUIRRELDIR%%/help/en_GB >X@dirrm %%SQUIRRELDIR%%/help/de_DE >X@dirrm %%SQUIRRELDIR%%/help/da_DK >X@dirrm %%SQUIRRELDIR%%/help/cy_GB >X@dirrm %%SQUIRRELDIR%%/help/cs_CZ >X@dirrm %%SQUIRRELDIR%%/help/ca_ES >X@dirrm %%SQUIRRELDIR%%/help/bg_BG >X@dirrm %%SQUIRRELDIR%%/help >X@dirrm %%SQUIRRELDIR%%/functions/htmlentities >X@dirrm %%SQUIRRELDIR%%/functions/encode >X@dirrm %%SQUIRRELDIR%%/functions/decode >X@dirrm %%SQUIRRELDIR%%/functions >X@dirrmtry %%SQUIRRELDIR%%/config >X@dirrm %%SQUIRRELDIR%%/class/deliver >X@dirrm %%SQUIRRELDIR%%/class/mime >X@dirrm %%SQUIRRELDIR%%/class/template >X@dirrm %%SQUIRRELDIR%%/class/helper >X@dirrm %%SQUIRRELDIR%%/class/l10n >X@dirrm %%SQUIRRELDIR%%/class >X@dirrmtry %%SQUIRRELDIR%% >END-of-squirrelmail-devel/pkg-plist >exit
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 94606
: 63418