diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-01-08 23:03:14 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-01-08 23:03:14 +0000 |
commit | 6b5a7815a16433fd3a90314d53b3b7804adacce5 (patch) | |
tree | 4cc208513a828af8539cedc0515cfc0c4353368d /mail/squirreloutlook | |
parent | f0a889f6c8d960f7d0d5e8ac84b28f730afc557d (diff) | |
download | ports-6b5a7815a16433fd3a90314d53b3b7804adacce5.tar.gz ports-6b5a7815a16433fd3a90314d53b3b7804adacce5.zip |
Notes
Diffstat (limited to 'mail/squirreloutlook')
-rw-r--r-- | mail/squirreloutlook/Makefile | 103 | ||||
-rw-r--r-- | mail/squirreloutlook/distinfo | 6 | ||||
-rw-r--r-- | mail/squirreloutlook/files/111.clean-squirrelmail | 69 | ||||
-rw-r--r-- | mail/squirreloutlook/files/patch-config-config_default.php | 20 | ||||
-rw-r--r-- | mail/squirreloutlook/files/pkg-deinstall.in | 43 | ||||
-rw-r--r-- | mail/squirreloutlook/files/pkg-install.in | 57 | ||||
-rw-r--r-- | mail/squirreloutlook/files/pkg-message.in | 18 | ||||
-rw-r--r-- | mail/squirreloutlook/pkg-descr | 12 | ||||
-rw-r--r-- | mail/squirreloutlook/pkg-plist | 3302 |
9 files changed, 3630 insertions, 0 deletions
diff --git a/mail/squirreloutlook/Makefile b/mail/squirreloutlook/Makefile new file mode 100644 index 000000000000..9ba1127c7ca7 --- /dev/null +++ b/mail/squirreloutlook/Makefile @@ -0,0 +1,103 @@ +# New ports collection makefile for: squirrelmailoutlook +# Date created: 28 December 2006 +# Whom: Simon Dick <simond@irrelevant.org> +# +# $FreeBSD$ +# + +PORTNAME= squirreloutlook +PORTVERSION= 1.0.3 +CATEGORIES= mail www +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} \ + squirrelmail +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ + all_locales-1.5.1-20060409${EXTRACT_SUFX} +DIST_SUBDIR= ${PORTNAME} + +MAINTAINER= freebsd@rootxs.org +COMMENT= A webmail system which accesses mail over IMAP + +USE_PHP= session mhash gettext mbstring pcre openssl xml +WANT_PHP_WEB= yes +USE_GETTEXT= yes + +.ifdef WITH_DATABASE +RUN_DEPENDS+= ${PREFIX}/share/pear/DB.php:${PORTSDIR}/databases/pear-DB +.endif + +.ifdef WITH_LDAP +USE_PHP+= ldap +.endif + +SQUIRRELDIR= ${PREFIX}/www/${PORTNAME} + +PLIST_SUB= PORTVERSION=${PORTVERSION} \ + SQUIRRELDIR="${SQUIRRELDIR:S,^${PREFIX}/,,}" + +SUB_FILES= pkg-message pkg-install pkg-deinstall +SUB_LIST= SQUIRRELDIR=${SQUIRRELDIR} + +PORTDOCS= * + +pre-everything:: + @${ECHO_CMD} "Use WITH_LDAP to ensure PHP LDAP support is installed" + @${ECHO_CMD} "Use WITH_DATABASE to ensure PEAR framework for database support is installed" + @${ECHO_CMD} " (note that this does not install the database specific PEAR support, e.g. MySQL)" + @${ECHO_CMD} + +post-patch: +.ifndef PATCH_DEBUG + @${RM} -f ${WRKSRC}/config/config_default.php.orig ${WRKSRC}/functions/global.php.orig +.endif + @${REINPLACE_CMD} -e 's|ispell|${LOCALBASE}/bin/ispell|g' \ + ${WRKSRC}/plugins/squirrelspell/sqspell_config.php + @${RM} ${WRKSRC}/plugins/squirrelspell/sqspell_config.php.bak + +# 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}.txt + @${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 + @${CP} -r ${WRKSRC}/../locale ${WRKSRC} + @${CP} -r ${WRKSRC}/../images ${WRKSRC} + @${CP} -r ${WRKSRC}/../help ${WRKSRC} + +pre-install: + @${ECHO} "Your umask should be lax while installing this. Like, 022 or something." + @${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL + +do-install: + ${MKDIR} ${PREFIX}/etc/periodic/daily + ${INSTALL_SCRIPT} ${FILESDIR}/111.clean-squirrelmail ${PREFIX}/etc/periodic/daily + ${MKDIR} ${SQUIRRELDIR} + @${CP} -pv ${WRKSRC}/index.php ${SQUIRRELDIR} + @${CP} -pv ${WRKSRC}/configure ${SQUIRRELDIR} +.for DIR in class config data functions help images include locale plugins po src themes + @${CP} -rpv ${WRKSRC}/${DIR} ${SQUIRRELDIR} +.endfor + ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${SQUIRRELDIR}/data +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + @${CP} -Rv ${WRKSRC}/doc/* ${DOCSDIR} +.endif + +post-install: + @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> diff --git a/mail/squirreloutlook/distinfo b/mail/squirreloutlook/distinfo new file mode 100644 index 000000000000..eb8479b95c57 --- /dev/null +++ b/mail/squirreloutlook/distinfo @@ -0,0 +1,6 @@ +MD5 (squirreloutlook/squirreloutlook-1.0.3.tar.gz) = e0b56f1e79a5609da1da6696784f17f0 +SHA256 (squirreloutlook/squirreloutlook-1.0.3.tar.gz) = f584797b2f0f72fd692d675c4c5301f60ee9a0f9f2d7e3a1ea6a55d999abaf3a +SIZE (squirreloutlook/squirreloutlook-1.0.3.tar.gz) = 2007632 +MD5 (squirreloutlook/all_locales-1.5.1-20060409.tar.gz) = 32946a396a96c3e2c6619d07f66c2743 +SHA256 (squirreloutlook/all_locales-1.5.1-20060409.tar.gz) = c9df273a8777a14b0758d2be7fe532627496d830fb866c164a6e68cc0ef2879d +SIZE (squirreloutlook/all_locales-1.5.1-20060409.tar.gz) = 4046326 diff --git a/mail/squirreloutlook/files/111.clean-squirrelmail b/mail/squirreloutlook/files/111.clean-squirrelmail new file mode 100644 index 000000000000..de620bd2e0a4 --- /dev/null +++ b/mail/squirreloutlook/files/111.clean-squirrelmail @@ -0,0 +1,69 @@ +#!/bin/sh +# +# $FreeBSD: /tmp/pcvs/ports/mail/squirreloutlook/files/Attic/111.clean-squirrelmail,v 1.1 2007-01-08 23:03:14 miwi Exp $ +# +# 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 SquirrelOutlook 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 --git a/mail/squirreloutlook/files/patch-config-config_default.php b/mail/squirreloutlook/files/patch-config-config_default.php new file mode 100644 index 000000000000..cd26a58feded --- /dev/null +++ b/mail/squirreloutlook/files/patch-config-config_default.php @@ -0,0 +1,20 @@ +--- config/config_default.php.orig Wed Jun 2 10:49:41 2004 ++++ config/config_default.php Wed Jun 2 10:50:21 2004 +@@ -442,7 +442,7 @@ + * $data_dir = SM_PATH . 'data/'; + * @global string $data_dir + */ +-$data_dir = SM_PATH . 'data/'; ++$data_dir = '/var/spool/squirrelmail/pref/'; + + /** + * Attachments directory +@@ -460,7 +460,7 @@ + * + It should probably be another directory than data_dir. + * @global string $attachment_dir + */ +-$attachment_dir = $data_dir; ++$attachment_dir = '/var/spool/squirrelmail/attach/'; + + /** + * Hash level used for data directory. diff --git a/mail/squirreloutlook/files/pkg-deinstall.in b/mail/squirreloutlook/files/pkg-deinstall.in new file mode 100644 index 000000000000..40360fd7012f --- /dev/null +++ b/mail/squirreloutlook/files/pkg-deinstall.in @@ -0,0 +1,43 @@ +#!/bin/sh +# +# $FreeBSD: /tmp/pcvs/ports/mail/squirreloutlook/files/Attic/pkg-deinstall.in,v 1.1 2007-01-08 23:03:14 miwi Exp $ +# + +#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 SquirrelOutlook" + echo "you should remove the /var/spool/squirrelmail" + echo "directory with:" + echo + echo " rm -rf /var/spool/squirrelmail" + fi + ;; + +esac diff --git a/mail/squirreloutlook/files/pkg-install.in b/mail/squirreloutlook/files/pkg-install.in new file mode 100644 index 000000000000..ca027a281c88 --- /dev/null +++ b/mail/squirreloutlook/files/pkg-install.in @@ -0,0 +1,57 @@ +#!/bin/sh +# +# $FreeBSD: /tmp/pcvs/ports/mail/squirreloutlook/files/Attic/pkg-install.in,v 1.1 2007-01-08 23:03:14 miwi Exp $ +# + +PKG_BATCH=${BATCH:=NO} +PKG_PREFIX=${PKG_PREFIX:=/usr/local} + +SQUIRRELDIR=%%SQUIRRELDIR%% + +case $2 in +PRE-INSTALL) + USER=www + GROUP=${USER} + UID=80 + GID=${UID} + + if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then + if pw groupadd ${GROUP} -g ${GID}; then + echo "Added group \"${GROUP}\"." + else + echo "Adding group \"${GROUP}\" failed..." + exit 1 + fi + fi + + if ! pw usershow "${USER}" 2>/dev/null 1>&2; then + if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ + -s "/sbin/nologin" -d "/nonexistent" \ + -c "World Wide Web Owner"; \ + then + echo "Added user \"${USER}\"." + else + echo "Adding user \"${USER}\" failed..." + exit 1 + fi + fi + + 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 "" + 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 --git a/mail/squirreloutlook/files/pkg-message.in b/mail/squirreloutlook/files/pkg-message.in new file mode 100644 index 000000000000..2cb76b2bbc47 --- /dev/null +++ b/mail/squirreloutlook/files/pkg-message.in @@ -0,0 +1,18 @@ + +You now need to add an alias to apache's httpd.conf pointing to +%%SQUIRRELDIR%% in order to access SquirrelOutlook from +your web browser, or create a VirtualHost with DocumentRoot set +to that directory. + +For SquirrelOutlook to work properly you will need to make sure the +following option is set in your php.ini file: +file_uploads = On + +If you have problems with SquirrelOutlook saying "you must login" after +you just have, the following php.ini option may help: +session.auto_start = 1 + +In order to do your administrative configuration you need to +cd %%SQUIRRELDIR%% && ./configure +SquirrelOutlook will not work until this has been done. + diff --git a/mail/squirreloutlook/pkg-descr b/mail/squirreloutlook/pkg-descr new file mode 100644 index 000000000000..b0bbee3f1dc4 --- /dev/null +++ b/mail/squirreloutlook/pkg-descr @@ -0,0 +1,12 @@ +SquirrelOutlook is a standards-based webmail package written in PHP4. It +includes built-in pure PHP support for the IMAP and SMTP protocols, and +all pages render in pure HTML 4.0 (with no Javascript) for maximum +compatibility across browsers. It has very few requirements and is very +easy to configure and install. SquirrelOutlook has a all the functionality +you would want from an email client, including strong MIME support, +address books, and folder manipulation + +WWW: http://sourceforge.net/projects/squirreloutlook/ + +- Dennis Cabooter +freebsd@rootxs.org diff --git a/mail/squirreloutlook/pkg-plist b/mail/squirreloutlook/pkg-plist new file mode 100644 index 000000000000..bf39dc7b5f0f --- /dev/null +++ b/mail/squirreloutlook/pkg-plist @@ -0,0 +1,3302 @@ +etc/periodic/daily/111.clean-squirrelmail +%%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/helper/index.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/_config.php +%%SQUIRRELDIR%%/config/conf.pl +%%SQUIRRELDIR%%/config/config.php +%%SQUIRRELDIR%%/config/config.php_dist +%%SQUIRRELDIR%%/config/config_default.php +%%SQUIRRELDIR%%/config/config_local.php +%%SQUIRRELDIR%%/config/config_ok.php +%%SQUIRRELDIR%%/config/index.php +%%SQUIRRELDIR%%/configure +%%SQUIRRELDIR%%/data/.htaccess +%%SQUIRRELDIR%%/data/.pref +%%SQUIRRELDIR%%/data/cajardim.abook +%%SQUIRRELDIR%%/data/cajardim.pref +%%SQUIRRELDIR%%/data/default_pref +%%SQUIRRELDIR%%/data/index.php +%%SQUIRRELDIR%%/data/redeintegrada.abook +%%SQUIRRELDIR%%/functions/abook_database.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/decode/cp1250.php +%%SQUIRRELDIR%%/functions/decode/cp1251.php +%%SQUIRRELDIR%%/functions/decode/cp1252.php +%%SQUIRRELDIR%%/functions/decode/cp1253.php +%%SQUIRRELDIR%%/functions/decode/cp1254.php +%%SQUIRRELDIR%%/functions/decode/cp1255.php +%%SQUIRRELDIR%%/functions/decode/cp1256.php +%%SQUIRRELDIR%%/functions/decode/cp1257.php +%%SQUIRRELDIR%%/functions/decode/cp1258.php +%%SQUIRRELDIR%%/functions/decode/cp855.php +%%SQUIRRELDIR%%/functions/decode/cp866.php +%%SQUIRRELDIR%%/functions/decode/index.php +%%SQUIRRELDIR%%/functions/decode/iso_8859_1.php +%%SQUIRRELDIR%%/functions/decode/iso_8859_10.php +%%SQUIRRELDIR%%/functions/decode/iso_8859_11.php +%%SQUIRRELDIR%%/functions/decode/iso_8859_13.php +%%SQUIRRELDIR%%/functions/decode/iso_8859_14.php +%%SQUIRRELDIR%%/functions/decode/iso_8859_15.php +%%SQUIRRELDIR%%/functions/decode/iso_8859_16.php +%%SQUIRRELDIR%%/functions/decode/iso_8859_2.php +%%SQUIRRELDIR%%/functions/decode/iso_8859_3.php +%%SQUIRRELDIR%%/functions/decode/iso_8859_4.php +%%SQUIRRELDIR%%/functions/decode/iso_8859_5.php +%%SQUIRRELDIR%%/functions/decode/iso_8859_6.php +%%SQUIRRELDIR%%/functions/decode/iso_8859_7.php +%%SQUIRRELDIR%%/functions/decode/iso_8859_8.php +%%SQUIRRELDIR%%/functions/decode/iso_8859_9.php +%%SQUIRRELDIR%%/functions/decode/iso_ir_111.php +%%SQUIRRELDIR%%/functions/decode/koi8_r.php +%%SQUIRRELDIR%%/functions/decode/koi8_u.php +%%SQUIRRELDIR%%/functions/decode/ns_4551_1.php +%%SQUIRRELDIR%%/functions/decode/tis_620.php +%%SQUIRRELDIR%%/functions/decode/us_ascii.php +%%SQUIRRELDIR%%/functions/decode/utf_8.php +%%SQUIRRELDIR%%/functions/display_messages.php +%%SQUIRRELDIR%%/functions/encode/cp1251.php +%%SQUIRRELDIR%%/functions/encode/cp1255.php +%%SQUIRRELDIR%%/functions/encode/cp1256.php +%%SQUIRRELDIR%%/functions/encode/index.php +%%SQUIRRELDIR%%/functions/encode/iso_8859_1.php +%%SQUIRRELDIR%%/functions/encode/iso_8859_15.php +%%SQUIRRELDIR%%/functions/encode/iso_8859_2.php +%%SQUIRRELDIR%%/functions/encode/iso_8859_7.php +%%SQUIRRELDIR%%/functions/encode/iso_8859_9.php +%%SQUIRRELDIR%%/functions/encode/koi8_r.php +%%SQUIRRELDIR%%/functions/encode/koi8_u.php +%%SQUIRRELDIR%%/functions/encode/tis_620.php +%%SQUIRRELDIR%%/functions/encode/us_ascii.php +%%SQUIRRELDIR%%/functions/encode/utf_8.php +%%SQUIRRELDIR%%/functions/file_prefs.php +%%SQUIRRELDIR%%/functions/forms.php +%%SQUIRRELDIR%%/functions/gettext.php +%%SQUIRRELDIR%%/functions/global.php +%%SQUIRRELDIR%%/functions/html.php +%%SQUIRRELDIR%%/functions/i18n.php +%%SQUIRRELDIR%%/functions/identity.php +%%SQUIRRELDIR%%/functions/imap.php +%%SQUIRRELDIR%%/functions/imap_general.php +%%SQUIRRELDIR%%/functions/imap_mailbox.php +%%SQUIRRELDIR%%/functions/imap_messages.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/cy_GB/FAQ.hlp +%%SQUIRRELDIR%%/help/cy_GB/addresses.hlp +%%SQUIRRELDIR%%/help/cy_GB/basic.hlp +%%SQUIRRELDIR%%/help/cy_GB/compose.hlp +%%SQUIRRELDIR%%/help/cy_GB/folders.hlp +%%SQUIRRELDIR%%/help/cy_GB/main_folder.hlp +%%SQUIRRELDIR%%/help/cy_GB/options.hlp +%%SQUIRRELDIR%%/help/cy_GB/read_mail.hlp +%%SQUIRRELDIR%%/help/cy_GB/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_GB/FAQ.hlp +%%SQUIRRELDIR%%/help/en_GB/addresses.hlp +%%SQUIRRELDIR%%/help/en_GB/basic.hlp +%%SQUIRRELDIR%%/help/en_GB/compose.hlp +%%SQUIRRELDIR%%/help/en_GB/folders.hlp +%%SQUIRRELDIR%%/help/en_GB/main_folder.hlp +%%SQUIRRELDIR%%/help/en_GB/options.hlp +%%SQUIRRELDIR%%/help/en_GB/read_mail.hlp +%%SQUIRRELDIR%%/help/en_GB/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/basic.txt +%%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/options.txt +%%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/sk_SK/FAQ.hlp +%%SQUIRRELDIR%%/help/sk_SK/addresses.hlp +%%SQUIRRELDIR%%/help/sk_SK/basic.hlp +%%SQUIRRELDIR%%/help/sk_SK/compose.hlp +%%SQUIRRELDIR%%/help/sk_SK/folders.hlp +%%SQUIRRELDIR%%/help/sk_SK/main_folder.hlp +%%SQUIRRELDIR%%/help/sk_SK/options.hlp +%%SQUIRRELDIR%%/help/sk_SK/read_mail.hlp +%%SQUIRRELDIR%%/help/sk_SK/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%%/help/uk_UA/FAQ.hlp +%%SQUIRRELDIR%%/help/uk_UA/addresses.hlp +%%SQUIRRELDIR%%/help/uk_UA/basic.hlp +%%SQUIRRELDIR%%/help/uk_UA/compose.hlp +%%SQUIRRELDIR%%/help/uk_UA/folders.hlp +%%SQUIRRELDIR%%/help/uk_UA/main_folder.hlp +%%SQUIRRELDIR%%/help/uk_UA/options.hlp +%%SQUIRRELDIR%%/help/uk_UA/read_mail.hlp +%%SQUIRRELDIR%%/help/uk_UA/search.hlp +%%SQUIRRELDIR%%/help/zh_CN/FAQ.hlp +%%SQUIRRELDIR%%/help/zh_CN/addresses.hlp +%%SQUIRRELDIR%%/help/zh_CN/basic.hlp +%%SQUIRRELDIR%%/help/zh_CN/compose.hlp +%%SQUIRRELDIR%%/help/zh_CN/folders.hlp +%%SQUIRRELDIR%%/help/zh_CN/main_folder.hlp +%%SQUIRRELDIR%%/help/zh_CN/options.hlp +%%SQUIRRELDIR%%/help/zh_CN/read_mail.hlp +%%SQUIRRELDIR%%/help/zh_CN/search.hlp +%%SQUIRRELDIR%%/images/Thumbs.db +%%SQUIRRELDIR%%/images/bg/Thumbs.db +%%SQUIRRELDIR%%/images/bg/bg_folder.gif +%%SQUIRRELDIR%%/images/bg/bg_folder_title.gif +%%SQUIRRELDIR%%/images/bg/bg_header_init.gif +%%SQUIRRELDIR%%/images/bg/bg_header_sep.gif +%%SQUIRRELDIR%%/images/bg/bg_line1.gif +%%SQUIRRELDIR%%/images/bg/bg_line_other.gif +%%SQUIRRELDIR%%/images/bg/bg_login.png +%%SQUIRRELDIR%%/images/bg/bg_tb_header.gif +%%SQUIRRELDIR%%/images/bg/bg_tb_message.gif +%%SQUIRRELDIR%%/images/bg/bg_tb_sep.gif +%%SQUIRRELDIR%%/images/bg/bg_title_grad.gif +%%SQUIRRELDIR%%/images/blank.png +%%SQUIRRELDIR%%/images/delitem.png +%%SQUIRRELDIR%%/images/down_pointer.png +%%SQUIRRELDIR%%/images/draft.png +%%SQUIRRELDIR%%/images/folder.png +%%SQUIRRELDIR%%/images/icons/Thumbs.db +%%SQUIRRELDIR%%/images/icons/addresses.gif +%%SQUIRRELDIR%%/images/icons/attach.gif +%%SQUIRRELDIR%%/images/icons/calend_day.gif +%%SQUIRRELDIR%%/images/icons/calend_month.gif +%%SQUIRRELDIR%%/images/icons/calendar.gif +%%SQUIRRELDIR%%/images/icons/calendar_h.gif +%%SQUIRRELDIR%%/images/icons/catalog.gif +%%SQUIRRELDIR%%/images/icons/chpass.gif +%%SQUIRRELDIR%%/images/icons/compose.gif +%%SQUIRRELDIR%%/images/icons/config.gif +%%SQUIRRELDIR%%/images/icons/delete_header.gif +%%SQUIRRELDIR%%/images/icons/down_pointer.gif +%%SQUIRRELDIR%%/images/icons/draft.gif +%%SQUIRRELDIR%%/images/icons/error_1.gif +%%SQUIRRELDIR%%/images/icons/exit.gif +%%SQUIRRELDIR%%/images/icons/flag_1.gif +%%SQUIRRELDIR%%/images/icons/forward.gif +%%SQUIRRELDIR%%/images/icons/forward_header.gif +%%SQUIRRELDIR%%/images/icons/help.gif +%%SQUIRRELDIR%%/images/icons/inbox.gif +%%SQUIRRELDIR%%/images/icons/mail.gif +%%SQUIRRELDIR%%/images/icons/mais.gif +%%SQUIRRELDIR%%/images/icons/menos.gif +%%SQUIRRELDIR%%/images/icons/move_header.gif +%%SQUIRRELDIR%%/images/icons/not_read_header.gif +%%SQUIRRELDIR%%/images/icons/note.gif +%%SQUIRRELDIR%%/images/icons/notes_h.gif +%%SQUIRRELDIR%%/images/icons/options.gif +%%SQUIRRELDIR%%/images/icons/other.gif +%%SQUIRRELDIR%%/images/icons/print.gif +%%SQUIRRELDIR%%/images/icons/priority_down.gif +%%SQUIRRELDIR%%/images/icons/priority_up.gif +%%SQUIRRELDIR%%/images/icons/quota.gif +%%SQUIRRELDIR%%/images/icons/read_header.gif +%%SQUIRRELDIR%%/images/icons/reload.gif +%%SQUIRRELDIR%%/images/icons/reply.gif +%%SQUIRRELDIR%%/images/icons/reply_all.gif +%%SQUIRRELDIR%%/images/icons/search.gif +%%SQUIRRELDIR%%/images/icons/select_all.gif +%%SQUIRRELDIR%%/images/icons/sent.gif +%%SQUIRRELDIR%%/images/icons/sort_none.gif +%%SQUIRRELDIR%%/images/icons/title_grad.gif +%%SQUIRRELDIR%%/images/icons/todo.gif +%%SQUIRRELDIR%%/images/icons/todo_h.gif +%%SQUIRRELDIR%%/images/icons/trash.gif +%%SQUIRRELDIR%%/images/icons/up_pointer.gif +%%SQUIRRELDIR%%/images/inbox.png +%%SQUIRRELDIR%%/images/index.php +%%SQUIRRELDIR%%/images/logo.png +%%SQUIRRELDIR%%/images/minus.png +%%SQUIRRELDIR%%/images/plus.png +%%SQUIRRELDIR%%/images/redeintegrada.gif +%%SQUIRRELDIR%%/images/sec_remove_bn_IN.png +%%SQUIRRELDIR%%/images/sec_remove_cs_CZ.png +%%SQUIRRELDIR%%/images/sec_remove_da_DK.png +%%SQUIRRELDIR%%/images/sec_remove_de_DE.png +%%SQUIRRELDIR%%/images/sec_remove_el_GR.png +%%SQUIRRELDIR%%/images/sec_remove_eng.png +%%SQUIRRELDIR%%/images/sec_remove_es_ES.png +%%SQUIRRELDIR%%/images/sec_remove_et_EE.png +%%SQUIRRELDIR%%/images/sec_remove_fi_FI.png +%%SQUIRRELDIR%%/images/sec_remove_fo_FO.png +%%SQUIRRELDIR%%/images/sec_remove_fr_FR.png +%%SQUIRRELDIR%%/images/sec_remove_he_IL.png +%%SQUIRRELDIR%%/images/sec_remove_hr_HR.png +%%SQUIRRELDIR%%/images/sec_remove_hu_HU.png +%%SQUIRRELDIR%%/images/sec_remove_id_ID.png +%%SQUIRRELDIR%%/images/sec_remove_it_IT.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_nb_NO.png +%%SQUIRRELDIR%%/images/sec_remove_nl_NL.png +%%SQUIRRELDIR%%/images/sec_remove_nn_NO.png +%%SQUIRRELDIR%%/images/sec_remove_pt_BR.png +%%SQUIRRELDIR%%/images/sec_remove_pt_PT.png +%%SQUIRRELDIR%%/images/sec_remove_ru_RU.png +%%SQUIRRELDIR%%/images/sec_remove_sk_SK.png +%%SQUIRRELDIR%%/images/sec_remove_sl_SI.png +%%SQUIRRELDIR%%/images/sec_remove_sr_YU.png +%%SQUIRRELDIR%%/images/sec_remove_sv_SE.png +%%SQUIRRELDIR%%/images/sec_remove_tr_TR.png +%%SQUIRRELDIR%%/images/sec_remove_ug.png +%%SQUIRRELDIR%%/images/sec_remove_uk_UA.png +%%SQUIRRELDIR%%/images/senti.png +%%SQUIRRELDIR%%/images/sm_logo.png +%%SQUIRRELDIR%%/images/sm_logo1.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/README.locales +%%SQUIRRELDIR%%/locale/ar/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/ar/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/ar/setup.php +%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/bg_BG/setup.php +%%SQUIRRELDIR%%/locale/bn_IN/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/bn_IN/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/bn_IN/setup.php +%%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/ca_ES/setup.php +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/abook_import_export.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/abook_import_export.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/proon.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/proon.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vacation_local.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vacation_local.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/yelp.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/yelp.po +%%SQUIRRELDIR%%/locale/cs_CZ/setup.php +%%SQUIRRELDIR%%/locale/cy_GB/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/cy_GB/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/cy_GB/setup.php +%%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/da_DK/setup.php +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/abook_import_export.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/abook_import_export.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/calendar.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/calendar.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_sqlpass.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_sqlpass.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/empty_folders.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/empty_folders.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/expire.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/expire.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/ldapquery.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/ldapquery.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/limit_languages.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/limit_languages.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/login_alias.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/login_alias.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/naguser.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/naguser.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/newuser_wiz.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/newuser_wiz.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/reply_buttons.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/reply_buttons.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/restrict_senders.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/restrict_senders.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/select_language.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/select_language.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/serversidefilter.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/serversidefilter.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/show_ssl_link.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/show_ssl_link.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrel_logger.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrel_logger.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/templates.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/templates.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/unsafe_image_rules.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/unsafe_image_rules.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/vacation_local.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/vacation_local.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/verify_reply_to.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/verify_reply_to.po +%%SQUIRRELDIR%%/locale/de_DE/setup.php +%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/ldapquery.mo +%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/ldapquery.po +%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/el_GR/setup.php +%%SQUIRRELDIR%%/locale/en_GB/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/en_GB/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/en_GB/setup.php +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_sqlpass.mo +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_sqlpass.po +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/smallcal.mo +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/smallcal.po +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/unsafe_image_rules.mo +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/unsafe_image_rules.po +%%SQUIRRELDIR%%/locale/es_ES/setup.php +%%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/et_EE/setup.php +%%SQUIRRELDIR%%/locale/eu_ES/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/eu_ES/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/eu_ES/setup.php +%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/fa_IR/setup.php +%%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/fi_FI/setup.php +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/abook_import_export.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/abook_import_export.po +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/empty_folders.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/empty_folders.po +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/folder_settings.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/folder_settings.po +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/html_mail.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/html_mail.po +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/fo_FO/setup.php +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/calendar.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/calendar.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_sqlpass.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_sqlpass.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/empty_folders.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/empty_folders.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/spam_buttons.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/spam_buttons.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vacation_local.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vacation_local.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/yelp.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/yelp.po +%%SQUIRRELDIR%%/locale/fr_FR/setup.php +%%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/he_IL/setup.php +%%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/hr_HR/setup.php +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/hu_HU/setup.php +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/id_ID/setup.php +%%SQUIRRELDIR%%/locale/index.php +%%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/is_IS/setup.php +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/calendar.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/calendar.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/vacation_local.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/vacation_local.po +%%SQUIRRELDIR%%/locale/it_IT/setup.php +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/cookie_warning.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/cookie_warning.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/custom_charset.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/custom_charset.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/debugger.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/debugger.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/html_mail.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/html_mail.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/mini.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/mini.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/reply_buttons.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/reply_buttons.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/sasql.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/sasql.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/select_language.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/select_language.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/serversidefilter.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/serversidefilter.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/show_ssl_link.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/show_ssl_link.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/smallcal.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/smallcal.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/spam_buttons.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/spam_buttons.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrel_logger.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrel_logger.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/web_search.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/web_search.po +%%SQUIRRELDIR%%/locale/ja_JP/setup.php +%%SQUIRRELDIR%%/locale/ka/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/ka/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/ka/setup.php +%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/ko_KR/setup.php +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/abook_import_export.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/abook_import_export.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/calendar.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/calendar.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/change_sqlpass.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/change_sqlpass.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/compose_fix.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/compose_fix.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/cookie_warning.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/cookie_warning.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/custom_charset.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/custom_charset.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/debugger.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/debugger.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/empty_folders.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/empty_folders.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/html_mail.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/html_mail.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/ldapquery.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/ldapquery.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/limit_languages.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/limit_languages.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/login_alias.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/login_alias.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/mini.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/mini.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/naguser.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/naguser.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/qmailadmin_login.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/qmailadmin_login.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/reply_buttons.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/reply_buttons.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/restrict_senders.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/restrict_senders.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/sasql.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/sasql.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/select_language.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/select_language.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/serversidefilter.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/serversidefilter.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/show_ssl_link.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/show_ssl_link.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/smallcal.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/smallcal.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/spam_buttons.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/spam_buttons.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/squirrel_logger.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/squirrel_logger.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/templates.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/templates.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/unsafe_image_rules.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/unsafe_image_rules.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/vacation_local.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/vacation_local.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/verify_reply_to.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/verify_reply_to.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/yelp.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/yelp.po +%%SQUIRRELDIR%%/locale/lt_LT/setup.php +%%SQUIRRELDIR%%/locale/ms_MY/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/ms_MY/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/ms_MY/setup.php +%%SQUIRRELDIR%%/locale/nb_NO/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/nb_NO/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/nb_NO/setup.php +%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/calendar.mo +%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/calendar.po +%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/vacation_local.mo +%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/vacation_local.po +%%SQUIRRELDIR%%/locale/nl_NL/setup.php +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/abook_import_export.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/abook_import_export.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/calendar.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/calendar.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/change_sqlpass.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/change_sqlpass.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/compose_fix.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/compose_fix.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/cookie_warning.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/cookie_warning.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/custom_charset.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/custom_charset.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/debugger.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/debugger.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/empty_folders.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/empty_folders.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/expire.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/expire.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/folder_settings.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/folder_settings.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/html_mail.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/html_mail.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/ldapquery.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/ldapquery.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/limit_languages.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/limit_languages.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/login_alias.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/login_alias.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/mini.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/mini.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/multilogin.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/multilogin.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/naguser.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/naguser.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/proon.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/proon.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/qmailadmin_login.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/qmailadmin_login.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/reply_buttons.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/reply_buttons.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/restrict_senders.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/restrict_senders.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/sasql.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/sasql.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/select_language.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/select_language.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/serversidefilter.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/serversidefilter.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/show_ssl_link.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/show_ssl_link.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/smallcal.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/smallcal.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/spam_buttons.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/spam_buttons.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/squirrel_logger.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/squirrel_logger.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/templates.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/templates.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/unsafe_image_rules.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/unsafe_image_rules.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/vacation_local.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/vacation_local.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/verify_reply_to.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/verify_reply_to.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/web_search.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/web_search.po +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/yelp.mo +%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/yelp.po +%%SQUIRRELDIR%%/locale/nn_NO/setup.php +%%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/pl_PL/setup.php +%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/abook_import_export.mo +%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/abook_import_export.po +%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/notes.po +%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/unsafe_image_rules.mo +%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/unsafe_image_rules.po +%%SQUIRRELDIR%%/locale/pt_BR/setup.php +%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/unsafe_image_rules.mo +%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/unsafe_image_rules.po +%%SQUIRRELDIR%%/locale/pt_PT/setup.php +%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/ro_RO/setup.php +%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/custom_charset.mo +%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/custom_charset.po +%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/sasql.mo +%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/sasql.po +%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/serversidefilter.mo +%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/serversidefilter.po +%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/ru_RU/setup.php +%%SQUIRRELDIR%%/locale/ru_UA/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/ru_UA/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/ru_UA/setup.php +%%SQUIRRELDIR%%/locale/sk_SK/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/sk_SK/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/sk_SK/setup.php +%%SQUIRRELDIR%%/locale/sl_SI/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/sl_SI/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/sl_SI/setup.php +%%SQUIRRELDIR%%/locale/sr_YU/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/sr_YU/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/sr_YU/setup.php +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/abook_import_export.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/abook_import_export.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/change_sqlpass.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/change_sqlpass.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/compose_fix.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/compose_fix.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/cookie_warning.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/cookie_warning.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/custom_charset.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/custom_charset.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/debugger.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/debugger.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/empty_folders.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/empty_folders.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/html_mail.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/html_mail.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/limit_languages.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/limit_languages.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/login_alias.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/login_alias.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/mini.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/mini.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/multilogin.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/multilogin.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/naguser.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/naguser.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/qmailadmin_login.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/qmailadmin_login.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/reply_buttons.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/reply_buttons.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/restrict_senders.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/restrict_senders.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/sasql.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/sasql.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/select_language.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/select_language.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/serversidefilter.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/serversidefilter.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/show_ssl_link.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/show_ssl_link.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/smallcal.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/smallcal.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/spam_buttons.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/spam_buttons.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/squirrel_logger.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/squirrel_logger.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/templates.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/templates.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/unsafe_image_rules.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/unsafe_image_rules.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/vacation_local.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/vacation_local.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/verify_reply_to.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/verify_reply_to.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/web_search.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/web_search.po +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/yelp.mo +%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/yelp.po +%%SQUIRRELDIR%%/locale/sv_SE/setup.php +%%SQUIRRELDIR%%/locale/th_TH/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/th_TH/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/th_TH/setup.php +%%SQUIRRELDIR%%/locale/timezones.cfg +%%SQUIRRELDIR%%/locale/tl_PH/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/tl_PH/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/tl_PH/setup.php +%%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/tr_TR/setup.php +%%SQUIRRELDIR%%/locale/ug/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/ug/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/ug/setup.php +%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/custom_charset.mo +%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/custom_charset.po +%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/sasql.mo +%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/sasql.po +%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/serversidefilter.mo +%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/serversidefilter.po +%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/web_search.mo +%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/web_search.po +%%SQUIRRELDIR%%/locale/uk_UA/setup.php +%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/vi_VN/setup.php +%%SQUIRRELDIR%%/locale/zh_CN/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/zh_CN/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/zh_CN/setup.php +%%SQUIRRELDIR%%/locale/zh_TW/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/zh_TW/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/zh_TW/setup.php +%%SQUIRRELDIR%%/plugins/abook_backend_template/COPYING +%%SQUIRRELDIR%%/plugins/abook_backend_template/abook_class.php +%%SQUIRRELDIR%%/plugins/abook_backend_template/functions.php +%%SQUIRRELDIR%%/plugins/abook_backend_template/index.php +%%SQUIRRELDIR%%/plugins/abook_backend_template/patch/addressbook.php.diff +%%SQUIRRELDIR%%/plugins/abook_backend_template/po/abook_template.pot +%%SQUIRRELDIR%%/plugins/abook_backend_template/po/getpot +%%SQUIRRELDIR%%/plugins/abook_backend_template/po/mergepo +%%SQUIRRELDIR%%/plugins/abook_backend_template/setup.php +%%SQUIRRELDIR%%/plugins/abook_backend_template/version +%%SQUIRRELDIR%%/plugins/abook_take/index.php +%%SQUIRRELDIR%%/plugins/abook_take/setup.php +%%SQUIRRELDIR%%/plugins/abook_take/take.php +%%SQUIRRELDIR%%/plugins/address_add/add.php +%%SQUIRRELDIR%%/plugins/address_add/class.php +%%SQUIRRELDIR%%/plugins/address_add/classes/.htaccess +%%SQUIRRELDIR%%/plugins/address_add/classes/checkforduplicate.php +%%SQUIRRELDIR%%/plugins/address_add/classes/getemail.php +%%SQUIRRELDIR%%/plugins/address_add/classes/getname.php +%%SQUIRRELDIR%%/plugins/address_add/classes/index.php +%%SQUIRRELDIR%%/plugins/address_add/classes/init.php +%%SQUIRRELDIR%%/plugins/address_add/classes/parseemail.php +%%SQUIRRELDIR%%/plugins/address_add/classes/showlink.php +%%SQUIRRELDIR%%/plugins/address_add/includes/functions.php +%%SQUIRRELDIR%%/plugins/address_add/includes/index.php +%%SQUIRRELDIR%%/plugins/address_add/index.php +%%SQUIRRELDIR%%/plugins/address_add/locale/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/ar/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/ar/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/bg_BG/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/bg_BG/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/ca_ES/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/ca_ES/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/compileall.pl +%%SQUIRRELDIR%%/plugins/address_add/locale/cs_CZ/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/cs_CZ/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/da_DK/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/da_DK/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/de_DE/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/de_DE/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/el_GR/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/el_GR/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/es_ES/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/es_ES/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/et_EE/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/et_EE/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/fi_FI/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/fi_FI/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/fr_FR/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/fr_FR/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/he_HE/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/he_HE/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/he_IL/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/he_IL/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/hr_HR/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/hr_HR/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/hu_HU/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/hu_HU/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/id_ID/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/id_ID/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/index.php +%%SQUIRRELDIR%%/plugins/address_add/locale/is_IS/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/is_IS/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/it_IT/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/it_IT/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/ja_JP/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/ja_JP/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/ko_KR/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/ko_KR/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/lt_LT/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/lt_LT/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/nl_NL/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/nl_NL/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/nn_NO/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/nn_NO/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/no_NO/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/no_NO/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/pl_PL/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/pl_PL/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/pt_BR/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/pt_BR/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/pt_PT/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/pt_PT/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/ro_RO/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/ro_RO/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/ru_RU/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/ru_RU/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/sk_SK/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/sk_SK/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/sl_SI/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/sl_SI/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/sr_YU/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/sr_YU/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/sv_SE/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/sv_SE/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/th_TH/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/th_TH/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/tr_TR/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/tr_TR/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/uk_UA/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/uk_UA/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/vi_VN/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/vi_VN/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/zh_CN/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/zh_CN/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/locale/zh_TW/LC_MESSAGES/address_add.mo +%%SQUIRRELDIR%%/plugins/address_add/locale/zh_TW/LC_MESSAGES/address_add.po +%%SQUIRRELDIR%%/plugins/address_add/setup.php +%%SQUIRRELDIR%%/plugins/administrator/admins +%%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/advanced_settings/COPYING +%%SQUIRRELDIR%%/plugins/advanced_settings/advanced_settings.pot +%%SQUIRRELDIR%%/plugins/advanced_settings/functions.php +%%SQUIRRELDIR%%/plugins/advanced_settings/options.php +%%SQUIRRELDIR%%/plugins/advanced_settings/setup.php +%%SQUIRRELDIR%%/plugins/advanced_settings/version +%%SQUIRRELDIR%%/plugins/advanced_settings/xgetpot +%%SQUIRRELDIR%%/plugins/askuserinfo/setup.php +%%SQUIRRELDIR%%/plugins/bookmarks/bookmark_click.php +%%SQUIRRELDIR%%/plugins/bookmarks/bookmark_create.php +%%SQUIRRELDIR%%/plugins/bookmarks/bookmark_delete.php +%%SQUIRRELDIR%%/plugins/bookmarks/bookmark_edit.php +%%SQUIRRELDIR%%/plugins/bookmarks/bookmarks.php +%%SQUIRRELDIR%%/plugins/bookmarks/bookmarks_bycount.php +%%SQUIRRELDIR%%/plugins/bookmarks/bookmarks_bydate.php +%%SQUIRRELDIR%%/plugins/bookmarks/bookmarks_data.php +%%SQUIRRELDIR%%/plugins/bookmarks/bookmarks_data_mysql.php +%%SQUIRRELDIR%%/plugins/bookmarks/bookmarks_data_old.php +%%SQUIRRELDIR%%/plugins/bookmarks/folder_create.php +%%SQUIRRELDIR%%/plugins/bookmarks/folder_delete.php +%%SQUIRRELDIR%%/plugins/bookmarks/functions.php +%%SQUIRRELDIR%%/plugins/bookmarks/import.php +%%SQUIRRELDIR%%/plugins/bookmarks/import_process.php +%%SQUIRRELDIR%%/plugins/bookmarks/setup.php +%%SQUIRRELDIR%%/plugins/bookmarks/version +%%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/calendar_file_backend/COPYING +%%SQUIRRELDIR%%/plugins/calendar_file_backend/calendar_functions.php +%%SQUIRRELDIR%%/plugins/calendar_file_backend/constants.php +%%SQUIRRELDIR%%/plugins/calendar_file_backend/event_functions.php +%%SQUIRRELDIR%%/plugins/calendar_file_backend/functions.php +%%SQUIRRELDIR%%/plugins/calendar_file_backend/holiday_functions.php +%%SQUIRRELDIR%%/plugins/calendar_file_backend/index.php +%%SQUIRRELDIR%%/plugins/calendar_file_backend/setup.php +%%SQUIRRELDIR%%/plugins/calendar_file_backend/version +%%SQUIRRELDIR%%/plugins/check_quota/FAQ +%%SQUIRRELDIR%%/plugins/check_quota/LICENSE +%%SQUIRRELDIR%%/plugins/check_quota/OLDCHANGELOG +%%SQUIRRELDIR%%/plugins/check_quota/TRANSLATING +%%SQUIRRELDIR%%/plugins/check_quota/check_imap.php +%%SQUIRRELDIR%%/plugins/check_quota/check_unix.php +%%SQUIRRELDIR%%/plugins/check_quota/config.php +%%SQUIRRELDIR%%/plugins/check_quota/config.php.sample +%%SQUIRRELDIR%%/plugins/check_quota/createpot +%%SQUIRRELDIR%%/plugins/check_quota/functions.php +%%SQUIRRELDIR%%/plugins/check_quota/images/gd_bar.php +%%SQUIRRELDIR%%/plugins/check_quota/images/green.png +%%SQUIRRELDIR%%/plugins/check_quota/images/red.png +%%SQUIRRELDIR%%/plugins/check_quota/images/yellow.png +%%SQUIRRELDIR%%/plugins/check_quota/index.php +%%SQUIRRELDIR%%/plugins/check_quota/locale/check_quota.pot +%%SQUIRRELDIR%%/plugins/check_quota/locale/es_ES/LC_MESSAGES/check_quota.mo +%%SQUIRRELDIR%%/plugins/check_quota/locale/es_ES/LC_MESSAGES/check_quota.po +%%SQUIRRELDIR%%/plugins/check_quota/locale/fr_FR/LC_MESSAGES/check_quota.mo +%%SQUIRRELDIR%%/plugins/check_quota/locale/fr_FR/LC_MESSAGES/check_quota.po +%%SQUIRRELDIR%%/plugins/check_quota/locale/nl_NL/LC_MESSAGES/check_quota.mo +%%SQUIRRELDIR%%/plugins/check_quota/locale/nl_NL/LC_MESSAGES/check_quota.po +%%SQUIRRELDIR%%/plugins/check_quota/locale/sv_SE/LC_MESSAGES/check_quota.mo +%%SQUIRRELDIR%%/plugins/check_quota/locale/sv_SE/LC_MESSAGES/check_quota.po +%%SQUIRRELDIR%%/plugins/check_quota/locale/tr_TR/LC_MESSAGES/check_quota.mo +%%SQUIRRELDIR%%/plugins/check_quota/locale/tr_TR/LC_MESSAGES/check_quota.po +%%SQUIRRELDIR%%/plugins/check_quota/setup.php +%%SQUIRRELDIR%%/plugins/check_quota/show_graph.php +%%SQUIRRELDIR%%/plugins/check_quota/show_motd.php +%%SQUIRRELDIR%%/plugins/check_quota/swf/bar.swf +%%SQUIRRELDIR%%/plugins/check_quota/version +%%SQUIRRELDIR%%/plugins/compatibility/COPYING +%%SQUIRRELDIR%%/plugins/compatibility/compatibility.pot +%%SQUIRRELDIR%%/plugins/compatibility/functions.php +%%SQUIRRELDIR%%/plugins/compatibility/getpot +%%SQUIRRELDIR%%/plugins/compatibility/includes/1.2.10/global.php +%%SQUIRRELDIR%%/plugins/compatibility/includes/1.2.11/global.php +%%SQUIRRELDIR%%/plugins/compatibility/includes/1.2.7/global.php +%%SQUIRRELDIR%%/plugins/compatibility/includes/1.2.8/global.php +%%SQUIRRELDIR%%/plugins/compatibility/includes/1.2.9/global.php +%%SQUIRRELDIR%%/plugins/compatibility/includes/1.4.0/global.php +%%SQUIRRELDIR%%/plugins/compatibility/includes/1.4.1/global.php +%%SQUIRRELDIR%%/plugins/compatibility/includes/1.4.2/global.php +%%SQUIRRELDIR%%/plugins/compatibility/includes/1.4.3/global.php +%%SQUIRRELDIR%%/plugins/compatibility/includes/1.4.4/global.php +%%SQUIRRELDIR%%/plugins/compatibility/includes/1.4.5/global.php +%%SQUIRRELDIR%%/plugins/compatibility/includes/1.4.6/global.php +%%SQUIRRELDIR%%/plugins/compatibility/includes/1.5.0/global.php +%%SQUIRRELDIR%%/plugins/compatibility/index.php +%%SQUIRRELDIR%%/plugins/compatibility/make_release.sh +%%SQUIRRELDIR%%/plugins/compatibility/patches.old/compatibility_patch-1.2.11.diff +%%SQUIRRELDIR%%/plugins/compatibility/patches.old/compatibility_patch-1.4.4.diff +%%SQUIRRELDIR%%/plugins/compatibility/patches.old/compatibility_patch-1.4.5.diff +%%SQUIRRELDIR%%/plugins/compatibility/patches.old/compatibility_patch-1.4.6.diff +%%SQUIRRELDIR%%/plugins/compatibility/patches/compatibility_patch-1.4.0.diff +%%SQUIRRELDIR%%/plugins/compatibility/patches/compatibility_patch-1.4.1.diff +%%SQUIRRELDIR%%/plugins/compatibility/patches/compatibility_patch-1.4.2.diff +%%SQUIRRELDIR%%/plugins/compatibility/patches/compatibility_patch-1.4.3.diff +%%SQUIRRELDIR%%/plugins/compatibility/patches/compatibility_patch-1.4.4.diff +%%SQUIRRELDIR%%/plugins/compatibility/patches/compatibility_patch-1.4.5.diff +%%SQUIRRELDIR%%/plugins/compatibility/patches/compatibility_patch-1.4.6.diff +%%SQUIRRELDIR%%/plugins/compatibility/setup.php +%%SQUIRRELDIR%%/plugins/compatibility/version +%%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/bulkquery/index.php +%%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/forced_prefs/COPYING +%%SQUIRRELDIR%%/plugins/forced_prefs/ReleaseNotes.txt +%%SQUIRRELDIR%%/plugins/forced_prefs/config-sample.php +%%SQUIRRELDIR%%/plugins/forced_prefs/config.php +%%SQUIRRELDIR%%/plugins/forced_prefs/config_default.php +%%SQUIRRELDIR%%/plugins/forced_prefs/doc/ReleaseNotes-1.1.txt +%%SQUIRRELDIR%%/plugins/forced_prefs/functions.php +%%SQUIRRELDIR%%/plugins/forced_prefs/index.php +%%SQUIRRELDIR%%/plugins/forced_prefs/setup.php +%%SQUIRRELDIR%%/plugins/forced_prefs/version +%%SQUIRRELDIR%%/plugins/fortune/index.php +%%SQUIRRELDIR%%/plugins/fortune/setup.php +%%SQUIRRELDIR%%/plugins/html_mail/COPYING +%%SQUIRRELDIR%%/plugins/html_mail/NOTES +%%SQUIRRELDIR%%/plugins/html_mail/config.php +%%SQUIRRELDIR%%/plugins/html_mail/config.php.sample +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fckcontextmenugroup.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fckcontextmenuitem.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fckcontextmenuseparator.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fckevents.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fckpanel_gecko.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fckpanel_ie.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fckplugin.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fckspecialcombo.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fckstyledef.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fckstyledef_gecko.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fckstyledef_ie.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fckstylesloader.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fcktoolbar.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fcktoolbarbutton.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fckxml_gecko.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes/fckxml_ie.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/commandclasses/fck_othercommands.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/commandclasses/fcknamedcommand.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/commandclasses/fckstylecommand.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/commandclasses/fcktablecommand.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/globals/fck_constants.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/globals/fckeditorapi.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fck.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fck_1.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fck_1_gecko.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fck_1_ie.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fck_2.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fck_2_gecko.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fck_2_ie.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fck_last.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fck_onload.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckbrowserinfo.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckcodeformatter.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckcommands.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckconfig.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckcontextmenu.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckcontextmenu_gecko.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckcontextmenu_ie.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckcoreextensions.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckdebug.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckdialog.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckdialog_gecko.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckdialog_ie.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fcklanguagemanager.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fcknamespace.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckplugins.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckregexlib.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckscriptloader.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckselection.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckselection_gecko.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckselection_ie.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fcktablehandler.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fcktablehandler_gecko.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fcktablehandler_ie.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fcktoolbaritems.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fcktoolbarset.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fcktools.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fcktools_gecko.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fcktools_ie.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckundo_gecko.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckundo_ie.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckurlparams.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckxhtml.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckxhtml_gecko.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckxhtml_ie.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals/fckxhtmlentities.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/css/behaviors/anchor.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/css/behaviors/anchors.htc +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/css/behaviors/disablehandles.htc +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/css/behaviors/hiddenfield.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/css/behaviors/hiddenfield.htc +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/css/behaviors/moz-bindings.xml +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/css/behaviors/showtableborders.htc +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/css/fck_editorarea.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/css/fck_internal.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/css/fck_showtableborders_gecko.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/css/images/fck_anchor.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/css/images/fck_flashlogo.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/common/fck_dialog_common.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/common/fck_dialog_common.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/common/fcknumericfield.htc +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/common/images/locked.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/common/images/reset.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/common/images/unlocked.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/common/moz-bindings.xml +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_about.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_about/lgpl.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_about/logo_fredck.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_anchor.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_button.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_checkbox.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_colorselector.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_docprops.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_find.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_flash.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_flash/fck_flash.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_form.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_hiddenfield.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_image.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_image/fck_image.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_link.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_link/fck_link.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_listprop.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_paste.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_radiobutton.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_replace.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_select.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_select/fck_select.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_smiley.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_source.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_specialchar.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php.ori +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php.orig0000644 +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_table.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_tablecell.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_template.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_template/fck_template_moz-bindings.xml +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_template/fck_templateitem.htc +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_template/images/template1.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_template/images/template2.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_template/images/template3.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_textarea.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_textfield.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_universalkey.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_universalkey/00.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_universalkey/data.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_universalkey/diacritic.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_universalkey/dialogue.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_universalkey/fck_universalkey.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_universalkey/keyboard_layout.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_universalkey/multihexa.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/fckblank.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/fckdebug.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/fckdialog.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/fckeditor.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/fckeditor.original.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/browser.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/browser.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/asp/basexml.asp +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/asp/class_upload.asp +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/asp/commands.asp +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/asp/config.asp +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/asp/connector.asp +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/asp/io.asp +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/asp/util.asp +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/aspx/connector.aspx +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/cfm/config.cfm +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/cfm/connector.cfm +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/lasso/config.lasso +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/lasso/connector.lasso +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/perl/basexml.pl +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/perl/commands.pl +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/perl/connector.cgi +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/perl/io.pl +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/perl/upload_fck.pl +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/perl/util.pl +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/php/basexml.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/php/commands.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/php/config.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/php/io.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/php/util.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/test.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/frmactualfolder.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/frmfolders.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/frmresourceslist.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/frmresourcetype.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/frmupload.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/Folder.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/Folder32.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/html.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/js.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/spacer.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/js/common.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/js/fckxml.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/browser.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/browser.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Auth/Default.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/CreateFolder.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/DeleteFile.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/DeleteFolder.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/FileUpload.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/GetFolders.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/GetFoldersAndFiles.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/GetUploadProgress.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/RenameFile.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/RenameFolder.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/Thumbnail.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/helpers/.htaccess +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/helpers/header.cgi +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/helpers/iconlookup.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/helpers/progress.cgi +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/helpers/upload.cgi +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Docs/AuthenticationHandlers.txt +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Docs/license.txt +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Docs/readme.txt +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/config.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/connector.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/dtd/iso-lat1.ent +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/ascii.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/binary.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/document2.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/email.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/empty.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/html.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/image.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/info.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/kmplot.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/kmultiple.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/pdf.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/php.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/postscript.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/real_doc.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/sound.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/spreadsheet.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/tar.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images/video.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/test.html.suspended +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/testme.php.suspended +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/frmactualfolder.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/frmcreatefolder.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/frmfolders.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/frmimageeditor.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/frmresourceslist.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/frmresourcetype.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/frmupload.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/2x2.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/2x2_w.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/ButtonArrow.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/Folder.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/Folder32.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/Folder96.jpg +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/FolderOpened.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/FolderOpened32.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/FolderUp.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/close.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/delete.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/edit.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/editImage.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/ai.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/avi.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/bmp.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/cs.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/default.icon.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/dll.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/doc.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/exe.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/fla.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/gif.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/htm.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/html.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/jpg.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/js.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/mdb.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/mp3.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/pdf.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/ppt.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/rdp.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/swf.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/swt.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/txt.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/vsd.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/xls.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/xml.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32/zip.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/ai.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/avi.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/bmp.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/cs.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/default.icon.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/dll.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/doc.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/exe.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/fla.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/gif.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/htm.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/html.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/jpg.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/js.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/mdb.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/mp3.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/pdf.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/ppt.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/rdp.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/swf.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/swt.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/txt.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/vsd.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/xls.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/xml.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/zip.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/spacer.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/toolbar/close.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/toolbar/crop.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/toolbar/flip.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/toolbar/resize.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/toolbar/rotate.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/toolbar/save.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/js/EditorContent.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/js/common.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/js/fckxml.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/js/wz_jsgraphics.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload/asp/class_upload.asp +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload/asp/config.asp +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload/asp/io.asp +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload/asp/upload.asp +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload/aspx/upload.aspx +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload/lasso/config.lasso +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload/lasso/upload.lasso +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload/php/config.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload/php/upload.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload/php/util.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload/test.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/anchor.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/aiua.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/ak.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/alien.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/alien2.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/angry.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/angry1.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/apophys.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/assjani.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/asthanos.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/bazuzeus.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/beaute.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/bigsmile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/blush.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/boid.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/bonk.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/bored.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/borg.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/capo.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/confused.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/cool.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/crazy.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/cwm14.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/demis_roussos.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/devil.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/devil2.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/double0smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/eek3.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/eltaf.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/gele.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/halm.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/happy.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/icon12.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/icon23.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/icon26.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/icon_angel.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/icon_bandit.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/icon_bravo.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/icon_clown.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/jesors.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/jesors1.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/lol3.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/love.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/mad.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/megaphone.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/mmm.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/music.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/notify.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/nuts.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/obanon.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/ouaip.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/pleure.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/plugin.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/question.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/question2.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/rasta2.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/rastapop.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/rosebud.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/sad.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/sad2.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/shocked.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/sick.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/sick2.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/slaap.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/sleep.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/smiley_peur.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/sors.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/sovxx.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/spamafote.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/tap67.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/thumbdown.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/thumbup.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/tigi.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/toad666.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/tongue.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/tuffgong.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/urgeman.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/vanadium.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/wink.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/worship.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/wouaf.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/wow.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/xp1700.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/yltype.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/yopyopyop.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/youpi.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun/zoor.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/angel_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/angry_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/broken_heart.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/cake.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/confused_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/cry_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/devil_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/embaressed_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/envelope.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/heart.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/kiss.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/lightbulb.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/omg_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/regular_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/sad_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/shades_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/teeth_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/thumbs_down.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/thumbs_up.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/tounge_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn/wink_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/spacer.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/js/fck_startup.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/js/fckeditorcode_gecko_1.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/js/fckeditorcode_gecko_2.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/js/fckeditorcode_ie_1.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/js/fckeditorcode_ie_2.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/_translationstatus.txt +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/ar.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/bg.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/bs.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/ca.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/cs.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/da.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/de.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/el.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/en-au.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/en-uk.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/en.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/eo.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/es.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/et.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/eu.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/fa.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/fcklanguagemanager.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/fi.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/fo.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/fr.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/gl.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/he.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/hr.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/hu.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/it.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/ja.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/ko.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/lt.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/mn.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/ms.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/nl.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/no.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/pl.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/pt-br.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/pt.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/ro.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/ru.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/sk.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/sl.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/sr-latn.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/sr.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/sv.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/th.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/tr.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/uk.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/vi.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/zh-cn.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang/zh.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/plugins/placeholder/fck_placeholder.html +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/plugins/placeholder/fckplugin.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/plugins/placeholder/lang/de.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/plugins/placeholder/lang/en.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/plugins/placeholder/lang/fr.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/plugins/placeholder/lang/it.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/plugins/placeholder/placeholder.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/plugins/simplecommands/fckplugin.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/plugins/tablecommands/fckplugin.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/fck_contextmenu.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/fck_dialog.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/fck_editor.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/images/toolbar.arrowright.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/images/toolbar.collapse.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/images/toolbar.end.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/images/toolbar.expand.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/images/toolbar.separator.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/images/toolbar.start.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/about.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/anchor.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/bgcolor.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/bold.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/bulletedlist.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/button.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/checkbox.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/copy.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/cut.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/docprops.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/find.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/flash.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/form.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/hiddenfield.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/image.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/imagebutton.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/indent.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/inserthorizontalrule.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/insertorderedlist.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/insertunorderedlist.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/italic.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/justifycenter.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/justifyfull.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/justifyleft.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/justifyright.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/link.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/newpage.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/numberedlist.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/outdent.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/paste.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/pastetext.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/pasteword.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/preview.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/print.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/radio.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/redo.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/removeformat.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/replace.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/save.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/select.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/selectall.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/showdetails.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/showtableborders.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/smiley.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/source.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/specialchar.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/spellcheck.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/strikethrough.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/subscript.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/superscript.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/table.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/tablecell.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/tabledeletecells.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/tabledeletecolumns.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/tabledeleterows.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/tableinsertcell.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/tableinsertcolumn.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/tableinsertrow.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/tablemergecells.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/tablesplitcell.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/templates.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/textarea.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/textcolor.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/textfield.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/underline.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/undo.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/universalkey.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/unlink.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar/unorderedlist.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/fck_contextmenu.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/fck_dialog.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/fck_editor.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/images/toolbar.bg.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/images/toolbar.end.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/images/toolbar.expand.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/images/toolbar.separator.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/images/toolbar.start.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/about.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/anchor.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/bgcolor.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/bold.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/bulletedlist.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/button.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/checkbox.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/copy.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/cut.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/docprops.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/find.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/flash.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/fontstyleadv.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/form.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/hidden.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/hiddenfield.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/image.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/imagebutton.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/indent.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/input.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/inserthorizontalrule.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/insertorderedlist.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/insertunorderedlist.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/italic.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/justifycenter.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/justifyfull.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/justifyleft.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/justifyright.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/link.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/mail.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/new.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/newpage.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/numberedlist.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/open.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/outdent.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/paste.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/pastetext.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/pasteword.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/preview.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/print.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/radio.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/redo.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/removeformat.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/replace.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/save.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/select.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/selectall.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/showdetails.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/showtableborders.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/smiley.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/source.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/specialchar.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/spellcheck.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/strikethrough.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/subscript.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/superscript.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/table.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/tablecell.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/tabledeletecells.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/tabledeletecolumns.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/tabledeleterows.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/tableinsertcell.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/tableinsertcolumn.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/tableinsertrow.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/tablemergecells.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/tablesplitcell.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/templates.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/textarea.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/textcolor.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/textfield.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/underline.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/undo.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/universalkey.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/unlink.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar/unorderedlist.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/fck_contextmenu.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/fck_dialog.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/fck_editor.css +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/images/toolbar.collapse.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/images/toolbar.end.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/images/toolbar.expand.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/images/toolbar.separator.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/images/toolbar.start.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/about.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/anchor.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/bgcolor.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/bold.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/bulletedlist.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/button.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/checkbox.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/copy.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/cut.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/docprops.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/find.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/flash.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/form.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/hiddenfield.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/image.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/imagebutton.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/indent.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/inserthorizontalrule.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/insertorderedlist.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/insertunorderedlist.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/italic.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/justifycenter.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/justifyfull.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/justifyleft.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/justifyright.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/link.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/newpage.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/numberedlist.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/outdent.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/paste.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/pastetext.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/pasteword.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/preview.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/print.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/radio.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/redo.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/removeformat.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/replace.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/save.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/select.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/selectall.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/showdetails.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/showtableborders.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/smiley.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/source.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/specialchar.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/spellcheck.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/strikethrough.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/subscript.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/superscript.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/table.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/tablecell.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/tabledeletecells.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/tabledeletecolumns.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/tabledeleterows.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/tableinsertcell.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/tableinsertcolumn.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/tableinsertrow.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/tablemergecells.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/tablesplitcell.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/templates.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/textarea.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/textcolor.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/textfield.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/underline.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/undo.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/universalkey.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/unlink.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar/unorderedlist.gif +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/fckconfig.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/fckeditor.js +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/fckeditor.php +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/fckstyles.xml +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/fcktemplates.xml +%%SQUIRRELDIR%%/plugins/html_mail/fckeditor/license.txt +%%SQUIRRELDIR%%/plugins/html_mail/functions.php +%%SQUIRRELDIR%%/plugins/html_mail/getpot +%%SQUIRRELDIR%%/plugins/html_mail/html_mail.pot +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/.cvsignore +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/dialog.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/htmlarea.css +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/htmlarea.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_about.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_align_center.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_align_justify.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_align_left.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_align_right.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_blank.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_charmap.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_color_bg.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_color_fg.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_copy.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_custom.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_cut.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_delete.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_format_bold.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_format_italic.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_format_strike.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_format_sub.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_format_sup.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_format_underline.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_help.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_hr.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_html.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_image.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_indent_less.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_indent_more.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_killword.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_left_to_right.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_link.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_list_bullet.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_list_num.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_paste.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_print.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_redo.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_right_to_left.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_rmformat.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_save.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_show_border.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_splitcel.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/ed_undo.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/fullscreen_maximize.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/fullscreen_minimize.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/insert_table.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/index.php +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/b5.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/ch.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/cz.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/da.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/de.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/ee.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/el.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/en.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/es.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/fi.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/fr.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/gb.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/he.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/hu.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/it.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/ja-euc.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/ja-jis.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/ja-sjis.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/ja-utf8.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/lt.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/lv.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/nb.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/nl.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/no.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/pl.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/pt_br.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/ro.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/ru.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/se.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/si.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/vn.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/license.txt +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/make-patch +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/make-release.pl +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CSS/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CSS/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CSS/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CSS/css.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CSS/lang/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CSS/lang/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CSS/lang/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CSS/lang/en.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CSS/lang/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CSS/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/character-map.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/img/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/img/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/img/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/img/ed_charmap.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/img/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/lang/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/lang/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/lang/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/lang/de.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/lang/en.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/lang/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/popups/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/popups/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/popups/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/popups/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/popups/select_character.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/1.pl +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/context-menu.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/lang/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/lang/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/lang/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/lang/de.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/lang/el.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/lang/en.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/lang/fr.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/lang/he.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/lang/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/lang/nl.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/menu.css +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS/dynamiccss.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS/lang/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS/lang/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS/lang/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS/lang/de.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS/lang/en.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS/lang/fr.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS/lang/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/EnterParagraphs/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/EnterParagraphs/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/EnterParagraphs/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/EnterParagraphs/enter-paragraphs.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/full-page.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/img/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/img/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/img/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/img/docprop.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/img/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/lang/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/lang/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/lang/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/lang/de.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/lang/en.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/lang/fr.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/lang/he.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/lang/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/lang/ro.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/popups/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/popups/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/popups/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/popups/docprop.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/popups/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/test.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/html-tidy-config.cfg +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/html-tidy-logic.php +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/html-tidy.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/img/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/img/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/img/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/img/html-tidy.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/img/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/lang/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/lang/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/lang/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/lang/en.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/lang/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ListType/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ListType/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ListType/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ListType/lang/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ListType/lang/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ListType/lang/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ListType/lang/de.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ListType/lang/en.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ListType/lang/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ListType/list-type.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ListType/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/img/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/img/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/img/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/img/he-spell-check.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/img/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/img/spell-check.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/lang/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/lang/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/lang/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/lang/cz.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/lang/da.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/lang/de.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/lang/en.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/lang/he.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/lang/hu.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/lang/it.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/lang/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/lang/nl.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/lang/ro.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/readme-tech.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/spell-check-logic.cgi +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/spell-check-style.css +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/spell-check-ui.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/spell-check-ui.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/spell-checker.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/cell-delete.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/cell-insert-after.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/cell-insert-before.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/cell-merge.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/cell-prop.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/cell-split.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/col-delete.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/col-insert-after.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/col-insert-before.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/col-split.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/row-delete.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/row-insert-above.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/row-insert-under.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/row-prop.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/row-split.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/table-prop.gif +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/cz.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/da.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/de.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/el.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/en.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/fi.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/fr.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/he.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/hu.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/it.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/nl.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/no.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/ro.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/table-operations.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popupdiv.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/CVS/Entries +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/CVS/Repository +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/CVS/Root +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/about.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/blank.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/custom2.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/editor_help.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/fullscreen.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/insert_image.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/insert_table.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/link.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/makefile.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/old-fullscreen.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/old_insert_image.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/popup.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/select_color.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popupwin.js +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/project-config.xml +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/reference.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea/release-notes.html +%%SQUIRRELDIR%%/plugins/html_mail/htmlarea_cvs/update +%%SQUIRRELDIR%%/plugins/html_mail/images/angel_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/angry_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/asl.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/bat.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/beer_yum.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/bowwow.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/broken_heart.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/cake.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/camera.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/clock.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/coffee.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/confused_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/cry_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/devil_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/dude_hug.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/embaressed_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/envelope.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/film.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/girl_handsacrossamerica.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/girl_hug.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/guy_handsacrossamerica.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/handcuffs.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/heart.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/index.php +%%SQUIRRELDIR%%/plugins/html_mail/images/kiss.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/kittykay.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/lightbulb.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/martini_shaken.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/messenger.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/moon.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/musical_note.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/omg_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/phone.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/present.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/rainbow.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/regular_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/rose.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/sad_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/shades_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/star.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/sun.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/teeth_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/thumbs_down.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/thumbs_up.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/tounge_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/undecided.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/whatchutalkingabout_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/wilted_rose.gif +%%SQUIRRELDIR%%/plugins/html_mail/images/wink_smile.gif +%%SQUIRRELDIR%%/plugins/html_mail/index.php +%%SQUIRRELDIR%%/plugins/html_mail/make_release.sh +%%SQUIRRELDIR%%/plugins/html_mail/patches/squirrelmail-1.4.0-emoticons.diff +%%SQUIRRELDIR%%/plugins/html_mail/patches/squirrelmail-1.4.0-html_mail.diff +%%SQUIRRELDIR%%/plugins/html_mail/patches/squirrelmail-1.4.1-emoticons.diff +%%SQUIRRELDIR%%/plugins/html_mail/patches/squirrelmail-1.4.1-html_mail.diff +%%SQUIRRELDIR%%/plugins/html_mail/patches/squirrelmail-1.4.2-emoticons.diff +%%SQUIRRELDIR%%/plugins/html_mail/patches/squirrelmail-1.4.3-emoticons.diff +%%SQUIRRELDIR%%/plugins/html_mail/patches/squirrelmail-1.4.4-emoticons.diff +%%SQUIRRELDIR%%/plugins/html_mail/patches/squirrelmail-1.4.6-emoticons.diff +%%SQUIRRELDIR%%/plugins/html_mail/setup.php +%%SQUIRRELDIR%%/plugins/html_mail/version +%%SQUIRRELDIR%%/plugins/index.php +%%SQUIRRELDIR%%/plugins/info/functions.php +%%SQUIRRELDIR%%/plugins/info/index.php +%%SQUIRRELDIR%%/plugins/info/options.php +%%SQUIRRELDIR%%/plugins/info/setup.php +%%SQUIRRELDIR%%/plugins/legend/setup.php +%%SQUIRRELDIR%%/plugins/listcommands/index.php +%%SQUIRRELDIR%%/plugins/listcommands/mailout.php +%%SQUIRRELDIR%%/plugins/listcommands/setup.php +%%SQUIRRELDIR%%/plugins/lockout/data/.htaccess +%%SQUIRRELDIR%%/plugins/lockout/data/config.php +%%SQUIRRELDIR%%/plugins/lockout/data/config.php.sample +%%SQUIRRELDIR%%/plugins/lockout/data/index.php +%%SQUIRRELDIR%%/plugins/lockout/data/lockout_table.dat +%%SQUIRRELDIR%%/plugins/lockout/data/lockout_table.dat.sample +%%SQUIRRELDIR%%/plugins/lockout/functions.php +%%SQUIRRELDIR%%/plugins/lockout/index.php +%%SQUIRRELDIR%%/plugins/lockout/locked_out.php +%%SQUIRRELDIR%%/plugins/lockout/setup.php +%%SQUIRRELDIR%%/plugins/lockout/version +%%SQUIRRELDIR%%/plugins/login_auto/config.php +%%SQUIRRELDIR%%/plugins/login_auto/config.php.sample +%%SQUIRRELDIR%%/plugins/login_auto/functions.php +%%SQUIRRELDIR%%/plugins/login_auto/index.php +%%SQUIRRELDIR%%/plugins/login_auto/security.en.php +%%SQUIRRELDIR%%/plugins/login_auto/setup.php +%%SQUIRRELDIR%%/plugins/login_auto/version +%%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/index.php +%%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/msg_flags/attach.gif +%%SQUIRRELDIR%%/plugins/msg_flags/flagged.gif +%%SQUIRRELDIR%%/plugins/msg_flags/functions/mailbox_display.php +%%SQUIRRELDIR%%/plugins/msg_flags/index.php +%%SQUIRRELDIR%%/plugins/msg_flags/msg_flags-squirrelmail-1.4.3a.diff +%%SQUIRRELDIR%%/plugins/msg_flags/msg_flags_1.4.3.diff +%%SQUIRRELDIR%%/plugins/msg_flags/msg_new.gif +%%SQUIRRELDIR%%/plugins/msg_flags/msg_new_deleted.gif +%%SQUIRRELDIR%%/plugins/msg_flags/msg_new_deleted_reply.gif +%%SQUIRRELDIR%%/plugins/msg_flags/msg_new_reply.gif +%%SQUIRRELDIR%%/plugins/msg_flags/msg_read.gif +%%SQUIRRELDIR%%/plugins/msg_flags/msg_read_deleted.gif +%%SQUIRRELDIR%%/plugins/msg_flags/msg_read_deleted_reply.gif +%%SQUIRRELDIR%%/plugins/msg_flags/msg_read_reply.gif +%%SQUIRRELDIR%%/plugins/msg_flags/paul +%%SQUIRRELDIR%%/plugins/msg_flags/prio_high.gif +%%SQUIRRELDIR%%/plugins/msg_flags/prio_low.gif +%%SQUIRRELDIR%%/plugins/msg_flags/src/left_main.php +%%SQUIRRELDIR%%/plugins/msg_flags/src/move_messages.php +%%SQUIRRELDIR%%/plugins/msg_flags/transparent.gif +%%SQUIRRELDIR%%/plugins/msg_flags/version +%%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/sounds/index.php +%%SQUIRRELDIR%%/plugins/newmail/testsound.php +%%SQUIRRELDIR%%/plugins/newuser_wiz/functions.php +%%SQUIRRELDIR%%/plugins/newuser_wiz/index.php +%%SQUIRRELDIR%%/plugins/newuser_wiz/newuser_wiz.pot +%%SQUIRRELDIR%%/plugins/newuser_wiz/newuser_wiz_sample.po +%%SQUIRRELDIR%%/plugins/newuser_wiz/setup.php +%%SQUIRRELDIR%%/plugins/newuser_wiz/version +%%SQUIRRELDIR%%/plugins/newuser_wiz/wiz_submit.php +%%SQUIRRELDIR%%/plugins/newuser_wiz/xgetpot +%%SQUIRRELDIR%%/plugins/notes/LICENSE +%%SQUIRRELDIR%%/plugins/notes/config.php +%%SQUIRRELDIR%%/plugins/notes/config.php.sample +%%SQUIRRELDIR%%/plugins/notes/functions.php +%%SQUIRRELDIR%%/plugins/notes/images/X.gif +%%SQUIRRELDIR%%/plugins/notes/images/_.gif +%%SQUIRRELDIR%%/plugins/notes/images/index.php +%%SQUIRRELDIR%%/plugins/notes/images/max.gif +%%SQUIRRELDIR%%/plugins/notes/index.php +%%SQUIRRELDIR%%/plugins/notes/locale/create_po.php +%%SQUIRRELDIR%%/plugins/notes/locale/index.php +%%SQUIRRELDIR%%/plugins/notes/locale/notes.po +%%SQUIRRELDIR%%/plugins/notes/locale/pt_BR/LC_MESSAGES/notes.mo +%%SQUIRRELDIR%%/plugins/notes/locale/pt_BR/LC_MESSAGES/notes.po +%%SQUIRRELDIR%%/plugins/notes/locale/pt_BR/LC_MESSSAGES/notes.po +%%SQUIRRELDIR%%/plugins/notes/notes.class.php +%%SQUIRRELDIR%%/plugins/notes/notes.php +%%SQUIRRELDIR%%/plugins/notes/setup.php +%%SQUIRRELDIR%%/plugins/notes/version +%%SQUIRRELDIR%%/plugins/preview_pane/COPYING +%%SQUIRRELDIR%%/plugins/preview_pane/empty_frame.php +%%SQUIRRELDIR%%/plugins/preview_pane/functions.php +%%SQUIRRELDIR%%/plugins/preview_pane/getpot +%%SQUIRRELDIR%%/plugins/preview_pane/index.php +%%SQUIRRELDIR%%/plugins/preview_pane/locale/el_GR/LC_MESSAGES/preview_pane.mo +%%SQUIRRELDIR%%/plugins/preview_pane/locale/el_GR/LC_MESSAGES/preview_pane.po +%%SQUIRRELDIR%%/plugins/preview_pane/locale/preview_pane.pot +%%SQUIRRELDIR%%/plugins/preview_pane/patches/preview_pane_archive_mail_1-0_squirrelmail_1-4-x.diff +%%SQUIRRELDIR%%/plugins/preview_pane/patches/preview_pane_archive_mail_1-2_squirrelmail_1-4-x.diff +%%SQUIRRELDIR%%/plugins/preview_pane/patches/preview_pane_delete_move_next_squirrelmail-1.4.3.diff +%%SQUIRRELDIR%%/plugins/preview_pane/patches/preview_pane_squirrelmail-1.4.3.diff +%%SQUIRRELDIR%%/plugins/preview_pane/patches/preview_pane_squirrelmail-1.5.1.diff +%%SQUIRRELDIR%%/plugins/preview_pane/setup.php +%%SQUIRRELDIR%%/plugins/preview_pane/source_files/archive_mail_bottom.php-1.0 +%%SQUIRRELDIR%%/plugins/preview_pane/source_files/archive_mail_bottom.php-1.2 +%%SQUIRRELDIR%%/plugins/preview_pane/source_files/read_body.php-squirrelmail-1.4.3 +%%SQUIRRELDIR%%/plugins/preview_pane/source_files/read_body.php-squirrelmail-1.5.1 +%%SQUIRRELDIR%%/plugins/preview_pane/version +%%SQUIRRELDIR%%/plugins/sent_subfolders/index.php +%%SQUIRRELDIR%%/plugins/sent_subfolders/setup.php +%%SQUIRRELDIR%%/plugins/show_headers/INFO +%%SQUIRRELDIR%%/plugins/show_headers/functions.php +%%SQUIRRELDIR%%/plugins/show_headers/index.php +%%SQUIRRELDIR%%/plugins/show_headers/setup.php +%%SQUIRRELDIR%%/plugins/show_headers/version +%%SQUIRRELDIR%%/plugins/smallcal/Calendar.php +%%SQUIRRELDIR%%/plugins/smallcal/INSTALL.txt +%%SQUIRRELDIR%%/plugins/smallcal/color.php +%%SQUIRRELDIR%%/plugins/smallcal/colortable.gif +%%SQUIRRELDIR%%/plugins/smallcal/functions.php +%%SQUIRRELDIR%%/plugins/smallcal/index.php +%%SQUIRRELDIR%%/plugins/smallcal/setup.php +%%SQUIRRELDIR%%/plugins/smallcal/version +%%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/timeout_user/config.php +%%SQUIRRELDIR%%/plugins/timeout_user/functions.php +%%SQUIRRELDIR%%/plugins/timeout_user/index.php +%%SQUIRRELDIR%%/plugins/timeout_user/setup.php +%%SQUIRRELDIR%%/plugins/timeout_user/version +%%SQUIRRELDIR%%/plugins/todo/config.php +%%SQUIRRELDIR%%/plugins/todo/functions.php +%%SQUIRRELDIR%%/plugins/todo/index.php +%%SQUIRRELDIR%%/plugins/todo/locale/LC_MESSAGES/pt_BR/todo.mo +%%SQUIRRELDIR%%/plugins/todo/locale/LC_MESSAGES/pt_BR/todo.po +%%SQUIRRELDIR%%/plugins/todo/setup.php +%%SQUIRRELDIR%%/plugins/todo/setup_functions.php +%%SQUIRRELDIR%%/plugins/todo/todo.php +%%SQUIRRELDIR%%/plugins/todo/version +%%SQUIRRELDIR%%/plugins/translate/index.php +%%SQUIRRELDIR%%/plugins/translate/options.php +%%SQUIRRELDIR%%/plugins/translate/setup.php +%%SQUIRRELDIR%%/plugins/vkeyboard/CHANGELOG +%%SQUIRRELDIR%%/plugins/vkeyboard/COPYING +%%SQUIRRELDIR%%/plugins/vkeyboard/THANKS +%%SQUIRRELDIR%%/plugins/vkeyboard/config.php +%%SQUIRRELDIR%%/plugins/vkeyboard/config.php.sample +%%SQUIRRELDIR%%/plugins/vkeyboard/functions.php +%%SQUIRRELDIR%%/plugins/vkeyboard/help.php +%%SQUIRRELDIR%%/plugins/vkeyboard/index.php +%%SQUIRRELDIR%%/plugins/vkeyboard/layouts/cs_czech.php +%%SQUIRRELDIR%%/plugins/vkeyboard/layouts/es_ES.php +%%SQUIRRELDIR%%/plugins/vkeyboard/layouts/fr_FR.php +%%SQUIRRELDIR%%/plugins/vkeyboard/layouts/index.php +%%SQUIRRELDIR%%/plugins/vkeyboard/layouts/pl_PL.php +%%SQUIRRELDIR%%/plugins/vkeyboard/layouts/portuguese_abnt2.php +%%SQUIRRELDIR%%/plugins/vkeyboard/layouts/us_english.php +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/cs_CZ/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/cs_CZ/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/de_DE/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/de_DE/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/el/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/el/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/es_ES/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/es_ES/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/fr/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/fr/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/fr_FR/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/fr_FR/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/it/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/it/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/nl_NL/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/nl_NL/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/pl_PL/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/pl_PL/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/pt_BR/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/plugins/vkeyboard/locale/pt_BR/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/plugins/vkeyboard/setup.php +%%SQUIRRELDIR%%/plugins/vkeyboard/version +%%SQUIRRELDIR%%/plugins/vkeyboard/vkeyboard.php +%%SQUIRRELDIR%%/plugins/vkeyboard/vkeyboard.po +%%SQUIRRELDIR%%/plugins/vlogin/COPYING +%%SQUIRRELDIR%%/plugins/vlogin/data/.htaccess +%%SQUIRRELDIR%%/plugins/vlogin/data/config.php.sample +%%SQUIRRELDIR%%/plugins/vlogin/data/config.php.sample.per_user_functions_only +%%SQUIRRELDIR%%/plugins/vlogin/data/config.php.sample.service_level_functions_only +%%SQUIRRELDIR%%/plugins/vlogin/data/config.php.sample.typical +%%SQUIRRELDIR%%/plugins/vlogin/data/domains/.htaccess +%%SQUIRRELDIR%%/plugins/vlogin/data/domains/domain.com.vlogin.config.php +%%SQUIRRELDIR%%/plugins/vlogin/data/domains/index.php +%%SQUIRRELDIR%%/plugins/vlogin/data/hostmap.dat.sample +%%SQUIRRELDIR%%/plugins/vlogin/data/index.php +%%SQUIRRELDIR%%/plugins/vlogin/data/service_levels.dat.sample +%%SQUIRRELDIR%%/plugins/vlogin/data/service_levels/.htaccess +%%SQUIRRELDIR%%/plugins/vlogin/data/service_levels/index.php +%%SQUIRRELDIR%%/plugins/vlogin/data/service_levels/premium.php.sample +%%SQUIRRELDIR%%/plugins/vlogin/data/users.dat.sample +%%SQUIRRELDIR%%/plugins/vlogin/functions.php +%%SQUIRRELDIR%%/plugins/vlogin/index.php +%%SQUIRRELDIR%%/plugins/vlogin/make_release.sh +%%SQUIRRELDIR%%/plugins/vlogin/per_user_functions.php +%%SQUIRRELDIR%%/plugins/vlogin/service_level_functions.php +%%SQUIRRELDIR%%/plugins/vlogin/setup.php +%%SQUIRRELDIR%%/plugins/vlogin/sql_settings_lookup.php +%%SQUIRRELDIR%%/plugins/vlogin/version +%%SQUIRRELDIR%%/po/compilepo +%%SQUIRRELDIR%%/po/independent_strings.txt +%%SQUIRRELDIR%%/po/index.php +%%SQUIRRELDIR%%/po/mergepo +%%SQUIRRELDIR%%/po/squirrelmail.pot +%%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/configtest.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/login_old.php +%%SQUIRRELDIR%%/src/mailto.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/read_body_old1.php +%%SQUIRRELDIR%%/src/redirect.php +%%SQUIRRELDIR%%/src/right_main.php +%%SQUIRRELDIR%%/src/search.php +%%SQUIRRELDIR%%/src/signout.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/autumn.php +%%SQUIRRELDIR%%/themes/autumn2.php +%%SQUIRRELDIR%%/themes/black_bean_burrito_theme.php +%%SQUIRRELDIR%%/themes/blue_grey_theme.php +%%SQUIRRELDIR%%/themes/blue_on_blue.php +%%SQUIRRELDIR%%/themes/bluesnews_theme.php +%%SQUIRRELDIR%%/themes/bluesome.php +%%SQUIRRELDIR%%/themes/bluesteel_theme.php +%%SQUIRRELDIR%%/themes/christmas.php +%%SQUIRRELDIR%%/themes/classic_blue.php +%%SQUIRRELDIR%%/themes/classic_blue2.php +%%SQUIRRELDIR%%/themes/css/comic-sans-08.css +%%SQUIRRELDIR%%/themes/css/comic-sans-10.css +%%SQUIRRELDIR%%/themes/css/comic-sans-12.css +%%SQUIRRELDIR%%/themes/css/index.php +%%SQUIRRELDIR%%/themes/css/outlook-08.css +%%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/css/tahoma-08.css +%%SQUIRRELDIR%%/themes/css/tahoma-10.css +%%SQUIRRELDIR%%/themes/css/tahoma-12.css +%%SQUIRRELDIR%%/themes/css/verdana-08.css +%%SQUIRRELDIR%%/themes/css/verdana-10.css +%%SQUIRRELDIR%%/themes/css/verdana-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/minimal_bw.php +%%SQUIRRELDIR%%/themes/monostochastic.php +%%SQUIRRELDIR%%/themes/netstyle_theme.php +%%SQUIRRELDIR%%/themes/outlook.php +%%SQUIRRELDIR%%/themes/penguin.php +%%SQUIRRELDIR%%/themes/plain_blue_theme.php +%%SQUIRRELDIR%%/themes/powder_blue.php +%%SQUIRRELDIR%%/themes/purple_theme.php +%%SQUIRRELDIR%%/themes/random.php +%%SQUIRRELDIR%%/themes/redmond.php +%%SQUIRRELDIR%%/themes/sandstorm_theme.php +%%SQUIRRELDIR%%/themes/seaspray_theme.php +%%SQUIRRELDIR%%/themes/servery_theme.php +%%SQUIRRELDIR%%/themes/shades_of_grey.php +%%SQUIRRELDIR%%/themes/silver_steel_theme.php +%%SQUIRRELDIR%%/themes/simple_green2.php +%%SQUIRRELDIR%%/themes/simple_green_theme.php +%%SQUIRRELDIR%%/themes/simple_purple.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 +%%SQUIRRELDIR%%/themes/techno_blue.php +%%SQUIRRELDIR%%/themes/turquoise.php +%%SQUIRRELDIR%%/themes/wood_theme.php +@dirrmtry etc/periodic/daily +@dirrmtry etc/periodic +@dirrm %%SQUIRRELDIR%%/themes/css +@dirrm %%SQUIRRELDIR%%/themes +@dirrm %%SQUIRRELDIR%%/src +@dirrm %%SQUIRRELDIR%%/po +@dirrm %%SQUIRRELDIR%%/plugins/vlogin/data/service_levels +@dirrm %%SQUIRRELDIR%%/plugins/vlogin/data/domains +@dirrm %%SQUIRRELDIR%%/plugins/vlogin/data +@dirrm %%SQUIRRELDIR%%/plugins/vlogin +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/pt_BR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/pt_BR +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/pl_PL/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/pl_PL +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/nl_NL/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/nl_NL +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/it/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/it +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/fr_FR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/fr_FR +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/fr/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/fr +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/es_ES/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/es_ES +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/el/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/el +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/de_DE/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/de_DE +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/cs_CZ/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale/cs_CZ +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/locale +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard/layouts +@dirrm %%SQUIRRELDIR%%/plugins/vkeyboard +@dirrm %%SQUIRRELDIR%%/plugins/translate +@dirrm %%SQUIRRELDIR%%/plugins/todo/locale/LC_MESSAGES/pt_BR +@dirrm %%SQUIRRELDIR%%/plugins/todo/locale/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/todo/locale +@dirrm %%SQUIRRELDIR%%/plugins/todo +@dirrm %%SQUIRRELDIR%%/plugins/timeout_user +@dirrm %%SQUIRRELDIR%%/plugins/squirrelspell/modules +@dirrm %%SQUIRRELDIR%%/plugins/squirrelspell/js +@dirrm %%SQUIRRELDIR%%/plugins/squirrelspell +@dirrm %%SQUIRRELDIR%%/plugins/spamcop +@dirrm %%SQUIRRELDIR%%/plugins/smallcal +@dirrm %%SQUIRRELDIR%%/plugins/show_headers +@dirrm %%SQUIRRELDIR%%/plugins/sent_subfolders +@dirrm %%SQUIRRELDIR%%/plugins/preview_pane/source_files +@dirrm %%SQUIRRELDIR%%/plugins/preview_pane/patches +@dirrm %%SQUIRRELDIR%%/plugins/preview_pane/locale/el_GR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/preview_pane/locale/el_GR +@dirrm %%SQUIRRELDIR%%/plugins/preview_pane/locale +@dirrm %%SQUIRRELDIR%%/plugins/preview_pane +@dirrm %%SQUIRRELDIR%%/plugins/notes/locale/pt_BR/LC_MESSSAGES +@dirrm %%SQUIRRELDIR%%/plugins/notes/locale/pt_BR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/notes/locale/pt_BR +@dirrm %%SQUIRRELDIR%%/plugins/notes/locale +@dirrm %%SQUIRRELDIR%%/plugins/notes/images +@dirrm %%SQUIRRELDIR%%/plugins/notes +@dirrm %%SQUIRRELDIR%%/plugins/newuser_wiz +@dirrm %%SQUIRRELDIR%%/plugins/newmail/sounds +@dirrm %%SQUIRRELDIR%%/plugins/newmail +@dirrm %%SQUIRRELDIR%%/plugins/msg_flags/src +@dirrm %%SQUIRRELDIR%%/plugins/msg_flags/functions +@dirrm %%SQUIRRELDIR%%/plugins/msg_flags +@dirrm %%SQUIRRELDIR%%/plugins/message_details +@dirrm %%SQUIRRELDIR%%/plugins/mail_fetch +@dirrm %%SQUIRRELDIR%%/plugins/login_auto +@dirrm %%SQUIRRELDIR%%/plugins/lockout/data +@dirrm %%SQUIRRELDIR%%/plugins/lockout +@dirrm %%SQUIRRELDIR%%/plugins/listcommands +@dirrm %%SQUIRRELDIR%%/plugins/legend +@dirrm %%SQUIRRELDIR%%/plugins/info +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/patches +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/images +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea_cvs +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/popups +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/lang +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/img +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/TableOperations +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/lang/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/lang +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/img/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/img +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/SpellChecker +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ListType/lang/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ListType/lang +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ListType/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ListType +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/lang/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/lang +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/img/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/img +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/HtmlTidy +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/popups/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/popups +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/lang/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/lang +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/img/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/img +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/FullPage +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/EnterParagraphs/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/EnterParagraphs +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS/lang/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS/lang +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/DynamicCSS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/lang/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/lang +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/ContextMenu +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/popups/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/popups +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/lang/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/lang +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/img/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/img +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CharacterMap +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CSS/lang/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CSS/lang +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CSS/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins/CSS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/plugins +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/lang +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/images +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea/CVS +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/htmlarea +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/toolbar +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver/images +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/silver +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/toolbar +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003/images +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/office2003 +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/toolbar +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default/images +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins/default +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/skins +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/plugins/tablecommands +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/plugins/simplecommands +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/plugins/placeholder/lang +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/plugins/placeholder +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/plugins +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/lang +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/js +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/msn +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley/fun +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images/smiley +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/images +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload/php +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload/lasso +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload/aspx +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload/asp +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/upload +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/js +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/toolbar +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons/32 +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images/icons +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/images +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/dtd +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Docs +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/helpers +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Auth +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors/php +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk/connectors +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/mcpuk +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/js +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons/32 +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images/icons +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/images +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/php +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/perl +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/lasso +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/cfm +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/aspx +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors/asp +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default/connectors +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser/default +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager/browser +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/filemanager +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_universalkey +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_template/images +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_template +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages/spellerpages +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_spellerpages +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_select +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_link +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_image +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_flash +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_docprops +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/fck_about +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/common/images +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog/common +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/dialog +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/css/images +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/css/behaviors +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/css +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/internals +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/globals +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/commandclasses +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source/classes +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor/_source +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor/editor +@dirrm %%SQUIRRELDIR%%/plugins/html_mail/fckeditor +@dirrm %%SQUIRRELDIR%%/plugins/html_mail +@dirrm %%SQUIRRELDIR%%/plugins/fortune +@dirrm %%SQUIRRELDIR%%/plugins/forced_prefs/doc +@dirrm %%SQUIRRELDIR%%/plugins/forced_prefs +@dirrm %%SQUIRRELDIR%%/plugins/filters/bulkquery +@dirrm %%SQUIRRELDIR%%/plugins/filters +@dirrm %%SQUIRRELDIR%%/plugins/delete_move_next +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/patches.old +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/patches +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/includes/1.5.0 +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/includes/1.4.6 +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/includes/1.4.5 +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/includes/1.4.4 +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/includes/1.4.3 +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/includes/1.4.2 +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/includes/1.4.1 +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/includes/1.4.0 +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/includes/1.2.9 +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/includes/1.2.8 +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/includes/1.2.7 +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/includes/1.2.11 +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/includes/1.2.10 +@dirrm %%SQUIRRELDIR%%/plugins/compatibility/includes +@dirrm %%SQUIRRELDIR%%/plugins/compatibility +@dirrm %%SQUIRRELDIR%%/plugins/check_quota/swf +@dirrm %%SQUIRRELDIR%%/plugins/check_quota/locale/tr_TR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/check_quota/locale/tr_TR +@dirrm %%SQUIRRELDIR%%/plugins/check_quota/locale/sv_SE/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/check_quota/locale/sv_SE +@dirrm %%SQUIRRELDIR%%/plugins/check_quota/locale/nl_NL/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/check_quota/locale/nl_NL +@dirrm %%SQUIRRELDIR%%/plugins/check_quota/locale/fr_FR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/check_quota/locale/fr_FR +@dirrm %%SQUIRRELDIR%%/plugins/check_quota/locale/es_ES/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/check_quota/locale/es_ES +@dirrm %%SQUIRRELDIR%%/plugins/check_quota/locale +@dirrm %%SQUIRRELDIR%%/plugins/check_quota/images +@dirrm %%SQUIRRELDIR%%/plugins/check_quota +@dirrm %%SQUIRRELDIR%%/plugins/calendar_file_backend +@dirrm %%SQUIRRELDIR%%/plugins/calendar +@dirrm %%SQUIRRELDIR%%/plugins/bug_report +@dirrm %%SQUIRRELDIR%%/plugins/bookmarks +@dirrm %%SQUIRRELDIR%%/plugins/askuserinfo +@dirrm %%SQUIRRELDIR%%/plugins/advanced_settings +@dirrm %%SQUIRRELDIR%%/plugins/administrator +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/zh_TW/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/zh_TW +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/zh_CN/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/zh_CN +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/vi_VN/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/vi_VN +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/uk_UA/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/uk_UA +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/tr_TR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/tr_TR +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/th_TH/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/th_TH +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/sv_SE/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/sv_SE +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/sr_YU/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/sr_YU +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/sl_SI/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/sl_SI +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/sk_SK/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/sk_SK +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/ru_RU/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/ru_RU +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/ro_RO/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/ro_RO +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/pt_PT/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/pt_PT +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/pt_BR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/pt_BR +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/pl_PL/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/pl_PL +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/no_NO/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/no_NO +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/nn_NO/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/nn_NO +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/nl_NL/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/nl_NL +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/lt_LT/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/lt_LT +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/ko_KR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/ko_KR +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/ja_JP/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/ja_JP +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/it_IT/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/it_IT +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/is_IS/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/is_IS +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/id_ID/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/id_ID +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/hu_HU/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/hu_HU +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/hr_HR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/hr_HR +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/he_IL/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/he_IL +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/he_HE/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/he_HE +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/fr_FR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/fr_FR +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/fi_FI/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/fi_FI +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/et_EE/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/et_EE +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/es_ES/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/es_ES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/el_GR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/el_GR +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/de_DE/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/de_DE +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/da_DK/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/da_DK +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/cs_CZ/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/cs_CZ +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/ca_ES/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/ca_ES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/bg_BG/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/bg_BG +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/ar/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale/ar +@dirrm %%SQUIRRELDIR%%/plugins/address_add/locale +@dirrm %%SQUIRRELDIR%%/plugins/address_add/includes +@dirrm %%SQUIRRELDIR%%/plugins/address_add/classes +@dirrm %%SQUIRRELDIR%%/plugins/address_add +@dirrm %%SQUIRRELDIR%%/plugins/abook_take +@dirrm %%SQUIRRELDIR%%/plugins/abook_backend_template/po +@dirrm %%SQUIRRELDIR%%/plugins/abook_backend_template/patch +@dirrm %%SQUIRRELDIR%%/plugins/abook_backend_template/locale +@dirrm %%SQUIRRELDIR%%/plugins/abook_backend_template +@dirrm %%SQUIRRELDIR%%/plugins +@dirrm %%SQUIRRELDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/zh_TW +@dirrm %%SQUIRRELDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/zh_CN +@dirrm %%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/vi_VN +@dirrm %%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/uk_UA +@dirrm %%SQUIRRELDIR%%/locale/ug/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/ug +@dirrm %%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/tr_TR +@dirrm %%SQUIRRELDIR%%/locale/tl_PH/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/tl_PH +@dirrm %%SQUIRRELDIR%%/locale/th_TH/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/th_TH +@dirrm %%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/sv_SE +@dirrm %%SQUIRRELDIR%%/locale/sr_YU/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/sr_YU +@dirrm %%SQUIRRELDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/sl_SI +@dirrm %%SQUIRRELDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/sk_SK +@dirrm %%SQUIRRELDIR%%/locale/ru_UA/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/ru_UA +@dirrm %%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/ru_RU +@dirrm %%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/ro_RO +@dirrm %%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/pt_PT +@dirrm %%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/pt_BR +@dirrm %%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/pl_PL +@dirrm %%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/nn_NO +@dirrm %%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/nl_NL +@dirrm %%SQUIRRELDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/nb_NO +@dirrm %%SQUIRRELDIR%%/locale/ms_MY/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/ms_MY +@dirrm %%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/lt_LT +@dirrm %%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/ko_KR +@dirrm %%SQUIRRELDIR%%/locale/ka/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/ka +@dirrm %%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/ja_JP +@dirrm %%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/it_IT +@dirrm %%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/is_IS +@dirrm %%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/id_ID +@dirrm %%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/hu_HU +@dirrm %%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/hr_HR +@dirrm %%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/he_IL +@dirrm %%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/fr_FR +@dirrm %%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/fo_FO +@dirrm %%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/fi_FI +@dirrm %%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/fa_IR +@dirrm %%SQUIRRELDIR%%/locale/eu_ES/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/eu_ES +@dirrm %%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/et_EE +@dirrm %%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/es_ES +@dirrm %%SQUIRRELDIR%%/locale/en_GB/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/en_GB +@dirrm %%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/el_GR +@dirrm %%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/de_DE +@dirrm %%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/da_DK +@dirrm %%SQUIRRELDIR%%/locale/cy_GB/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/cy_GB +@dirrm %%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/cs_CZ +@dirrm %%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/ca_ES +@dirrm %%SQUIRRELDIR%%/locale/bn_IN/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/bn_IN +@dirrm %%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/bg_BG +@dirrm %%SQUIRRELDIR%%/locale/ar/LC_MESSAGES +@dirrm %%SQUIRRELDIR%%/locale/ar +@dirrm %%SQUIRRELDIR%%/locale +@dirrm %%SQUIRRELDIR%%/include/options +@dirrm %%SQUIRRELDIR%%/include +@dirrm %%SQUIRRELDIR%%/images/icons +@dirrm %%SQUIRRELDIR%%/images/bg +@dirrm %%SQUIRRELDIR%%/images +@dirrm %%SQUIRRELDIR%%/help/zh_CN +@dirrm %%SQUIRRELDIR%%/help/uk_UA +@dirrm %%SQUIRRELDIR%%/help/th_TH +@dirrm %%SQUIRRELDIR%%/help/sv_SE +@dirrm %%SQUIRRELDIR%%/help/sr_YU +@dirrm %%SQUIRRELDIR%%/help/sl_SI +@dirrm %%SQUIRRELDIR%%/help/sk_SK +@dirrm %%SQUIRRELDIR%%/help/ru_RU +@dirrm %%SQUIRRELDIR%%/help/pt_PT +@dirrm %%SQUIRRELDIR%%/help/pt_BR +@dirrm %%SQUIRRELDIR%%/help/pl_PL +@dirrm %%SQUIRRELDIR%%/help/nl_NL +@dirrm %%SQUIRRELDIR%%/help/lt_LT +@dirrm %%SQUIRRELDIR%%/help/ko_KR +@dirrm %%SQUIRRELDIR%%/help/ja_JP +@dirrm %%SQUIRRELDIR%%/help/it_IT +@dirrm %%SQUIRRELDIR%%/help/id_ID +@dirrm %%SQUIRRELDIR%%/help/fr_FR +@dirrm %%SQUIRRELDIR%%/help/fi_FI +@dirrm %%SQUIRRELDIR%%/help/es_ES +@dirrm %%SQUIRRELDIR%%/help/en_US +@dirrm %%SQUIRRELDIR%%/help/en_GB +@dirrm %%SQUIRRELDIR%%/help/de_DE +@dirrm %%SQUIRRELDIR%%/help/da_DK +@dirrm %%SQUIRRELDIR%%/help/cy_GB +@dirrm %%SQUIRRELDIR%%/help/cs_CZ +@dirrm %%SQUIRRELDIR%%/help/ca_ES +@dirrm %%SQUIRRELDIR%%/help/bg_BG +@dirrm %%SQUIRRELDIR%%/help +@dirrm %%SQUIRRELDIR%%/functions/encode +@dirrm %%SQUIRRELDIR%%/functions/decode +@dirrm %%SQUIRRELDIR%%/functions +@dirrm %%SQUIRRELDIR%%/data +@dirrmtry %%SQUIRRELDIR%%/config +@dirrm %%SQUIRRELDIR%%/class/mime +@dirrm %%SQUIRRELDIR%%/class/helper +@dirrm %%SQUIRRELDIR%%/class/deliver +@dirrm %%SQUIRRELDIR%%/class +@dirrm %%SQUIRRELDIR%% |