Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Jul 2010 12:09:31 +0200 (CEST)
From:      Daniel Bond <db@nsn.no>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/149063: Updates squirrelmail to latest release (1.4.21)
Message-ID:  <201007291009.o6TA9VkE029787@webmail.nsn.no>
Resent-Message-ID: <201007291040.o6TAe1Kl096013@freefall.freebsd.org>

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

>Number:         149063
>Category:       ports
>Synopsis:       Updates squirrelmail to latest release (1.4.21)
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Jul 29 10:40:00 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Daniel Bond
>Release:        FreeBSD 7.3-RELEASE-p2 amd64
>Organization:
Network Solutions Norway ASA
>Environment:
>Description:
Updates squirrelmail to latest release (1.4.21), it fixes a bug that can cause slow logins.
I removed the patch for Deliver.class, as I suspect it is causing squirrelmail to crash while loading certain messages with special characters.


>How-To-Repeat:
	
>Fix:

	

--- squirrelmail.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	squirrelmail
#	squirrelmail/files
#	squirrelmail/files/patch-config-config_default.php
#	squirrelmail/files/111.clean-squirrelmail
#	squirrelmail/files/pkg-install.in
#	squirrelmail/files/patch-functions__i18n.php
#	squirrelmail/files/pkg-deinstall.in
#	squirrelmail/files/pkg-message.in
#	squirrelmail/bsd.squirrelmail.mk
#	squirrelmail/Makefile
#	squirrelmail/distinfo
#	squirrelmail/pkg-descr
#	squirrelmail/pkg-plist
#
echo c - squirrelmail
mkdir -p squirrelmail > /dev/null 2>&1
echo c - squirrelmail/files
mkdir -p squirrelmail/files > /dev/null 2>&1
echo x - squirrelmail/files/patch-config-config_default.php
sed 's/^X//' >squirrelmail/files/patch-config-config_default.php << 'fed8f641d7b2e9f90a28b9860db3e2bb'
X--- config/config_default.php.orig	Wed May  9 16:48:26 2007
X+++ config/config_default.php	Wed May  9 16:49:20 2007
X@@ -464,7 +464,7 @@
X  *
X  * @global string $data_dir
X  */
X-$data_dir = '/var/local/squirrelmail/data/';
X+$data_dir = '/var/spool/squirrelmail/pref/';
X 
X /**
X  * Attachments directory
X@@ -482,7 +482,7 @@
X  *    + It should probably be another directory than data_dir.
X  * @global string $attachment_dir
X  */
X-$attachment_dir = '/var/local/squirrelmail/attach/';
X+$attachment_dir = '/var/spool/squirrelmail/attach/';
X 
X /**
X  * Hash level used for data directory.
fed8f641d7b2e9f90a28b9860db3e2bb
echo x - squirrelmail/files/111.clean-squirrelmail
sed 's/^X//' >squirrelmail/files/111.clean-squirrelmail << '7f534cc556b909d52fc77e8aba220491'
X#!/bin/sh
X#
X# $FreeBSD: ports/mail/squirrelmail/files/111.clean-squirrelmail,v 1.1 2004/01/13 09:14:24 edwin Exp $
X#
X# This script copied from /etc/periodic/daily/110.clean-tmps,v 1.6.2.4 2002/10/13 19:59:01
X#
X# Perform attachment directory cleaning so that long-lived systems
X# don't end up with excessively old files there.
X#
X
X# Define these variables in either /etc/periodic.conf or
X# /etc/periodic.conf.local to override the default values.
X#
X# 111.clean-squirrelmail
Xclean_squirrelmail_enable="NO"					# Delete squirrelmail attachments
Xclean_squirrelmail_dirs="/var/spool/squirrelmail/attach"	# Delete under here
Xclean_squirrelmail_days="10"					# If not accessed for
Xclean_squirrelmail_ignore="quota.user quota.group"		# Don't delete these
Xclean_squirrelmail_verbose="YES"				# Mention files deleted
X
X# If there is a global system configuration file, suck it in.
X#
Xif [ -r /etc/defaults/periodic.conf ]
Xthen
X    . /etc/defaults/periodic.conf
X    source_periodic_confs
Xfi
X
Xcase "$clean_squirrelmail_enable" in
X    [Yy][Ee][Ss])
X	if [ -z "$clean_squirrelmail_days" ]
X	then
X	    echo '$clean_squirrelmail_enable is set but' \
X		'$clean_squirrelmail_days is not'
X	    rc=2
X	else
X	    echo ""
X	    echo "Removing old SquirrelMail Attachment files:"
X
X	    set -f noglob
X	    args="-atime +$clean_squirrelmail_days -mtime +$clean_squirrelmail_days"
X	    args="${args} -ctime +$clean_squirrelmail_days"
X	    [ -n "$clean_squirrelmail_ignore" ] &&
X		args="$args "`echo " ${clean_squirrelmail_ignore% }" |
X		    sed 's/[ 	][ 	]*/ ! -name /g'`
X	    case "$clean_squirrelmail_verbose" in
X		[Yy][Ee][Ss])
X		    print=-print;;
X		*)
X		    print=;;
X	    esac
X
X	    rc=$(for dir in $clean_squirrelmail_dirs
X		do
X		    [ ."${dir#/}" != ."$dir" -a -d $dir ] && cd $dir && {
X			find -d . -type f $args -delete $print
X			find -d . ! -name . -type d -empty -mtime \
X			    +$clean_squirrelmail_days -delete $print
X		    } | sed "s,^\\.,  $dir,"
X		done | tee /dev/stderr | wc -l)
X	    [ -z "$print" ] && rc=0
X	    [ $rc -gt 1 ] && rc=1
X	    set -f glob
X	fi;;
X
X    *)  rc=0;;
Xesac
X
Xexit $rc
7f534cc556b909d52fc77e8aba220491
echo x - squirrelmail/files/pkg-install.in
sed 's/^X//' >squirrelmail/files/pkg-install.in << '82a6f7597ad6a34cf5a4d6f5a07696aa'
X#!/bin/sh
X#
X#	$FreeBSD: ports/mail/squirrelmail/files/pkg-install.in,v 1.1 2006/03/20 16:24:34 garga Exp $
X#
X
XPKG_BATCH=${BATCH:=NO}
XPKG_PREFIX=${PKG_PREFIX:=/usr/local}
X
XSQUIRRELDIR=%%SQUIRRELDIR%%
X
Xcase $2 in
XPRE-INSTALL)
X	USER=www
X	GROUP=${USER}
X	UID=80
X	GID=${UID}
X
X	if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then
X		if pw groupadd ${GROUP} -g ${GID}; then
X			echo "Added group \"${GROUP}\"."
X		else
X			echo "Adding group \"${GROUP}\" failed..."
X			exit 1
X		fi
X	fi
X
X	if ! pw usershow "${USER}" 2>/dev/null 1>&2; then
X		if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
X			-s "/sbin/nologin" -d "/nonexistent" \
X			-c "World Wide Web Owner"; \
X		then
X			echo "Added user \"${USER}\"."
X		else
X			echo "Adding user \"${USER}\" failed..."
X			exit 1
X		fi
X	fi
X
X	exit 0
X	;;
XPOST-INSTALL)
X	if [ "${PKG_BATCH}" = "NO" ]; then
X		install -d -o www -g www -m 0755 /var/spool/squirrelmail
X		install -d -o www -g www -m 0730 /var/spool/squirrelmail/attach
X		install -d -o www -g www -m 0750 /var/spool/squirrelmail/pref
X		if [ ! -f /var/spool/squirrelmail/pref/default_pref ]; then
X			cp -rp ${SQUIRRELDIR}/data/default_pref \
X				/var/spool/squirrelmail/pref/default_pref
X		else
X			echo ""
X			echo "An older version of default_pref exists in"
X			echo "/var/spool/squirrelmail/pref, you may want to"
X			echo "compare it with the one in ${SQUIRRELDIR}/data"
X		fi
X	fi
X	;;
Xesac
82a6f7597ad6a34cf5a4d6f5a07696aa
echo x - squirrelmail/files/patch-functions__i18n.php
sed 's/^X//' >squirrelmail/files/patch-functions__i18n.php << '94276ca49e7cd407239edc048047572e'
X--- ./functions/i18n.php.orig	2010-06-02 11:26:40.000000000 -0400
X+++ ./functions/i18n.php	2010-06-02 11:28:33.000000000 -0400
X@@ -683,7 +683,8 @@
X             $useragent = func_get_arg(2);
X             if (strstr($useragent, 'Windows') !== false ||
X                 strstr($useragent, 'Mac_') !== false) {
X-                $ret = mb_convert_encoding($ret, 'SJIS', 'AUTO');
X+                $ret = mb_convert_encoding($ret, 'UTF-8', 'AUTO');
X+
X             } else {
X                 $ret = mb_convert_encoding($ret, 'EUC-JP', 'AUTO');
X }
94276ca49e7cd407239edc048047572e
echo x - squirrelmail/files/pkg-deinstall.in
sed 's/^X//' >squirrelmail/files/pkg-deinstall.in << '4ccc7d8421ca87b3e1940176b1dd39e3'
X#!/bin/sh
X#
X#	$FreeBSD: ports/mail/squirrelmail/files/pkg-deinstall.in,v 1.1 2006/03/20 16:24:34 garga Exp $
X#
X
X#set -vx
X
XPKG_BATCH=${BATCH:=NO}
X
XPKG_PREFIX=${PKG_PREFIX:=/usr/local}
X
XSQUIRRELDIR=%%SQUIRRELDIR%%
X
Xcheckfile() {
X        diff -bBqw $1 $2 >/dev/null 2>&1
X        case $? in
X                0)      # config file exists, but is the same
X			rm $1
X                        ;;
X                1)      # config file exists and differs
X                        ;;
X                *)      # no config file exists
X                        ;;
X        esac
X}
X
Xcase $2 in
X	DEINSTALL)
X		cd ${PKG_PREFIX}
X		checkfile /var/spool/squirrelmail/prefs/default_pref \
X			${SQUIRRELDIR}/data/default_pref
X		;;
X	POST-DEINSTALL)
X		if [ "${PKG_BATCH}" = "NO" ]; then
X			echo "If you are no longer going to use SquirrelMail"
X			echo "you should remove the /var/spool/squirrelmail"
X			echo "directory with:"
X			echo
X			echo "	rm -rf /var/spool/squirrelmail"
X		fi
X		;;
X
Xesac
4ccc7d8421ca87b3e1940176b1dd39e3
echo x - squirrelmail/files/pkg-message.in
sed 's/^X//' >squirrelmail/files/pkg-message.in << '1cd0a3e0b4fdcee7890b9fd7f2504dbb'
X
XYou now need to add an alias to apache's httpd.conf pointing to
X%%SQUIRRELDIR%% in order to access SquirrelMail from
Xyour web browser, or create a VirtualHost with DocumentRoot set to
Xthat directory.
X
XFor SquirrelMail to work properly you will need to make sure the
Xfollowing option is set in your php.ini file:
Xfile_uploads = On
X
XIf you have problems with SquirrelMail saying "you must login" after
Xyou just have, the following php.ini option may help:
Xsession.auto_start = 1
X
XIn order to do your administrative configuration you need to 
Xcd %%SQUIRRELDIR%% && ./configure
XSquirrelMail will not work until this has been done. After this
Xstep is complete, and the config.php is created, plugin ports will
Xproperly auto activate.
X
1cd0a3e0b4fdcee7890b9fd7f2504dbb
echo x - squirrelmail/bsd.squirrelmail.mk
sed 's/^X//' >squirrelmail/bsd.squirrelmail.mk << 'c38b61383c513ac5c3469d3abb1e5bd8'
X# $FreeBSD: ports/mail/squirrelmail/bsd.squirrelmail.mk,v 1.8 2010/05/22 19:16:54 itetcu Exp $
X#
X# $LastChangedDate: 2010-02-01 22:21:34 -0500 (Mon, 01 Feb 2010) $
X#
X# Common code for squirrelmail plugins.
X#
X# Created & tested by 
X# Thomas Abthorpe <tabthorpe@FreeBSD.org>
X# Philippe Audeoud <jadawin@FreeBSD.org>
X# Some enhancements by
X# Ion-Mihai "IOnut" Tetcu <itetcu@FreeBSD.org>
X#
X# This code is still a work in progress, and will likely need further
X# tweaking. Feedback is always welcome.
X#
X
XCATEGORIES?=	mail www
XMASTER_SITES?=	http://www.squirrelmail.org/plugins/
XPKGNAMEPREFIX?=	squirrelmail-
XPKGNAMESUFFIX?=	-plugin
X
XRUN_DEPENDS+=	${SQUIRRELDIR}/index.php:${PORTSDIR}/mail/squirrelmail
X
X.ifdef USE_SM_COMPAT
XRUN_DEPENDS+=	${SQUIRRELDIR}/plugins/compatibility:${PORTSDIR}/mail/squirrelmail-compatibility-plugin
X.endif
X
XNO_BUILD=		yes
XNO_WRKSUBDIR=		yes
XUSE_PHP?=		yes
XWANT_PHP_WEB=		yes
X
XSQUIRREL_PLUGIN_NAME?=   ${PORTNAME}
X
X.ifdef SQUIRRELDIR
XPLIST_SUB+=     SQUIRRELDIR=${SQUIRRELDIR}
XSUB_LIST+=      SQUIRRELDIR=${SQUIRRELDIR}
X.else
X.ifndef WITHOUT_WWWDIR
XSQUIRRELDIR=    ${PREFIX}/www/squirrelmail
XPLIST_SUB+=     SQUIRRELDIR=www/squirrelmail
XSUB_LIST+=      SQUIRRELDIR=www/squirrelmail
X.else
XSQUIRRELDIR=    ${PREFIX}/squirrelmail
XPLIST_SUB+=     SQUIRRELDIR=squirrelmail
XSUB_LIST+=      SQUIRRELDIR=squirrelmail
X.endif
X.endif
XPLIST_SUB+=     SQUIRREL_PLUGIN_NAME=${SQUIRREL_PLUGIN_NAME}
X
X.if exists(${FILESDIR}/pkg-message.in)
XSUB_LIST+=	SQUIRREL_PLUGIN_NAME=${SQUIRREL_PLUGIN_NAME}
XSUB_FILES=	pkg-message
X.endif
X
X.if !target(pre-everything)
Xpre-everything::
X	@${ECHO_CMD} ""
X.ifndef WITHOUT_ACTIVATE
X	@${ECHO_CMD} "Activating plug-in in SquirrelMail after installation."
X	@${ECHO_CMD} "If you don't want to automatically activate the plug-in set"
X	@${ECHO_CMD} "WITHOUT_ACTIVATE=yes"
X.else
X	@${ECHO_CMD} "NOT Activating plug-in in SquirrelMail after installation."
X	@${ECHO_CMD} "If you want to automatically activate the plug-in unset"
X	@${ECHO_CMD} "WITHOUT_ACTIVATE"
X.endif
X	@${ECHO_CMD} ""
X.endif
X
X_SMSRCDIR?=	${SQUIRREL_PLUGIN_NAME}
X
X.if !target(do-install)
Xdo-install:
X	cd ${WRKSRC}/${_SMSRCDIR} && ${FIND} -d . | \
X		${CPIO} -dump ${SQUIRRELDIR}/plugins/${SQUIRREL_PLUGIN_NAME} >/dev/null 2>&1 && \
X	${FIND} ${SQUIRRELDIR}/plugins/${SQUIRREL_PLUGIN_NAME} \
X		-type d -exec chmod 755 {} \; && \
X	${FIND} ${SQUIRRELDIR}/plugins/${SQUIRREL_PLUGIN_NAME} \
X		-type f -exec chmod 644 {} \;
X.endif
X
X.if !target(post-install)
Xpost-install:
X.ifndef WITHOUT_ACTIVATE
X.if exists( ${SQUIRRELDIR}/config/config.php )
X	@${ECHO_CMD} "Activating plug-in in SquirrelMail"
X	${SQUIRRELDIR}/config/conf.pl --install-plugin ${SQUIRREL_PLUGIN_NAME}
X.endif
X.else
X	@${ECHO_CMD} "To activate the plug-in in SquirrelMail use"
X	@${ECHO_CMD} "${SQUIRRELDIR}/config/conf.pl --install-plugin ${SQUIRREL_PLUGIN_NAME}"
X.endif
X	@${ECHO_CMD} ""
X
X.if exists(${FILESDIR}/pkg-message.in)
X	@${CAT} ${PKGMESSAGE}
X	@${ECHO_CMD} ""
X.endif
X.endif
c38b61383c513ac5c3469d3abb1e5bd8
echo x - squirrelmail/Makefile
sed 's/^X//' >squirrelmail/Makefile << '724e75feb5cff71faa2d006de119f21d'
X# New ports collection makefile for:	squirrelmail
X# Date created: 			27 December 2001
X# Whom: 				Simon Dick <simond@irrelevant.org>
X#
X# $FreeBSD: ports/mail/squirrelmail/Makefile,v 1.70 2010/06/02 18:31:09 tabthorpe Exp $
X#
X
XPORTNAME=	squirrelmail
XPORTVERSION=	1.4.21
XPORTREVISION=	2
XCATEGORIES=	mail www
XMASTER_SITES=	SF/${PORTNAME}/stable/${PORTVERSION:S/.r/-RC/}:squirrelmail \
X		SF/${PORTNAME}/locales/1.4.18-20090526:locales
XDISTNAME=	${PORTNAME}-${PORTVERSION:S/.r/-RC/}
XDISTFILES=	${DISTNAME}${EXTRACT_SUFX}:squirrelmail \
X		all_locales-1.4.18-20090526${EXTRACT_SUFX}:locales
XDIST_SUBDIR=	${PORTNAME}
X
XMAINTAINER=	tabthorpe@freebsd.org
XCOMMENT=	A webmail system which accesses mail over IMAP
X
XUSE_PHP=	session mhash gettext mbstring pcre openssl xml
XWANT_PHP_WEB=	yes
X
XUSE_BZIP2=	yes
XUSE_GETTEXT=	yes
X
X.ifdef WITH_DATABASE
XRUN_DEPENDS+=	${LOCALBASE}/share/pear/DB.php:${PORTSDIR}/databases/pear-DB
X.endif
X
X.ifdef WITH_LDAP
XUSE_PHP+=	ldap
X.endif
X
X.ifndef WITHOUT_WWWDIR
XSQUIRRELDIR?=	${PREFIX}/www/${PORTNAME}
X.else
XSQUIRRELDIR?=	${PREFIX}/${PORTNAME}
X.endif
X
XPLIST_SUB=	PORTVERSION=${PORTVERSION} \
X		SQUIRRELDIR="${SQUIRRELDIR:S,^${PREFIX}/,,}"
X
XSUB_FILES=	pkg-message pkg-install pkg-deinstall
XSUB_LIST=	SQUIRRELDIR=${SQUIRRELDIR}
X
XPORTDOCS=	*
X
Xpre-everything::
X	@${ECHO_CMD} "SquirrelMail is installed into ${SQUIRRELDIR}"
X	@${ECHO_CMD} "To use the old location ${PREFIX}/${PORTNAME} define"
X	@${ECHO_CMD} "WITHOUT_WWWDIR when patching or installing"
X	@${ECHO_CMD}
X	@${ECHO_CMD} "Use WITH_LDAP to ensure PHP LDAP support is installed"
X	@${ECHO_CMD} "Use WITH_DATABASE to ensure PEAR framework for database support is installed"
X	@${ECHO_CMD} "   (note that this does not install the database specific PEAR support, e.g. MySQL)"
X	@${ECHO_CMD}
X
Xpost-patch:
X.ifndef PATCH_DEBUG
X	@${RM} -f \
X		${WRKSRC}/class/deliver/Deliver.class.php.orig \
X		${WRKSRC}/config/config_default.php.orig \
X		${WRKSRC}/functions/global.php.orig \
X		${WRKSRC}/functions/i18n.php.orig \
X		${WRKSRC}/functions/imap_search.php.orig \
X		${WRKSRC}/src/addrbook_search_html.php.orig \
X		${WRKSRC}/src/compose.php.orig
X.endif
X	@${REINPLACE_CMD} -e 's|ispell|${LOCALBASE}/bin/ispell|g' \
X		${WRKSRC}/plugins/squirrelspell/sqspell_config.php
X	@${REINPLACE_CMD} -e 's|/usr/bin/fortune|/usr/games/fortune|g' \
X		${WRKSRC}/plugins/fortune/fortune_functions.php
X	@${RM} ${WRKSRC}/plugins/squirrelspell/sqspell_config.php.bak \
X		${WRKSRC}/plugins/fortune/fortune_functions.php.bak
X
X# Rearrange the documentation
Xdo-build:
X	@${MV} ${WRKSRC}/themes/README.themes ${WRKSRC}/doc/
X	@cd ${WRKSRC} ; for f in `find plugins -name "README*" -or \
X		-name INSTALL -or -name CHANGES -or -name HISTORY`; \
X		do \
X		${MKDIR} doc/`dirname $$f` ; \
X		${MV} $$f doc/`dirname $$f` ; \
X	done; \
X	${MV} doc/plugins/squirrelspell/doc/README doc/plugins/squirrelspell ; \
X	${RM} -rf doc/plugins/squirrelspell/doc ; \
X	${MV} plugins/squirrelspell/doc/* doc/plugins/squirrelspell ; \
X	${RM} -f doc/plugins/squirrelspell/index.php ; \
X	${RM} -rf plugins/squirrelspell/doc
X	@${ECHO} "left_refresh=300" >> ${WRKSRC}/data/default_pref
X	@${CP} -r ${WRKSRC}/../locale ${WRKSRC}
X	@${CP} -r ${WRKSRC}/../images ${WRKSRC}
X	@${CP} -r ${WRKSRC}/../help ${WRKSRC}
X	@${MV} ${WRKSRC}/config/config_local.php ${WRKSRC}/config/config_local.php.sample
X
Xpre-install:
X	@${ECHO} "Your umask should be lax while installing this. Like, 022 or something."
X	@${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
X
Xdo-install:
X	${MKDIR} ${PREFIX}/etc/periodic/daily
X	${INSTALL_SCRIPT} ${FILESDIR}/111.clean-squirrelmail ${PREFIX}/etc/periodic/daily
X	${MKDIR} ${SQUIRRELDIR}
X	@${CP} -pv ${WRKSRC}/index.php ${SQUIRRELDIR}
X	@${CP} -pv ${WRKSRC}/configure ${SQUIRRELDIR}
X.for DIR in class config data functions help images include locale plugins po src themes
X	@${CP} -rpv ${WRKSRC}/${DIR} ${SQUIRRELDIR}
X.endfor
X	${CHOWN} -R ${WWWOWN}:${WWWGRP} ${SQUIRRELDIR}/data
X.if !defined(NOPORTDOCS)
X	${MKDIR} ${DOCSDIR}
X	@${CP} -Rv ${WRKSRC}/doc/* ${DOCSDIR}
X.endif
X
Xpost-install:
X	@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
X	@${CAT} ${PKGMESSAGE}
X
X.include <bsd.port.mk>
724e75feb5cff71faa2d006de119f21d
echo x - squirrelmail/distinfo
sed 's/^X//' >squirrelmail/distinfo << 'b58b4dd8cfb6eb50489d917600605999'
XMD5 (squirrelmail/squirrelmail-1.4.21.tar.bz2) = 44d2fe85d6fc3092bf4f11e6e928f9dc
XSHA256 (squirrelmail/squirrelmail-1.4.21.tar.bz2) = 09f3a6c6e80f28a8a97a19d6653e0a52e4ca2a1dc2a692c1e7013f0ad218cc38
XSIZE (squirrelmail/squirrelmail-1.4.21.tar.bz2) = 526813
XMD5 (squirrelmail/all_locales-1.4.18-20090526.tar.bz2) = ddb51e99e87b2aa8180cebe07de89fa2
XSHA256 (squirrelmail/all_locales-1.4.18-20090526.tar.bz2) = b9198127084407950ad6158e030c76fdf9be5fd0d0abd69c606fb7757ae246c6
XSIZE (squirrelmail/all_locales-1.4.18-20090526.tar.bz2) = 3898341
b58b4dd8cfb6eb50489d917600605999
echo x - squirrelmail/pkg-descr
sed 's/^X//' >squirrelmail/pkg-descr << 'da3ae66dc75c76a1b77446286017f940'
XSquirrelMail is a standards-based webmail package written in PHP.
XIt includes built-in pure PHP support for the IMAP and SMTP protocols,
Xand all pages render in pure HTML 4.0 (with no Javascript) for
Xmaximum compatibility across browsers. It has very few requirements
Xand is very easy to configure and install. SquirrelMail has a all
Xthe functionality you would want from an email client, including
Xstrong MIME support, address books, and folder manipulation
X
XWWW: http://www.squirrelmail.org/
X
X- Simon Dick
Xsimond@irrelevant.org
da3ae66dc75c76a1b77446286017f940
echo x - squirrelmail/pkg-plist
sed 's/^X//' >squirrelmail/pkg-plist << '046e4d082c23f6184b82baa8e6301217'
Xetc/periodic/daily/111.clean-squirrelmail
X%%SQUIRRELDIR%%/class/.htaccess
X%%SQUIRRELDIR%%/class/deliver/Deliver.class.php
X%%SQUIRRELDIR%%/class/deliver/Deliver_IMAP.class.php
X%%SQUIRRELDIR%%/class/deliver/Deliver_SMTP.class.php
X%%SQUIRRELDIR%%/class/deliver/Deliver_SendMail.class.php
X%%SQUIRRELDIR%%/class/deliver/index.php
X%%SQUIRRELDIR%%/class/helper/VCard.class.php
X%%SQUIRRELDIR%%/class/helper/index.php
X%%SQUIRRELDIR%%/class/html.class.php
X%%SQUIRRELDIR%%/class/index.php
X%%SQUIRRELDIR%%/class/mime.class.php
X%%SQUIRRELDIR%%/class/mime/AddressStructure.class.php
X%%SQUIRRELDIR%%/class/mime/ContentType.class.php
X%%SQUIRRELDIR%%/class/mime/Disposition.class.php
X%%SQUIRRELDIR%%/class/mime/Language.class.php
X%%SQUIRRELDIR%%/class/mime/Message.class.php
X%%SQUIRRELDIR%%/class/mime/MessageHeader.class.php
X%%SQUIRRELDIR%%/class/mime/Rfc822Header.class.php
X%%SQUIRRELDIR%%/class/mime/SMimeMessage.class.php
X%%SQUIRRELDIR%%/class/mime/index.php
X%%SQUIRRELDIR%%/config/.htaccess
X%%SQUIRRELDIR%%/config/conf.pl
X%%SQUIRRELDIR%%/config/config_default.php
X@unexec if cmp -s %D%/www/squirrelmail/config/config_local.php %D%/www/squirrelmail/config/config_local.php.sample; then rm -f %D%/www/squirrelmail/config/config_local.php; fi
X%%SQUIRRELDIR%%/config/config_local.php.sample
X%%SQUIRRELDIR%%/config/index.php
X%%SQUIRRELDIR%%/configure
X%%SQUIRRELDIR%%/data/.htaccess
X%%SQUIRRELDIR%%/data/default_pref
X%%SQUIRRELDIR%%/data/index.php
X%%SQUIRRELDIR%%/functions/.htaccess
X%%SQUIRRELDIR%%/functions/abook_database.php
X%%SQUIRRELDIR%%/functions/abook_ldap_server.php
X%%SQUIRRELDIR%%/functions/abook_local_file.php
X%%SQUIRRELDIR%%/functions/addressbook.php
X%%SQUIRRELDIR%%/functions/attachment_common.php
X%%SQUIRRELDIR%%/functions/auth.php
X%%SQUIRRELDIR%%/functions/constants.php
X%%SQUIRRELDIR%%/functions/date.php
X%%SQUIRRELDIR%%/functions/db_prefs.php
X%%SQUIRRELDIR%%/functions/decode/cp1250.php
X%%SQUIRRELDIR%%/functions/decode/cp1251.php
X%%SQUIRRELDIR%%/functions/decode/cp1252.php
X%%SQUIRRELDIR%%/functions/decode/cp1253.php
X%%SQUIRRELDIR%%/functions/decode/cp1254.php
X%%SQUIRRELDIR%%/functions/decode/cp1255.php
X%%SQUIRRELDIR%%/functions/decode/cp1256.php
X%%SQUIRRELDIR%%/functions/decode/cp1257.php
X%%SQUIRRELDIR%%/functions/decode/cp1258.php
X%%SQUIRRELDIR%%/functions/decode/cp855.php
X%%SQUIRRELDIR%%/functions/decode/cp866.php
X%%SQUIRRELDIR%%/functions/decode/index.php
X%%SQUIRRELDIR%%/functions/decode/iso_8859_1.php
X%%SQUIRRELDIR%%/functions/decode/iso_8859_10.php
X%%SQUIRRELDIR%%/functions/decode/iso_8859_11.php
X%%SQUIRRELDIR%%/functions/decode/iso_8859_13.php
X%%SQUIRRELDIR%%/functions/decode/iso_8859_14.php
X%%SQUIRRELDIR%%/functions/decode/iso_8859_15.php
X%%SQUIRRELDIR%%/functions/decode/iso_8859_16.php
X%%SQUIRRELDIR%%/functions/decode/iso_8859_2.php
X%%SQUIRRELDIR%%/functions/decode/iso_8859_3.php
X%%SQUIRRELDIR%%/functions/decode/iso_8859_4.php
X%%SQUIRRELDIR%%/functions/decode/iso_8859_5.php
X%%SQUIRRELDIR%%/functions/decode/iso_8859_6.php
X%%SQUIRRELDIR%%/functions/decode/iso_8859_7.php
X%%SQUIRRELDIR%%/functions/decode/iso_8859_8.php
X%%SQUIRRELDIR%%/functions/decode/iso_8859_9.php
X%%SQUIRRELDIR%%/functions/decode/iso_ir_111.php
X%%SQUIRRELDIR%%/functions/decode/koi8_r.php
X%%SQUIRRELDIR%%/functions/decode/koi8_u.php
X%%SQUIRRELDIR%%/functions/decode/ns_4551_1.php
X%%SQUIRRELDIR%%/functions/decode/tis_620.php
X%%SQUIRRELDIR%%/functions/decode/us_ascii.php
X%%SQUIRRELDIR%%/functions/decode/utf_8.php
X%%SQUIRRELDIR%%/functions/display_messages.php
X%%SQUIRRELDIR%%/functions/encode/cp1251.php
X%%SQUIRRELDIR%%/functions/encode/cp1255.php
X%%SQUIRRELDIR%%/functions/encode/cp1256.php
X%%SQUIRRELDIR%%/functions/encode/index.php
X%%SQUIRRELDIR%%/functions/encode/iso_8859_1.php
X%%SQUIRRELDIR%%/functions/encode/iso_8859_15.php
X%%SQUIRRELDIR%%/functions/encode/iso_8859_2.php
X%%SQUIRRELDIR%%/functions/encode/iso_8859_7.php
X%%SQUIRRELDIR%%/functions/encode/iso_8859_9.php
X%%SQUIRRELDIR%%/functions/encode/koi8_r.php
X%%SQUIRRELDIR%%/functions/encode/koi8_u.php
X%%SQUIRRELDIR%%/functions/encode/tis_620.php
X%%SQUIRRELDIR%%/functions/encode/us_ascii.php
X%%SQUIRRELDIR%%/functions/encode/utf_8.php
X%%SQUIRRELDIR%%/functions/file_prefs.php
X%%SQUIRRELDIR%%/functions/forms.php
X%%SQUIRRELDIR%%/functions/gettext.php
X%%SQUIRRELDIR%%/functions/global.php
X%%SQUIRRELDIR%%/functions/html.php
X%%SQUIRRELDIR%%/functions/i18n.php
X%%SQUIRRELDIR%%/functions/identity.php
X%%SQUIRRELDIR%%/functions/imap.php
X%%SQUIRRELDIR%%/functions/imap_general.php
X%%SQUIRRELDIR%%/functions/imap_mailbox.php
X%%SQUIRRELDIR%%/functions/imap_messages.php
X%%SQUIRRELDIR%%/functions/imap_search.php
X%%SQUIRRELDIR%%/functions/imap_utf7_local.php
X%%SQUIRRELDIR%%/functions/index.php
X%%SQUIRRELDIR%%/functions/mailbox_display.php
X%%SQUIRRELDIR%%/functions/mime.php
X%%SQUIRRELDIR%%/functions/options.php
X%%SQUIRRELDIR%%/functions/page_header.php
X%%SQUIRRELDIR%%/functions/plugin.php
X%%SQUIRRELDIR%%/functions/prefs.php
X%%SQUIRRELDIR%%/functions/strings.php
X%%SQUIRRELDIR%%/functions/tree.php
X%%SQUIRRELDIR%%/functions/url_parser.php
X%%SQUIRRELDIR%%/help/.htaccess
X%%SQUIRRELDIR%%/help/bg_BG/FAQ.hlp
X%%SQUIRRELDIR%%/help/bg_BG/addresses.hlp
X%%SQUIRRELDIR%%/help/bg_BG/basic.hlp
X%%SQUIRRELDIR%%/help/bg_BG/compose.hlp
X%%SQUIRRELDIR%%/help/bg_BG/folders.hlp
X%%SQUIRRELDIR%%/help/bg_BG/main_folder.hlp
X%%SQUIRRELDIR%%/help/bg_BG/options.hlp
X%%SQUIRRELDIR%%/help/bg_BG/read_mail.hlp
X%%SQUIRRELDIR%%/help/bg_BG/search.hlp
X%%SQUIRRELDIR%%/help/ca_ES/FAQ.hlp
X%%SQUIRRELDIR%%/help/ca_ES/addresses.hlp
X%%SQUIRRELDIR%%/help/ca_ES/basic.hlp
X%%SQUIRRELDIR%%/help/ca_ES/compose.hlp
X%%SQUIRRELDIR%%/help/ca_ES/folders.hlp
X%%SQUIRRELDIR%%/help/ca_ES/main_folder.hlp
X%%SQUIRRELDIR%%/help/ca_ES/options.hlp
X%%SQUIRRELDIR%%/help/ca_ES/read_mail.hlp
X%%SQUIRRELDIR%%/help/ca_ES/search.hlp
X%%SQUIRRELDIR%%/help/cs_CZ/FAQ.hlp
X%%SQUIRRELDIR%%/help/cs_CZ/addresses.hlp
X%%SQUIRRELDIR%%/help/cs_CZ/basic.hlp
X%%SQUIRRELDIR%%/help/cs_CZ/compose.hlp
X%%SQUIRRELDIR%%/help/cs_CZ/folders.hlp
X%%SQUIRRELDIR%%/help/cs_CZ/main_folder.hlp
X%%SQUIRRELDIR%%/help/cs_CZ/options.hlp
X%%SQUIRRELDIR%%/help/cs_CZ/read_mail.hlp
X%%SQUIRRELDIR%%/help/cs_CZ/search.hlp
X%%SQUIRRELDIR%%/help/cy_GB/FAQ.hlp
X%%SQUIRRELDIR%%/help/cy_GB/addresses.hlp
X%%SQUIRRELDIR%%/help/cy_GB/basic.hlp
X%%SQUIRRELDIR%%/help/cy_GB/compose.hlp
X%%SQUIRRELDIR%%/help/cy_GB/folders.hlp
X%%SQUIRRELDIR%%/help/cy_GB/main_folder.hlp
X%%SQUIRRELDIR%%/help/cy_GB/options.hlp
X%%SQUIRRELDIR%%/help/cy_GB/read_mail.hlp
X%%SQUIRRELDIR%%/help/cy_GB/search.hlp
X%%SQUIRRELDIR%%/help/da_DK/FAQ.hlp
X%%SQUIRRELDIR%%/help/da_DK/addresses.hlp
X%%SQUIRRELDIR%%/help/da_DK/basic.hlp
X%%SQUIRRELDIR%%/help/da_DK/compose.hlp
X%%SQUIRRELDIR%%/help/da_DK/folders.hlp
X%%SQUIRRELDIR%%/help/da_DK/main_folder.hlp
X%%SQUIRRELDIR%%/help/da_DK/options.hlp
X%%SQUIRRELDIR%%/help/da_DK/read_mail.hlp
X%%SQUIRRELDIR%%/help/da_DK/search.hlp
X%%SQUIRRELDIR%%/help/de_DE/FAQ.hlp
X%%SQUIRRELDIR%%/help/de_DE/addresses.hlp
X%%SQUIRRELDIR%%/help/de_DE/basic.hlp
X%%SQUIRRELDIR%%/help/de_DE/compose.hlp
X%%SQUIRRELDIR%%/help/de_DE/folders.hlp
X%%SQUIRRELDIR%%/help/de_DE/main_folder.hlp
X%%SQUIRRELDIR%%/help/de_DE/options.hlp
X%%SQUIRRELDIR%%/help/de_DE/read_mail.hlp
X%%SQUIRRELDIR%%/help/de_DE/search.hlp
X%%SQUIRRELDIR%%/help/en_US/FAQ.hlp
X%%SQUIRRELDIR%%/help/en_US/addresses.hlp
X%%SQUIRRELDIR%%/help/en_US/basic.hlp
X%%SQUIRRELDIR%%/help/en_US/compose.hlp
X%%SQUIRRELDIR%%/help/en_US/folders.hlp
X%%SQUIRRELDIR%%/help/en_US/main_folder.hlp
X%%SQUIRRELDIR%%/help/en_US/options.hlp
X%%SQUIRRELDIR%%/help/en_US/read_mail.hlp
X%%SQUIRRELDIR%%/help/en_US/search.hlp
X%%SQUIRRELDIR%%/help/es_ES/FAQ.hlp
X%%SQUIRRELDIR%%/help/es_ES/addresses.hlp
X%%SQUIRRELDIR%%/help/es_ES/basic.hlp
X%%SQUIRRELDIR%%/help/es_ES/compose.hlp
X%%SQUIRRELDIR%%/help/es_ES/folders.hlp
X%%SQUIRRELDIR%%/help/es_ES/main_folder.hlp
X%%SQUIRRELDIR%%/help/es_ES/options.hlp
X%%SQUIRRELDIR%%/help/es_ES/read_mail.hlp
X%%SQUIRRELDIR%%/help/es_ES/search.hlp
X%%SQUIRRELDIR%%/help/fa_IR/FAQ.hlp
X%%SQUIRRELDIR%%/help/fa_IR/addresses.hlp
X%%SQUIRRELDIR%%/help/fa_IR/basic.hlp
X%%SQUIRRELDIR%%/help/fa_IR/compose.hlp
X%%SQUIRRELDIR%%/help/fa_IR/folders.hlp
X%%SQUIRRELDIR%%/help/fa_IR/main_folder.hlp
X%%SQUIRRELDIR%%/help/fa_IR/options.hlp
X%%SQUIRRELDIR%%/help/fa_IR/read_mail.hlp
X%%SQUIRRELDIR%%/help/fa_IR/search.hlp
X%%SQUIRRELDIR%%/help/fi_FI/FAQ.hlp
X%%SQUIRRELDIR%%/help/fi_FI/addresses.hlp
X%%SQUIRRELDIR%%/help/fi_FI/basic.hlp
X%%SQUIRRELDIR%%/help/fi_FI/compose.hlp
X%%SQUIRRELDIR%%/help/fi_FI/folders.hlp
X%%SQUIRRELDIR%%/help/fi_FI/main_folder.hlp
X%%SQUIRRELDIR%%/help/fi_FI/options.hlp
X%%SQUIRRELDIR%%/help/fi_FI/read_mail.hlp
X%%SQUIRRELDIR%%/help/fi_FI/search.hlp
X%%SQUIRRELDIR%%/help/fr_FR/FAQ.hlp
X%%SQUIRRELDIR%%/help/fr_FR/addresses.hlp
X%%SQUIRRELDIR%%/help/fr_FR/basic.hlp
X%%SQUIRRELDIR%%/help/fr_FR/compose.hlp
X%%SQUIRRELDIR%%/help/fr_FR/folders.hlp
X%%SQUIRRELDIR%%/help/fr_FR/main_folder.hlp
X%%SQUIRRELDIR%%/help/fr_FR/options.hlp
X%%SQUIRRELDIR%%/help/fr_FR/read_mail.hlp
X%%SQUIRRELDIR%%/help/fr_FR/search.hlp
X%%SQUIRRELDIR%%/help/id_ID/FAQ.hlp
X%%SQUIRRELDIR%%/help/id_ID/addresses.hlp
X%%SQUIRRELDIR%%/help/id_ID/basic.hlp
X%%SQUIRRELDIR%%/help/id_ID/compose.hlp
X%%SQUIRRELDIR%%/help/id_ID/folders.hlp
X%%SQUIRRELDIR%%/help/id_ID/main_folder.hlp
X%%SQUIRRELDIR%%/help/id_ID/options.hlp
X%%SQUIRRELDIR%%/help/id_ID/read_mail.hlp
X%%SQUIRRELDIR%%/help/id_ID/search.hlp
X%%SQUIRRELDIR%%/help/index.php
X%%SQUIRRELDIR%%/help/it_IT/FAQ.hlp
X%%SQUIRRELDIR%%/help/it_IT/addresses.hlp
X%%SQUIRRELDIR%%/help/it_IT/basic.hlp
X%%SQUIRRELDIR%%/help/it_IT/compose.hlp
X%%SQUIRRELDIR%%/help/it_IT/folders.hlp
X%%SQUIRRELDIR%%/help/it_IT/main_folder.hlp
X%%SQUIRRELDIR%%/help/it_IT/options.hlp
X%%SQUIRRELDIR%%/help/it_IT/read_mail.hlp
X%%SQUIRRELDIR%%/help/it_IT/search.hlp
X%%SQUIRRELDIR%%/help/ja_JP/FAQ.hlp
X%%SQUIRRELDIR%%/help/ja_JP/addresses.hlp
X%%SQUIRRELDIR%%/help/ja_JP/basic.hlp
X%%SQUIRRELDIR%%/help/ja_JP/compose.hlp
X%%SQUIRRELDIR%%/help/ja_JP/folders.hlp
X%%SQUIRRELDIR%%/help/ja_JP/main_folder.hlp
X%%SQUIRRELDIR%%/help/ja_JP/options.hlp
X%%SQUIRRELDIR%%/help/ja_JP/read_mail.hlp
X%%SQUIRRELDIR%%/help/ja_JP/search.hlp
X%%SQUIRRELDIR%%/help/ko_KR/FAQ.hlp
X%%SQUIRRELDIR%%/help/ko_KR/addresses.hlp
X%%SQUIRRELDIR%%/help/ko_KR/basic.hlp
X%%SQUIRRELDIR%%/help/ko_KR/compose.hlp
X%%SQUIRRELDIR%%/help/ko_KR/folders.hlp
X%%SQUIRRELDIR%%/help/ko_KR/main_folder.hlp
X%%SQUIRRELDIR%%/help/ko_KR/options.hlp
X%%SQUIRRELDIR%%/help/ko_KR/read_mail.hlp
X%%SQUIRRELDIR%%/help/ko_KR/search.hlp
X%%SQUIRRELDIR%%/help/lt_LT/FAQ.hlp
X%%SQUIRRELDIR%%/help/lt_LT/addresses.hlp
X%%SQUIRRELDIR%%/help/lt_LT/basic.hlp
X%%SQUIRRELDIR%%/help/lt_LT/compose.hlp
X%%SQUIRRELDIR%%/help/lt_LT/folders.hlp
X%%SQUIRRELDIR%%/help/lt_LT/main_folder.hlp
X%%SQUIRRELDIR%%/help/lt_LT/options.hlp
X%%SQUIRRELDIR%%/help/lt_LT/read_mail.hlp
X%%SQUIRRELDIR%%/help/lt_LT/search.hlp
X%%SQUIRRELDIR%%/help/nl_NL/FAQ.hlp
X%%SQUIRRELDIR%%/help/nl_NL/addresses.hlp
X%%SQUIRRELDIR%%/help/nl_NL/basic.hlp
X%%SQUIRRELDIR%%/help/nl_NL/compose.hlp
X%%SQUIRRELDIR%%/help/nl_NL/folders.hlp
X%%SQUIRRELDIR%%/help/nl_NL/main_folder.hlp
X%%SQUIRRELDIR%%/help/nl_NL/options.hlp
X%%SQUIRRELDIR%%/help/nl_NL/read_mail.hlp
X%%SQUIRRELDIR%%/help/nl_NL/search.hlp
X%%SQUIRRELDIR%%/help/pl_PL/FAQ.hlp
X%%SQUIRRELDIR%%/help/pl_PL/addresses.hlp
X%%SQUIRRELDIR%%/help/pl_PL/basic.hlp
X%%SQUIRRELDIR%%/help/pl_PL/compose.hlp
X%%SQUIRRELDIR%%/help/pl_PL/folders.hlp
X%%SQUIRRELDIR%%/help/pl_PL/main_folder.hlp
X%%SQUIRRELDIR%%/help/pl_PL/options.hlp
X%%SQUIRRELDIR%%/help/pl_PL/read_mail.hlp
X%%SQUIRRELDIR%%/help/pl_PL/search.hlp
X%%SQUIRRELDIR%%/help/pt_BR/FAQ.hlp
X%%SQUIRRELDIR%%/help/pt_BR/addresses.hlp
X%%SQUIRRELDIR%%/help/pt_BR/basic.hlp
X%%SQUIRRELDIR%%/help/pt_BR/compose.hlp
X%%SQUIRRELDIR%%/help/pt_BR/folders.hlp
X%%SQUIRRELDIR%%/help/pt_BR/main_folder.hlp
X%%SQUIRRELDIR%%/help/pt_BR/options.hlp
X%%SQUIRRELDIR%%/help/pt_BR/read_mail.hlp
X%%SQUIRRELDIR%%/help/pt_BR/search.hlp
X%%SQUIRRELDIR%%/help/pt_PT/FAQ.hlp
X%%SQUIRRELDIR%%/help/pt_PT/addresses.hlp
X%%SQUIRRELDIR%%/help/pt_PT/basic.hlp
X%%SQUIRRELDIR%%/help/pt_PT/compose.hlp
X%%SQUIRRELDIR%%/help/pt_PT/folders.hlp
X%%SQUIRRELDIR%%/help/pt_PT/main_folder.hlp
X%%SQUIRRELDIR%%/help/pt_PT/options.hlp
X%%SQUIRRELDIR%%/help/pt_PT/read_mail.hlp
X%%SQUIRRELDIR%%/help/pt_PT/search.hlp
X%%SQUIRRELDIR%%/help/ru_RU/FAQ.hlp
X%%SQUIRRELDIR%%/help/ru_RU/addresses.hlp
X%%SQUIRRELDIR%%/help/ru_RU/basic.hlp
X%%SQUIRRELDIR%%/help/ru_RU/compose.hlp
X%%SQUIRRELDIR%%/help/ru_RU/folders.hlp
X%%SQUIRRELDIR%%/help/ru_RU/main_folder.hlp
X%%SQUIRRELDIR%%/help/ru_RU/options.hlp
X%%SQUIRRELDIR%%/help/ru_RU/read_mail.hlp
X%%SQUIRRELDIR%%/help/ru_RU/search.hlp
X%%SQUIRRELDIR%%/help/sk_SK/FAQ.hlp
X%%SQUIRRELDIR%%/help/sk_SK/addresses.hlp
X%%SQUIRRELDIR%%/help/sk_SK/basic.hlp
X%%SQUIRRELDIR%%/help/sk_SK/compose.hlp
X%%SQUIRRELDIR%%/help/sk_SK/folders.hlp
X%%SQUIRRELDIR%%/help/sk_SK/main_folder.hlp
X%%SQUIRRELDIR%%/help/sk_SK/options.hlp
X%%SQUIRRELDIR%%/help/sk_SK/read_mail.hlp
X%%SQUIRRELDIR%%/help/sk_SK/search.hlp
X%%SQUIRRELDIR%%/help/sl_SI/FAQ.hlp
X%%SQUIRRELDIR%%/help/sl_SI/addresses.hlp
X%%SQUIRRELDIR%%/help/sl_SI/basic.hlp
X%%SQUIRRELDIR%%/help/sl_SI/compose.hlp
X%%SQUIRRELDIR%%/help/sl_SI/folders.hlp
X%%SQUIRRELDIR%%/help/sl_SI/main_folder.hlp
X%%SQUIRRELDIR%%/help/sl_SI/options.hlp
X%%SQUIRRELDIR%%/help/sl_SI/read_mail.hlp
X%%SQUIRRELDIR%%/help/sl_SI/search.hlp
X%%SQUIRRELDIR%%/help/sr_YU/FAQ.hlp
X%%SQUIRRELDIR%%/help/sr_YU/addresses.hlp
X%%SQUIRRELDIR%%/help/sr_YU/basic.hlp
X%%SQUIRRELDIR%%/help/sr_YU/compose.hlp
X%%SQUIRRELDIR%%/help/sr_YU/folders.hlp
X%%SQUIRRELDIR%%/help/sr_YU/main_folder.hlp
X%%SQUIRRELDIR%%/help/sr_YU/options.hlp
X%%SQUIRRELDIR%%/help/sr_YU/read_mail.hlp
X%%SQUIRRELDIR%%/help/sr_YU/search.hlp
X%%SQUIRRELDIR%%/help/sv_SE/FAQ.hlp
X%%SQUIRRELDIR%%/help/sv_SE/addresses.hlp
X%%SQUIRRELDIR%%/help/sv_SE/basic.hlp
X%%SQUIRRELDIR%%/help/sv_SE/compose.hlp
X%%SQUIRRELDIR%%/help/sv_SE/folders.hlp
X%%SQUIRRELDIR%%/help/sv_SE/main_folder.hlp
X%%SQUIRRELDIR%%/help/sv_SE/options.hlp
X%%SQUIRRELDIR%%/help/sv_SE/read_mail.hlp
X%%SQUIRRELDIR%%/help/sv_SE/search.hlp
X%%SQUIRRELDIR%%/help/uk_UA/FAQ.hlp
X%%SQUIRRELDIR%%/help/uk_UA/addresses.hlp
X%%SQUIRRELDIR%%/help/uk_UA/basic.hlp
X%%SQUIRRELDIR%%/help/uk_UA/compose.hlp
X%%SQUIRRELDIR%%/help/uk_UA/folders.hlp
X%%SQUIRRELDIR%%/help/uk_UA/main_folder.hlp
X%%SQUIRRELDIR%%/help/uk_UA/options.hlp
X%%SQUIRRELDIR%%/help/uk_UA/read_mail.hlp
X%%SQUIRRELDIR%%/help/uk_UA/search.hlp
X%%SQUIRRELDIR%%/help/zh_CN/FAQ.hlp
X%%SQUIRRELDIR%%/help/zh_CN/addresses.hlp
X%%SQUIRRELDIR%%/help/zh_CN/basic.hlp
X%%SQUIRRELDIR%%/help/zh_CN/compose.hlp
X%%SQUIRRELDIR%%/help/zh_CN/folders.hlp
X%%SQUIRRELDIR%%/help/zh_CN/main_folder.hlp
X%%SQUIRRELDIR%%/help/zh_CN/options.hlp
X%%SQUIRRELDIR%%/help/zh_CN/read_mail.hlp
X%%SQUIRRELDIR%%/help/zh_CN/search.hlp
X%%SQUIRRELDIR%%/images/blank.png
X%%SQUIRRELDIR%%/images/delitem.png
X%%SQUIRRELDIR%%/images/down_pointer.png
X%%SQUIRRELDIR%%/images/draft.png
X%%SQUIRRELDIR%%/images/folder.png
X%%SQUIRRELDIR%%/images/inbox.png
X%%SQUIRRELDIR%%/images/index.php
X%%SQUIRRELDIR%%/images/minus.png
X%%SQUIRRELDIR%%/images/plus.png
X%%SQUIRRELDIR%%/images/sec_remove_bn_BD.png
X%%SQUIRRELDIR%%/images/sec_remove_bn_IN.png
X%%SQUIRRELDIR%%/images/sec_remove_cs_CZ.png
X%%SQUIRRELDIR%%/images/sec_remove_da_DK.png
X%%SQUIRRELDIR%%/images/sec_remove_de_DE.png
X%%SQUIRRELDIR%%/images/sec_remove_el_GR.png
X%%SQUIRRELDIR%%/images/sec_remove_eng.png
X%%SQUIRRELDIR%%/images/sec_remove_es_ES.png
X%%SQUIRRELDIR%%/images/sec_remove_et_EE.png
X%%SQUIRRELDIR%%/images/sec_remove_fi_FI.png
X%%SQUIRRELDIR%%/images/sec_remove_fo_FO.png
X%%SQUIRRELDIR%%/images/sec_remove_fr_FR.png
X%%SQUIRRELDIR%%/images/sec_remove_fy.png
X%%SQUIRRELDIR%%/images/sec_remove_he_IL.png
X%%SQUIRRELDIR%%/images/sec_remove_hr_HR.png
X%%SQUIRRELDIR%%/images/sec_remove_hu_HU.png
X%%SQUIRRELDIR%%/images/sec_remove_id_ID.png
X%%SQUIRRELDIR%%/images/sec_remove_it_IT.png
X%%SQUIRRELDIR%%/images/sec_remove_ja_JP.png
X%%SQUIRRELDIR%%/images/sec_remove_km.png
X%%SQUIRRELDIR%%/images/sec_remove_ko_KR.png
X%%SQUIRRELDIR%%/images/sec_remove_lt_LT.png
X%%SQUIRRELDIR%%/images/sec_remove_nb_NO.png
X%%SQUIRRELDIR%%/images/sec_remove_nl_NL.png
X%%SQUIRRELDIR%%/images/sec_remove_nn_NO.png
X%%SQUIRRELDIR%%/images/sec_remove_pt_BR.png
X%%SQUIRRELDIR%%/images/sec_remove_pt_PT.png
X%%SQUIRRELDIR%%/images/sec_remove_ru_RU.png
X%%SQUIRRELDIR%%/images/sec_remove_sk_SK.png
X%%SQUIRRELDIR%%/images/sec_remove_sl_SI.png
X%%SQUIRRELDIR%%/images/sec_remove_sr_YU.png
X%%SQUIRRELDIR%%/images/sec_remove_sv_SE.png
X%%SQUIRRELDIR%%/images/sec_remove_ta_LK.png
X%%SQUIRRELDIR%%/images/sec_remove_tr_TR.png
X%%SQUIRRELDIR%%/images/sec_remove_ug.png
X%%SQUIRRELDIR%%/images/sec_remove_uk_UA.png
X%%SQUIRRELDIR%%/images/senti.png
X%%SQUIRRELDIR%%/images/sm_logo.png
X%%SQUIRRELDIR%%/images/sort_none.png
X%%SQUIRRELDIR%%/images/up_pointer.png
X%%SQUIRRELDIR%%/include/.htaccess
X%%SQUIRRELDIR%%/include/index.php
X%%SQUIRRELDIR%%/include/load_prefs.php
X%%SQUIRRELDIR%%/include/options/display.php
X%%SQUIRRELDIR%%/include/options/folder.php
X%%SQUIRRELDIR%%/include/options/index.php
X%%SQUIRRELDIR%%/include/options/personal.php
X%%SQUIRRELDIR%%/include/validate.php
X%%SQUIRRELDIR%%/index.php
X%%SQUIRRELDIR%%/locale/.htaccess
X%%SQUIRRELDIR%%/locale/README.locales
X%%SQUIRRELDIR%%/locale/ar/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/ar/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/ar/setup.php
X%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/bg_BG/setup.php
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/abook_import_export.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/abook_import_export.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/advanced_settings.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/advanced_settings.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/archive_mail.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/archive_mail.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/calendar.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/calendar.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/captcha.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/captcha.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/censor.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/censor.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/change_sqlpass.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/change_sqlpass.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/compose_fix.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/compose_fix.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/contactclean.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/contactclean.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/cookie_warning.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/cookie_warning.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/custom_charset.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/custom_charset.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/debugger.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/debugger.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/empty_folders.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/empty_folders.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/expire.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/expire.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/folder_settings.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/folder_settings.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/folder_sizes.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/folder_sizes.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/forum.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/forum.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/html_mail.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/html_mail.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/japanese_input.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/japanese_input.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/ldapquery.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/ldapquery.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/limit_languages.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/limit_languages.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/local_autorespond_forward.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/local_autorespond_forward.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/lockout.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/lockout.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/login_alias.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/login_alias.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/mark_read.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/mark_read.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/mini.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/mini.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/msg_flags.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/msg_flags.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/multilogin.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/multilogin.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/naguser.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/naguser.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/newuser_wiz.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/newuser_wiz.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/proon.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/proon.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/qmailadmin_login.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/qmailadmin_login.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/quicksave.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/quicksave.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/reply_buttons.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/reply_buttons.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/restrict_senders.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/restrict_senders.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/rootly_news.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/rootly_news.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/same_ip.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/same_ip.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/sasql.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/sasql.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/select_language.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/select_language.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/serversidefilter.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/serversidefilter.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/show_ssl_link.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/show_ssl_link.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/smallcal.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/smallcal.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/spam_buttons.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/spam_buttons.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/squirrel_logger.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/squirrel_logger.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/templates.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/templates.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/unsafe_image_rules.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/unsafe_image_rules.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/vacation_local.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/vacation_local.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/verify_reply_to.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/verify_reply_to.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/vkeyboard.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/vkeyboard.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/web_search.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/web_search.po
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/yelp.mo
X%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/yelp.po
X%%SQUIRRELDIR%%/locale/bn_BD/setup.php
X%%SQUIRRELDIR%%/locale/bn_IN/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/bn_IN/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/bn_IN/setup.php
X%%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/ca_ES/setup.php
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/abook_import_export.mo
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/abook_import_export.po
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/calendar.mo
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/calendar.po
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/folder_sizes.mo
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/folder_sizes.po
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/local_autorespond_forward.mo
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/local_autorespond_forward.po
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/msg_flags.mo
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/msg_flags.po
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/proon.mo
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/proon.po
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vacation_local.mo
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vacation_local.po
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vkeyboard.mo
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vkeyboard.po
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/yelp.mo
X%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/yelp.po
X%%SQUIRRELDIR%%/locale/cs_CZ/setup.php
X%%SQUIRRELDIR%%/locale/cy_GB/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/cy_GB/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/cy_GB/setup.php
X%%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/da_DK/setup.php
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/abook_import_export.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/abook_import_export.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/archive_mail.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/archive_mail.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/calendar.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/calendar.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_sqlpass.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_sqlpass.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/empty_folders.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/empty_folders.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/expire.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/expire.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/folder_sizes.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/folder_sizes.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/japanese_input.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/japanese_input.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/ldapquery.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/ldapquery.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/limit_languages.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/limit_languages.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/local_autorespond_forward.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/local_autorespond_forward.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/login_alias.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/login_alias.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/mark_read.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/mark_read.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/naguser.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/naguser.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/newuser_wiz.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/newuser_wiz.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/reply_buttons.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/reply_buttons.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/restrict_senders.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/restrict_senders.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/select_language.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/select_language.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/serversidefilter.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/serversidefilter.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/show_ssl_link.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/show_ssl_link.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/spam_buttons.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/spam_buttons.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrel_logger.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrel_logger.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/templates.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/templates.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/unsafe_image_rules.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/unsafe_image_rules.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/vacation_local.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/vacation_local.po
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/verify_reply_to.mo
X%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/verify_reply_to.po
X%%SQUIRRELDIR%%/locale/de_DE/setup.php
X%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/ldapquery.mo
X%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/ldapquery.po
X%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/el_GR/setup.php
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_sqlpass.mo
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_sqlpass.po
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/contactclean.mo
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/contactclean.po
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/serversidefilter.mo
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/serversidefilter.po
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/smallcal.mo
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/smallcal.po
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/unsafe_image_rules.mo
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/unsafe_image_rules.po
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/vkeyboard.mo
X%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/vkeyboard.po
X%%SQUIRRELDIR%%/locale/es_ES/setup.php
X%%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/et_EE/setup.php
X%%SQUIRRELDIR%%/locale/eu_ES/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/eu_ES/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/eu_ES/setup.php
X%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/captcha.mo
X%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/captcha.po
X%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/qmailadmin_login.mo
X%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/qmailadmin_login.po
X%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/fa_IR/setup.php
X%%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/fi_FI/setup.php
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/abook_import_export.mo
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/abook_import_export.po
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/archive_mail.mo
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/archive_mail.po
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/empty_folders.mo
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/empty_folders.po
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/folder_settings.mo
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/folder_settings.po
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/html_mail.mo
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/html_mail.po
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/fo_FO/setup.php
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/archive_mail.mo
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/archive_mail.po
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/calendar.mo
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/calendar.po
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_sqlpass.mo
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_sqlpass.po
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/empty_folders.mo
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/empty_folders.po
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/folder_sizes.mo
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/folder_sizes.po
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/mark_read.mo
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/mark_read.po
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/quicksave.mo
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/quicksave.po
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/spam_buttons.mo
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/spam_buttons.po
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vacation_local.mo
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vacation_local.po
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vkeyboard.mo
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vkeyboard.po
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/yelp.mo
X%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/yelp.po
X%%SQUIRRELDIR%%/locale/fr_FR/setup.php
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/abook_import_export.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/abook_import_export.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/advanced_settings.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/advanced_settings.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/archive_mail.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/archive_mail.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/calendar.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/calendar.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/change_sqlpass.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/change_sqlpass.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/compose_fix.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/compose_fix.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/contactclean.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/contactclean.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/cookie_warning.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/cookie_warning.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/custom_charset.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/custom_charset.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/debugger.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/debugger.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/empty_folders.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/empty_folders.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/expire.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/expire.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/folder_settings.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/folder_settings.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/folder_sizes.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/folder_sizes.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/forum.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/forum.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/html_mail.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/html_mail.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/ldapquery.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/ldapquery.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/limit_languages.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/limit_languages.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/login_alias.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/login_alias.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/mark_read.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/mark_read.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/mini.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/mini.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/multilogin.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/multilogin.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/naguser.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/naguser.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/newuser_wiz.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/newuser_wiz.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/proon.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/proon.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/qmailadmin_login.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/qmailadmin_login.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/quicksave.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/quicksave.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/reply_buttons.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/reply_buttons.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/restrict_senders.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/restrict_senders.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/sasql.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/sasql.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/select_language.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/select_language.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/serversidefilter.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/serversidefilter.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/show_ssl_link.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/show_ssl_link.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/smallcal.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/smallcal.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/spam_buttons.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/spam_buttons.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/squirrel_logger.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/squirrel_logger.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/templates.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/templates.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/unsafe_image_rules.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/unsafe_image_rules.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/vacation_local.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/vacation_local.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/verify_reply_to.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/verify_reply_to.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/vkeyboard.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/vkeyboard.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/web_search.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/web_search.po
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/yelp.mo
X%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/yelp.po
X%%SQUIRRELDIR%%/locale/fy/setup.php
X%%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/he_IL/setup.php
X%%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/hr_HR/setup.php
X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/folder_sizes.mo
X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/folder_sizes.po
X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/local_autorespond_forward.mo
X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/local_autorespond_forward.po
X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/hu_HU/setup.php
X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/cookie_warning.mo
X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/cookie_warning.po
X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/folder_sizes.mo
X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/folder_sizes.po
X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/select_language.mo
X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/select_language.po
X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/id_ID/setup.php
X%%SQUIRRELDIR%%/locale/index.php
X%%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/is_IS/setup.php
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/abook_import_export.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/abook_import_export.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/advanced_settings.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/advanced_settings.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/archive_mail.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/archive_mail.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/calendar.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/calendar.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/captcha.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/captcha.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/censor.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/censor.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/change_sqlpass.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/change_sqlpass.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/compose_fix.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/compose_fix.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/contactclean.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/contactclean.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/cookie_warning.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/cookie_warning.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/custom_charset.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/custom_charset.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/debugger.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/debugger.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/empty_folders.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/empty_folders.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/expire.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/expire.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/folder_settings.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/folder_settings.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/folder_sizes.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/folder_sizes.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/forum.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/forum.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/html_mail.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/html_mail.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/japanese_input.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/japanese_input.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/limit_languages.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/limit_languages.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/local_autorespond_forward.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/local_autorespond_forward.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/lockout.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/lockout.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/multilogin.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/multilogin.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/newuser_wiz.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/newuser_wiz.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/vacation_local.mo
X%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/vacation_local.po
X%%SQUIRRELDIR%%/locale/it_IT/setup.php
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/archive_mail.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/archive_mail.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/cookie_warning.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/cookie_warning.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/custom_charset.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/custom_charset.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/debugger.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/debugger.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/html_mail.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/html_mail.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/mini.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/mini.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/reply_buttons.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/reply_buttons.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/sasql.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/sasql.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/select_language.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/select_language.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/serversidefilter.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/serversidefilter.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/show_ssl_link.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/show_ssl_link.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/smallcal.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/smallcal.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/spam_buttons.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/spam_buttons.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrel_logger.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrel_logger.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/web_search.mo
X%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/web_search.po
X%%SQUIRRELDIR%%/locale/ja_JP/setup.php
X%%SQUIRRELDIR%%/locale/ka/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/ka/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/ka/setup.php
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/abook_import_export.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/abook_import_export.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/advanced_settings.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/advanced_settings.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/archive_mail.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/archive_mail.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/calendar.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/calendar.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/captcha.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/captcha.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/censor.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/censor.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/change_sqlpass.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/change_sqlpass.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/compose_fix.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/compose_fix.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/contactclean.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/contactclean.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/cookie_warning.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/cookie_warning.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/custom_charset.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/custom_charset.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/debugger.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/debugger.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/empty_folders.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/empty_folders.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/expire.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/expire.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/folder_settings.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/folder_settings.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/folder_sizes.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/folder_sizes.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/forum.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/forum.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/html_mail.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/html_mail.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/japanese_input.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/japanese_input.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/ldapquery.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/ldapquery.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/limit_languages.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/limit_languages.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/local_autorespond_forward.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/local_autorespond_forward.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/lockout.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/lockout.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/login_alias.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/login_alias.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/mark_read.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/mark_read.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/mini.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/mini.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/msg_flags.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/msg_flags.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/multilogin.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/multilogin.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/naguser.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/naguser.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/newuser_wiz.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/newuser_wiz.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/proon.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/proon.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/qmailadmin_login.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/qmailadmin_login.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/quicksave.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/quicksave.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/reply_buttons.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/reply_buttons.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/restrict_senders.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/restrict_senders.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/rootly_news.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/rootly_news.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/same_ip.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/same_ip.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/sasql.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/sasql.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/select_language.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/select_language.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/serversidefilter.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/serversidefilter.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/show_ssl_link.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/show_ssl_link.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/smallcal.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/smallcal.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/spam_buttons.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/spam_buttons.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/squirrel_logger.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/squirrel_logger.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/templates.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/templates.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/unsafe_image_rules.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/unsafe_image_rules.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/vacation_local.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/vacation_local.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/verify_reply_to.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/verify_reply_to.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/vkeyboard.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/vkeyboard.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/web_search.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/web_search.po
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/yelp.mo
X%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/yelp.po
X%%SQUIRRELDIR%%/locale/km/setup.php
X%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/ko_KR/setup.php
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/abook_import_export.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/abook_import_export.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/advanced_settings.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/advanced_settings.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/archive_mail.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/archive_mail.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/calendar.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/calendar.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/change_sqlpass.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/change_sqlpass.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/compose_fix.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/compose_fix.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/contactclean.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/contactclean.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/cookie_warning.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/cookie_warning.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/custom_charset.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/custom_charset.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/debugger.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/debugger.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/empty_folders.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/empty_folders.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/expire.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/expire.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/folder_settings.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/folder_settings.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/folder_sizes.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/folder_sizes.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/html_mail.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/html_mail.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/japanese_input.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/japanese_input.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/ldapquery.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/ldapquery.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/limit_languages.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/limit_languages.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/login_alias.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/login_alias.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/mark_read.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/mark_read.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/mini.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/mini.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/multilogin.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/multilogin.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/naguser.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/naguser.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/newuser_wiz.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/newuser_wiz.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/proon.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/proon.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/qmailadmin_login.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/qmailadmin_login.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/quicksave.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/quicksave.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/reply_buttons.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/reply_buttons.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/restrict_senders.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/restrict_senders.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/sasql.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/sasql.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/select_language.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/select_language.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/serversidefilter.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/serversidefilter.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/show_ssl_link.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/show_ssl_link.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/smallcal.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/smallcal.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/spam_buttons.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/spam_buttons.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/squirrel_logger.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/squirrel_logger.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/templates.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/templates.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/unsafe_image_rules.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/unsafe_image_rules.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/vacation_local.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/vacation_local.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/verify_reply_to.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/verify_reply_to.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/vkeyboard.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/vkeyboard.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/web_search.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/web_search.po
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/yelp.mo
X%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/yelp.po
X%%SQUIRRELDIR%%/locale/lt_LT/setup.php
X%%SQUIRRELDIR%%/locale/lv_LV/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/lv_LV/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/lv_LV/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/lv_LV/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/lv_LV/setup.php
X%%SQUIRRELDIR%%/locale/mk/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/mk/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/mk/setup.php
X%%SQUIRRELDIR%%/locale/ms_MY/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/ms_MY/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/ms_MY/setup.php
X%%SQUIRRELDIR%%/locale/nb_NO/LC_MESSAGES/qmailadmin_login.mo
X%%SQUIRRELDIR%%/locale/nb_NO/LC_MESSAGES/qmailadmin_login.po
X%%SQUIRRELDIR%%/locale/nb_NO/LC_MESSAGES/smallcal.mo
X%%SQUIRRELDIR%%/locale/nb_NO/LC_MESSAGES/smallcal.po
X%%SQUIRRELDIR%%/locale/nb_NO/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/nb_NO/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/nb_NO/setup.php
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/abook_import_export.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/abook_import_export.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/advanced_settings.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/advanced_settings.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/archive_mail.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/archive_mail.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/calendar.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/calendar.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/change_sqlpass.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/change_sqlpass.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/compose_fix.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/compose_fix.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/contactclean.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/contactclean.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/cookie_warning.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/cookie_warning.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/custom_charset.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/custom_charset.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/debugger.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/debugger.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/empty_folders.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/empty_folders.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/expire.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/expire.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/folder_settings.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/folder_settings.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/folder_sizes.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/folder_sizes.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/forum.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/forum.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/html_mail.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/html_mail.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/ldapquery.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/ldapquery.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/limit_languages.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/limit_languages.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/login_alias.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/login_alias.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/mark_read.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/mark_read.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/mini.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/mini.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/multilogin.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/multilogin.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/naguser.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/naguser.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/newuser_wiz.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/newuser_wiz.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/proon.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/proon.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/qmailadmin_login.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/qmailadmin_login.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/quicksave.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/quicksave.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/reply_buttons.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/reply_buttons.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/restrict_senders.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/restrict_senders.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/sasql.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/sasql.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/select_language.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/select_language.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/serversidefilter.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/serversidefilter.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/show_ssl_link.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/show_ssl_link.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/smallcal.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/smallcal.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/spam_buttons.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/spam_buttons.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/squirrel_logger.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/squirrel_logger.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/templates.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/templates.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/unsafe_image_rules.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/unsafe_image_rules.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/vacation_local.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/vacation_local.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/verify_reply_to.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/verify_reply_to.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/vkeyboard.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/vkeyboard.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/web_search.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/web_search.po
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/yelp.mo
X%%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES/yelp.po
X%%SQUIRRELDIR%%/locale/nl_NL/setup.php
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/abook_import_export.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/abook_import_export.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/advanced_settings.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/advanced_settings.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/archive_mail.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/archive_mail.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/calendar.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/calendar.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/change_sqlpass.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/change_sqlpass.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/compose_fix.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/compose_fix.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/contactclean.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/contactclean.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/cookie_warning.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/cookie_warning.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/custom_charset.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/custom_charset.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/debugger.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/debugger.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/empty_folders.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/empty_folders.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/expire.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/expire.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/folder_settings.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/folder_settings.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/folder_sizes.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/folder_sizes.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/html_mail.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/html_mail.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/japanese_input.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/japanese_input.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/ldapquery.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/ldapquery.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/limit_languages.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/limit_languages.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/login_alias.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/login_alias.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/mark_read.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/mark_read.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/mini.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/mini.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/multilogin.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/multilogin.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/naguser.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/naguser.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/newuser_wiz.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/newuser_wiz.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/proon.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/proon.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/qmailadmin_login.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/qmailadmin_login.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/quicksave.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/quicksave.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/reply_buttons.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/reply_buttons.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/restrict_senders.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/restrict_senders.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/sasql.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/sasql.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/select_language.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/select_language.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/serversidefilter.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/serversidefilter.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/show_ssl_link.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/show_ssl_link.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/smallcal.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/smallcal.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/spam_buttons.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/spam_buttons.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/squirrel_logger.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/squirrel_logger.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/templates.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/templates.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/unsafe_image_rules.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/unsafe_image_rules.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/vacation_local.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/vacation_local.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/verify_reply_to.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/verify_reply_to.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/vkeyboard.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/vkeyboard.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/web_search.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/web_search.po
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/yelp.mo
X%%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES/yelp.po
X%%SQUIRRELDIR%%/locale/nn_NO/setup.php
X%%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/pl_PL/setup.php
X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/abook_import_export.mo
X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/abook_import_export.po
X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/archive_mail.mo
X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/archive_mail.po
X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/unsafe_image_rules.mo
X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/unsafe_image_rules.po
X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/vkeyboard.mo
X%%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES/vkeyboard.po
X%%SQUIRRELDIR%%/locale/pt_BR/setup.php
X%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/unsafe_image_rules.mo
X%%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES/unsafe_image_rules.po
X%%SQUIRRELDIR%%/locale/pt_PT/setup.php
X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/advanced_settings.mo
X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/advanced_settings.po
X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/censor.mo
X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/censor.po
X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/reply_buttons.mo
X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/reply_buttons.po
X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/same_ip.mo
X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/same_ip.po
X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/ro_RO/setup.php
X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/custom_charset.mo
X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/custom_charset.po
X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/sasql.mo
X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/sasql.po
X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/serversidefilter.mo
X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/serversidefilter.po
X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/ru_RU/setup.php
X%%SQUIRRELDIR%%/locale/sk_SK/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/sk_SK/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/sk_SK/setup.php
X%%SQUIRRELDIR%%/locale/sl_SI/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/sl_SI/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/sl_SI/setup.php
X%%SQUIRRELDIR%%/locale/sr_YU/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/sr_YU/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/sr_YU/setup.php
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/abook_import_export.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/abook_import_export.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/archive_mail.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/archive_mail.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/change_sqlpass.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/change_sqlpass.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/compose_fix.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/compose_fix.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/cookie_warning.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/cookie_warning.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/custom_charset.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/custom_charset.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/debugger.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/debugger.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/empty_folders.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/empty_folders.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/expire.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/expire.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/folder_settings.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/folder_settings.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/folder_sizes.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/folder_sizes.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/html_mail.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/html_mail.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/japanese_input.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/japanese_input.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/limit_languages.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/limit_languages.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/login_alias.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/login_alias.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/mark_read.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/mark_read.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/mini.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/mini.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/multilogin.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/multilogin.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/naguser.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/naguser.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/newuser_wiz.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/newuser_wiz.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/qmailadmin_login.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/qmailadmin_login.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/quicksave.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/quicksave.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/reply_buttons.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/reply_buttons.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/restrict_senders.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/restrict_senders.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/sasql.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/sasql.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/select_language.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/select_language.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/serversidefilter.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/serversidefilter.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/show_ssl_link.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/show_ssl_link.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/smallcal.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/smallcal.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/spam_buttons.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/spam_buttons.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/squirrel_logger.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/squirrel_logger.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/templates.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/templates.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/unsafe_image_rules.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/unsafe_image_rules.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/vacation_local.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/vacation_local.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/verify_reply_to.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/verify_reply_to.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/web_search.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/web_search.po
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/yelp.mo
X%%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES/yelp.po
X%%SQUIRRELDIR%%/locale/sv_SE/setup.php
X%%SQUIRRELDIR%%/locale/ta_LK/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/ta_LK/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/ta_LK/setup.php
X%%SQUIRRELDIR%%/locale/timezones.cfg
X%%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/tr_TR/setup.php
X%%SQUIRRELDIR%%/locale/ug/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/ug/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/ug/setup.php
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/abook_import_export.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/abook_import_export.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/archive_mail.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/archive_mail.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/calendar.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/calendar.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/custom_charset.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/custom_charset.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/folder_sizes.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/folder_sizes.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/html_mail.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/html_mail.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/mini.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/mini.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/newuser_wiz.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/newuser_wiz.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/quicksave.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/quicksave.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/sasql.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/sasql.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/serversidefilter.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/serversidefilter.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/smallcal.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/smallcal.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/templates.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/templates.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/vacation_local.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/vacation_local.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/vkeyboard.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/vkeyboard.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/web_search.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/web_search.po
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/yelp.mo
X%%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES/yelp.po
X%%SQUIRRELDIR%%/locale/uk_UA/setup.php
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/abook_import_export.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/abook_import_export.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/advanced_settings.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/advanced_settings.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/archive_mail.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/archive_mail.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/askuserinfo.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/askuserinfo.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/calendar.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/calendar.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/captcha.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/captcha.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/censor.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/censor.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/change_pass.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/change_pass.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/change_sqlpass.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/change_sqlpass.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/check_quota.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/check_quota.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/compatibility.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/compatibility.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/compose_fix.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/compose_fix.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/contactclean.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/contactclean.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/cookie_warning.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/cookie_warning.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/custom_charset.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/custom_charset.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/debugger.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/debugger.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/empty_folders.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/empty_folders.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/expire.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/expire.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/folder_settings.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/folder_settings.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/folder_sizes.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/folder_sizes.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/forum.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/forum.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/html_mail.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/html_mail.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/japanese_input.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/japanese_input.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/ldapquery.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/ldapquery.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/limit_languages.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/limit_languages.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/local_autorespond_forward.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/local_autorespond_forward.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/lockout.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/lockout.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/login_alias.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/login_alias.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/mark_read.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/mark_read.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/mini.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/mini.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/msg_flags.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/msg_flags.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/multilogin.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/multilogin.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/naguser.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/naguser.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/newuser_wiz.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/newuser_wiz.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/proon.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/proon.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/qmailadmin_login.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/qmailadmin_login.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/quicksave.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/quicksave.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/reply_buttons.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/reply_buttons.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/restrict_senders.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/restrict_senders.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/rootly_news.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/rootly_news.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/same_ip.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/same_ip.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/sasql.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/sasql.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/select_language.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/select_language.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/serversidefilter.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/serversidefilter.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/show_ssl_link.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/show_ssl_link.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/smallcal.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/smallcal.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/spam_buttons.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/spam_buttons.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/squirrel_logger.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/squirrel_logger.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/templates.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/templates.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/unsafe_image_rules.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/unsafe_image_rules.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/vacation_local.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/vacation_local.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/verify_reply_to.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/verify_reply_to.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/vkeyboard.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/vkeyboard.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/web_search.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/web_search.po
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/yelp.mo
X%%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES/yelp.po
X%%SQUIRRELDIR%%/locale/vi_VN/setup.php
X%%SQUIRRELDIR%%/locale/zh_CN/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/zh_CN/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/zh_CN/setup.php
X%%SQUIRRELDIR%%/locale/zh_TW/LC_MESSAGES/squirrelmail.mo
X%%SQUIRRELDIR%%/locale/zh_TW/LC_MESSAGES/squirrelmail.po
X%%SQUIRRELDIR%%/locale/zh_TW/setup.php
X%%SQUIRRELDIR%%/plugins/administrator/auth.php
X%%SQUIRRELDIR%%/plugins/administrator/defines.php
X%%SQUIRRELDIR%%/plugins/administrator/index.php
X%%SQUIRRELDIR%%/plugins/administrator/options.php
X%%SQUIRRELDIR%%/plugins/administrator/setup.php
X%%SQUIRRELDIR%%/plugins/bug_report/bug_report.php
X%%SQUIRRELDIR%%/plugins/bug_report/functions.php
X%%SQUIRRELDIR%%/plugins/bug_report/index.php
X%%SQUIRRELDIR%%/plugins/bug_report/setup.php
X%%SQUIRRELDIR%%/plugins/calendar/calendar.php
X%%SQUIRRELDIR%%/plugins/calendar/calendar_data.php
X%%SQUIRRELDIR%%/plugins/calendar/day.php
X%%SQUIRRELDIR%%/plugins/calendar/event_create.php
X%%SQUIRRELDIR%%/plugins/calendar/event_delete.php
X%%SQUIRRELDIR%%/plugins/calendar/event_edit.php
X%%SQUIRRELDIR%%/plugins/calendar/functions.php
X%%SQUIRRELDIR%%/plugins/calendar/index.php
X%%SQUIRRELDIR%%/plugins/calendar/setup.php
X%%SQUIRRELDIR%%/plugins/delete_move_next/index.php
X%%SQUIRRELDIR%%/plugins/delete_move_next/setup.php
X%%SQUIRRELDIR%%/plugins/demo/COPYING
X%%SQUIRRELDIR%%/plugins/demo/demo.php
X%%SQUIRRELDIR%%/plugins/demo/demo.pot
X%%SQUIRRELDIR%%/plugins/demo/functions.php
X%%SQUIRRELDIR%%/plugins/demo/getpot
X%%SQUIRRELDIR%%/plugins/demo/index.php
X%%SQUIRRELDIR%%/plugins/demo/setup.php
X%%SQUIRRELDIR%%/plugins/filters/bulkquery/Makefile
X%%SQUIRRELDIR%%/plugins/filters/bulkquery/bq.in
X%%SQUIRRELDIR%%/plugins/filters/bulkquery/bq.out
X%%SQUIRRELDIR%%/plugins/filters/bulkquery/bulkquery.c
X%%SQUIRRELDIR%%/plugins/filters/bulkquery/index.php
X%%SQUIRRELDIR%%/plugins/filters/filters.php
X%%SQUIRRELDIR%%/plugins/filters/index.php
X%%SQUIRRELDIR%%/plugins/filters/options.php
X%%SQUIRRELDIR%%/plugins/filters/setup.php
X%%SQUIRRELDIR%%/plugins/filters/spamoptions.php
X%%SQUIRRELDIR%%/plugins/fortune/fortune_functions.php
X%%SQUIRRELDIR%%/plugins/fortune/index.php
X%%SQUIRRELDIR%%/plugins/fortune/setup.php
X%%SQUIRRELDIR%%/plugins/index.php
X%%SQUIRRELDIR%%/plugins/info/functions.php
X%%SQUIRRELDIR%%/plugins/info/index.php
X%%SQUIRRELDIR%%/plugins/info/options.php
X%%SQUIRRELDIR%%/plugins/info/setup.php
X%%SQUIRRELDIR%%/plugins/listcommands/index.php
X%%SQUIRRELDIR%%/plugins/listcommands/mailout.php
X%%SQUIRRELDIR%%/plugins/listcommands/setup.php
X%%SQUIRRELDIR%%/plugins/mail_fetch/class.POP3.php
X%%SQUIRRELDIR%%/plugins/mail_fetch/fetch.php
X%%SQUIRRELDIR%%/plugins/mail_fetch/functions.php
X%%SQUIRRELDIR%%/plugins/mail_fetch/index.php
X%%SQUIRRELDIR%%/plugins/mail_fetch/options.php
X%%SQUIRRELDIR%%/plugins/mail_fetch/setup.php
X%%SQUIRRELDIR%%/plugins/message_details/index.php
X%%SQUIRRELDIR%%/plugins/message_details/message_details_bottom.php
X%%SQUIRRELDIR%%/plugins/message_details/message_details_main.php
X%%SQUIRRELDIR%%/plugins/message_details/message_details_top.php
X%%SQUIRRELDIR%%/plugins/message_details/setup.php
X%%SQUIRRELDIR%%/plugins/newmail/index.php
X%%SQUIRRELDIR%%/plugins/newmail/newmail.php
X%%SQUIRRELDIR%%/plugins/newmail/newmail_opt.php
X%%SQUIRRELDIR%%/plugins/newmail/setup.php
X%%SQUIRRELDIR%%/plugins/newmail/sounds/FanFair.wav
X%%SQUIRRELDIR%%/plugins/newmail/sounds/Friends.wav
X%%SQUIRRELDIR%%/plugins/newmail/sounds/MontyPython.wav
X%%SQUIRRELDIR%%/plugins/newmail/sounds/Notify.wav
X%%SQUIRRELDIR%%/plugins/newmail/sounds/index.php
X%%SQUIRRELDIR%%/plugins/newmail/testsound.php
X%%SQUIRRELDIR%%/plugins/sent_subfolders/index.php
X%%SQUIRRELDIR%%/plugins/sent_subfolders/setup.php
X%%SQUIRRELDIR%%/plugins/spamcop/index.php
X%%SQUIRRELDIR%%/plugins/spamcop/options.php
X%%SQUIRRELDIR%%/plugins/spamcop/setup.php
X%%SQUIRRELDIR%%/plugins/spamcop/spamcop.php
X%%SQUIRRELDIR%%/plugins/squirrelspell/index.php
X%%SQUIRRELDIR%%/plugins/squirrelspell/js/WHATISTHIS
X%%SQUIRRELDIR%%/plugins/squirrelspell/js/check_me.js
X%%SQUIRRELDIR%%/plugins/squirrelspell/js/crypto_settings.js
X%%SQUIRRELDIR%%/plugins/squirrelspell/js/decrypt_error.js
X%%SQUIRRELDIR%%/plugins/squirrelspell/js/index.php
X%%SQUIRRELDIR%%/plugins/squirrelspell/js/init.js
X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/.htaccess
X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/WHATISTHIS
X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/check_me.mod
X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/crypto.mod
X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/crypto_badkey.mod
X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/edit_dic.mod
X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/enc_setup.mod
X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/forget_me.mod
X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/forget_me_not.mod
X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/index.php
X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/init.mod
X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/lang_change.mod
X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/lang_setup.mod
X%%SQUIRRELDIR%%/plugins/squirrelspell/modules/options_main.mod
X%%SQUIRRELDIR%%/plugins/squirrelspell/setup.php
X%%SQUIRRELDIR%%/plugins/squirrelspell/sqspell_config.php
X%%SQUIRRELDIR%%/plugins/squirrelspell/sqspell_functions.php
X%%SQUIRRELDIR%%/plugins/squirrelspell/sqspell_interface.php
X%%SQUIRRELDIR%%/plugins/squirrelspell/sqspell_options.php
X%%SQUIRRELDIR%%/plugins/test/COPYING
X%%SQUIRRELDIR%%/plugins/test/decodeheader.php
X%%SQUIRRELDIR%%/plugins/test/functions.php
X%%SQUIRRELDIR%%/plugins/test/index.php
X%%SQUIRRELDIR%%/plugins/test/ngettext.php
X%%SQUIRRELDIR%%/plugins/test/setup.php
X%%SQUIRRELDIR%%/plugins/test/test.php
X%%SQUIRRELDIR%%/plugins/translate/index.php
X%%SQUIRRELDIR%%/plugins/translate/options.php
X%%SQUIRRELDIR%%/plugins/translate/setup.php
X%%SQUIRRELDIR%%/po/.htaccess
X%%SQUIRRELDIR%%/po/compilepo
X%%SQUIRRELDIR%%/po/independent_strings.txt
X%%SQUIRRELDIR%%/po/index.php
X%%SQUIRRELDIR%%/po/mergepo
X%%SQUIRRELDIR%%/po/squirrelmail.pot
X%%SQUIRRELDIR%%/po/xgetpo
X%%SQUIRRELDIR%%/src/addrbook_popup.php
X%%SQUIRRELDIR%%/src/addrbook_search.php
X%%SQUIRRELDIR%%/src/addrbook_search_html.php
X%%SQUIRRELDIR%%/src/addressbook.php
X%%SQUIRRELDIR%%/src/compose.php
X%%SQUIRRELDIR%%/src/configtest.php
X%%SQUIRRELDIR%%/src/delete_message.php
X%%SQUIRRELDIR%%/src/download.php
X%%SQUIRRELDIR%%/src/empty_trash.php
X%%SQUIRRELDIR%%/src/folders.php
X%%SQUIRRELDIR%%/src/folders_create.php
X%%SQUIRRELDIR%%/src/folders_delete.php
X%%SQUIRRELDIR%%/src/folders_rename_do.php
X%%SQUIRRELDIR%%/src/folders_rename_getname.php
X%%SQUIRRELDIR%%/src/folders_subscribe.php
X%%SQUIRRELDIR%%/src/help.php
X%%SQUIRRELDIR%%/src/image.php
X%%SQUIRRELDIR%%/src/index.php
X%%SQUIRRELDIR%%/src/left_main.php
X%%SQUIRRELDIR%%/src/login.php
X%%SQUIRRELDIR%%/src/mailto.php
X%%SQUIRRELDIR%%/src/move_messages.php
X%%SQUIRRELDIR%%/src/options.php
X%%SQUIRRELDIR%%/src/options_highlight.php
X%%SQUIRRELDIR%%/src/options_identities.php
X%%SQUIRRELDIR%%/src/options_order.php
X%%SQUIRRELDIR%%/src/printer_friendly_bottom.php
X%%SQUIRRELDIR%%/src/printer_friendly_main.php
X%%SQUIRRELDIR%%/src/printer_friendly_top.php
X%%SQUIRRELDIR%%/src/read_body.php
X%%SQUIRRELDIR%%/src/redirect.php
X%%SQUIRRELDIR%%/src/right_main.php
X%%SQUIRRELDIR%%/src/search.php
X%%SQUIRRELDIR%%/src/signout.php
X%%SQUIRRELDIR%%/src/vcard.php
X%%SQUIRRELDIR%%/src/view_header.php
X%%SQUIRRELDIR%%/src/view_text.php
X%%SQUIRRELDIR%%/src/webmail.php
X%%SQUIRRELDIR%%/themes/alien_glow.php
X%%SQUIRRELDIR%%/themes/autumn.php
X%%SQUIRRELDIR%%/themes/autumn2.php
X%%SQUIRRELDIR%%/themes/black_bean_burrito_theme.php
X%%SQUIRRELDIR%%/themes/blue_grey_theme.php
X%%SQUIRRELDIR%%/themes/blue_on_blue.php
X%%SQUIRRELDIR%%/themes/bluesnews_theme.php
X%%SQUIRRELDIR%%/themes/bluesome.php
X%%SQUIRRELDIR%%/themes/bluesteel_theme.php
X%%SQUIRRELDIR%%/themes/christmas.php
X%%SQUIRRELDIR%%/themes/classic_blue.php
X%%SQUIRRELDIR%%/themes/classic_blue2.php
X%%SQUIRRELDIR%%/themes/css/comic-sans-08.css
X%%SQUIRRELDIR%%/themes/css/comic-sans-10.css
X%%SQUIRRELDIR%%/themes/css/comic-sans-12.css
X%%SQUIRRELDIR%%/themes/css/index.php
X%%SQUIRRELDIR%%/themes/css/sans-08.css
X%%SQUIRRELDIR%%/themes/css/sans-10.css
X%%SQUIRRELDIR%%/themes/css/sans-12.css
X%%SQUIRRELDIR%%/themes/css/serif-10.css
X%%SQUIRRELDIR%%/themes/css/serif-12.css
X%%SQUIRRELDIR%%/themes/css/tahoma-08.css
X%%SQUIRRELDIR%%/themes/css/tahoma-10.css
X%%SQUIRRELDIR%%/themes/css/tahoma-12.css
X%%SQUIRRELDIR%%/themes/css/verdana-08.css
X%%SQUIRRELDIR%%/themes/css/verdana-10.css
X%%SQUIRRELDIR%%/themes/css/verdana-12.css
X%%SQUIRRELDIR%%/themes/dark_green.php
X%%SQUIRRELDIR%%/themes/dark_grey_theme.php
X%%SQUIRRELDIR%%/themes/darkness.php
X%%SQUIRRELDIR%%/themes/deepocean2_theme.php
X%%SQUIRRELDIR%%/themes/deepocean_theme.php
X%%SQUIRRELDIR%%/themes/default_theme.php
X%%SQUIRRELDIR%%/themes/dompie_theme.php
X%%SQUIRRELDIR%%/themes/forest_theme.php
X%%SQUIRRELDIR%%/themes/greenhouse_effect.php
X%%SQUIRRELDIR%%/themes/high_contrast_theme.php
X%%SQUIRRELDIR%%/themes/ice_theme.php
X%%SQUIRRELDIR%%/themes/in_the_pink.php
X%%SQUIRRELDIR%%/themes/index.php
X%%SQUIRRELDIR%%/themes/kind_of_blue.php
X%%SQUIRRELDIR%%/themes/maize_theme.php
X%%SQUIRRELDIR%%/themes/methodical_theme.php
X%%SQUIRRELDIR%%/themes/midnight.php
X%%SQUIRRELDIR%%/themes/minimal_bw.php
X%%SQUIRRELDIR%%/themes/monostochastic.php
X%%SQUIRRELDIR%%/themes/netstyle_theme.php
X%%SQUIRRELDIR%%/themes/penguin.php
X%%SQUIRRELDIR%%/themes/plain_blue_theme.php
X%%SQUIRRELDIR%%/themes/powder_blue.php
X%%SQUIRRELDIR%%/themes/purple_theme.php
X%%SQUIRRELDIR%%/themes/random.php
X%%SQUIRRELDIR%%/themes/redmond.php
X%%SQUIRRELDIR%%/themes/sandstorm_theme.php
X%%SQUIRRELDIR%%/themes/seaspray_theme.php
X%%SQUIRRELDIR%%/themes/servery_theme.php
X%%SQUIRRELDIR%%/themes/shades_of_grey.php
X%%SQUIRRELDIR%%/themes/silver_steel_theme.php
X%%SQUIRRELDIR%%/themes/simple_green2.php
X%%SQUIRRELDIR%%/themes/simple_green_theme.php
X%%SQUIRRELDIR%%/themes/simple_purple.php
X%%SQUIRRELDIR%%/themes/slashdot_theme.php
X%%SQUIRRELDIR%%/themes/spice_of_life.php
X%%SQUIRRELDIR%%/themes/spice_of_life_dark.php
X%%SQUIRRELDIR%%/themes/spice_of_life_lite.php
X%%SQUIRRELDIR%%/themes/techno_blue.php
X%%SQUIRRELDIR%%/themes/turquoise.php
X%%SQUIRRELDIR%%/themes/wood_theme.php
X@dirrm %%SQUIRRELDIR%%/themes/css
X@dirrm %%SQUIRRELDIR%%/themes
X@dirrm %%SQUIRRELDIR%%/src
X@dirrm %%SQUIRRELDIR%%/po
X@dirrm %%SQUIRRELDIR%%/plugins/translate
X@dirrm %%SQUIRRELDIR%%/plugins/test
X@dirrm %%SQUIRRELDIR%%/plugins/squirrelspell/modules
X@dirrm %%SQUIRRELDIR%%/plugins/squirrelspell/js
X@dirrm %%SQUIRRELDIR%%/plugins/squirrelspell
X@dirrm %%SQUIRRELDIR%%/plugins/spamcop
X@dirrm %%SQUIRRELDIR%%/plugins/sent_subfolders
X@dirrm %%SQUIRRELDIR%%/plugins/newmail/sounds
X@dirrm %%SQUIRRELDIR%%/plugins/newmail
X@dirrm %%SQUIRRELDIR%%/plugins/message_details
X@dirrm %%SQUIRRELDIR%%/plugins/mail_fetch
X@dirrm %%SQUIRRELDIR%%/plugins/listcommands
X@dirrm %%SQUIRRELDIR%%/plugins/info
X@dirrm %%SQUIRRELDIR%%/plugins/fortune
X@dirrm %%SQUIRRELDIR%%/plugins/filters/bulkquery
X@dirrm %%SQUIRRELDIR%%/plugins/filters
X@dirrm %%SQUIRRELDIR%%/plugins/demo
X@dirrm %%SQUIRRELDIR%%/plugins/delete_move_next
X@dirrm %%SQUIRRELDIR%%/plugins/calendar
X@dirrm %%SQUIRRELDIR%%/plugins/bug_report
X@dirrm %%SQUIRRELDIR%%/plugins/administrator
X@dirrmtry %%SQUIRRELDIR%%/plugins
X@dirrm %%SQUIRRELDIR%%/locale/zh_TW/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/zh_TW
X@dirrm %%SQUIRRELDIR%%/locale/zh_CN/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/zh_CN
X@dirrm %%SQUIRRELDIR%%/locale/vi_VN/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/vi_VN
X@dirrm %%SQUIRRELDIR%%/locale/uk_UA/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/uk_UA
X@dirrm %%SQUIRRELDIR%%/locale/ug/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/ug
X@dirrm %%SQUIRRELDIR%%/locale/tr_TR/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/tr_TR
X@dirrm %%SQUIRRELDIR%%/locale/ta_LK/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/ta_LK
X@dirrm %%SQUIRRELDIR%%/locale/sv_SE/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/sv_SE
X@dirrm %%SQUIRRELDIR%%/locale/sr_YU/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/sr_YU
X@dirrm %%SQUIRRELDIR%%/locale/sl_SI/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/sl_SI
X@dirrm %%SQUIRRELDIR%%/locale/sk_SK/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/sk_SK
X@dirrm %%SQUIRRELDIR%%/locale/ru_RU/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/ru_RU
X@dirrm %%SQUIRRELDIR%%/locale/ro_RO/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/ro_RO
X@dirrm %%SQUIRRELDIR%%/locale/pt_PT/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/pt_PT
X@dirrm %%SQUIRRELDIR%%/locale/pt_BR/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/pt_BR
X@dirrm %%SQUIRRELDIR%%/locale/pl_PL/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/pl_PL
X@dirrm %%SQUIRRELDIR%%/locale/nn_NO/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/nn_NO
X@dirrm %%SQUIRRELDIR%%/locale/nl_NL/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/nl_NL
X@dirrm %%SQUIRRELDIR%%/locale/nb_NO/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/nb_NO
X@dirrm %%SQUIRRELDIR%%/locale/ms_MY/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/ms_MY
X@dirrm %%SQUIRRELDIR%%/locale/mk/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/mk
X@dirrm %%SQUIRRELDIR%%/locale/lv_LV/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/lv_LV
X@dirrm %%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/lt_LT
X@dirrm %%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/ko_KR
X@dirrm %%SQUIRRELDIR%%/locale/km/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/km
X@dirrm %%SQUIRRELDIR%%/locale/ka/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/ka
X@dirrm %%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/ja_JP
X@dirrm %%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/it_IT
X@dirrm %%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/is_IS
X@dirrm %%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/id_ID
X@dirrm %%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/hu_HU
X@dirrm %%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/hr_HR
X@dirrm %%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/he_IL
X@dirrm %%SQUIRRELDIR%%/locale/fy/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/fy
X@dirrm %%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/fr_FR
X@dirrm %%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/fo_FO
X@dirrm %%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/fi_FI
X@dirrm %%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/fa_IR
X@dirrm %%SQUIRRELDIR%%/locale/eu_ES/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/eu_ES
X@dirrm %%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/et_EE
X@dirrm %%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/es_ES
X@dirrm %%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/el_GR
X@dirrm %%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/de_DE
X@dirrm %%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/da_DK
X@dirrm %%SQUIRRELDIR%%/locale/cy_GB/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/cy_GB
X@dirrm %%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/cs_CZ
X@dirrm %%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/ca_ES
X@dirrm %%SQUIRRELDIR%%/locale/bn_IN/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/bn_IN
X@dirrm %%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/bn_BD
X@dirrm %%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/bg_BG
X@dirrm %%SQUIRRELDIR%%/locale/ar/LC_MESSAGES
X@dirrm %%SQUIRRELDIR%%/locale/ar
X@dirrm %%SQUIRRELDIR%%/locale
X@dirrm %%SQUIRRELDIR%%/include/options
X@dirrm %%SQUIRRELDIR%%/include
X@dirrm %%SQUIRRELDIR%%/images
X@dirrm %%SQUIRRELDIR%%/help/zh_CN
X@dirrm %%SQUIRRELDIR%%/help/uk_UA
X@dirrm %%SQUIRRELDIR%%/help/sv_SE
X@dirrm %%SQUIRRELDIR%%/help/sr_YU
X@dirrm %%SQUIRRELDIR%%/help/sl_SI
X@dirrm %%SQUIRRELDIR%%/help/sk_SK
X@dirrm %%SQUIRRELDIR%%/help/ru_RU
X@dirrm %%SQUIRRELDIR%%/help/pt_PT
X@dirrm %%SQUIRRELDIR%%/help/pt_BR
X@dirrm %%SQUIRRELDIR%%/help/pl_PL
X@dirrm %%SQUIRRELDIR%%/help/nl_NL
X@dirrm %%SQUIRRELDIR%%/help/lt_LT
X@dirrm %%SQUIRRELDIR%%/help/ko_KR
X@dirrm %%SQUIRRELDIR%%/help/ja_JP
X@dirrm %%SQUIRRELDIR%%/help/it_IT
X@dirrm %%SQUIRRELDIR%%/help/id_ID
X@dirrm %%SQUIRRELDIR%%/help/fr_FR
X@dirrm %%SQUIRRELDIR%%/help/fi_FI
X@dirrm %%SQUIRRELDIR%%/help/fa_IR
X@dirrm %%SQUIRRELDIR%%/help/es_ES
X@dirrm %%SQUIRRELDIR%%/help/en_US
X@dirrm %%SQUIRRELDIR%%/help/de_DE
X@dirrm %%SQUIRRELDIR%%/help/da_DK
X@dirrm %%SQUIRRELDIR%%/help/cy_GB
X@dirrm %%SQUIRRELDIR%%/help/cs_CZ
X@dirrm %%SQUIRRELDIR%%/help/ca_ES
X@dirrm %%SQUIRRELDIR%%/help/bg_BG
X@dirrm %%SQUIRRELDIR%%/help
X@dirrm %%SQUIRRELDIR%%/functions/encode
X@dirrm %%SQUIRRELDIR%%/functions/decode
X@dirrm %%SQUIRRELDIR%%/functions
X@dirrm %%SQUIRRELDIR%%/data
X@dirrmtry %%SQUIRRELDIR%%/config
X@dirrm %%SQUIRRELDIR%%/class/mime
X@dirrm %%SQUIRRELDIR%%/class/helper
X@dirrm %%SQUIRRELDIR%%/class/deliver
X@dirrm %%SQUIRRELDIR%%/class
X@dirrmtry %%SQUIRRELDIR%%
X@dirrmtry etc/periodic/daily
X@dirrmtry etc/periodic
046e4d082c23f6184b82baa8e6301217
exit
--- squirrelmail.shar ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:
 >System: FreeBSD webmail.nsn.no 7.3-RELEASE-p2 FreeBSD 7.3-RELEASE-p2 #0: Mon Jul 12 19:23:19 UTC 2010 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64
 
 
 	<machine, os, target, libraries (multiple lines)>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201007291009.o6TA9VkE029787>