summaryrefslogtreecommitdiff
path: root/mail/mozilla-thunderbird
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-09-04 06:31:09 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-09-04 06:31:09 +0000
commit37e90a90a1a7f29745a20c2bb530e2e3b25c88f6 (patch)
tree257334b20ee3b798b64ce5c03cc974ddb9ac9930 /mail/mozilla-thunderbird
parent- update to 0.3.1 (diff)
Add mozilla-thunderbird, a mail application based on the Mozilla mail
component. More details on this project as well as the 0.2 release notes can be found at: http://www.mozilla.org/projects/thunderbird/
Notes
Notes: svn path=/head/; revision=88486
Diffstat (limited to 'mail/mozilla-thunderbird')
-rw-r--r--mail/mozilla-thunderbird/Makefile153
-rw-r--r--mail/mozilla-thunderbird/distinfo1
-rw-r--r--mail/mozilla-thunderbird/files/mozconfig.in69
-rw-r--r--mail/mozilla-thunderbird/files/patch-Double.cpp11
-rw-r--r--mail/mozilla-thunderbird/files/patch-alpha492
-rw-r--r--mail/mozilla-thunderbird/files/patch-build_unix_run-mozilla.sh30
-rw-r--r--mail/mozilla-thunderbird/files/patch-config_preprocess.pl56
-rw-r--r--mail/mozilla-thunderbird/files/patch-gfx_src_gtk_nsFontMetricsXft.cpp57
-rw-r--r--mail/mozilla-thunderbird/files/patch-nspr-unix.c21
-rw-r--r--mail/mozilla-thunderbird/files/patch-nsprpub-pr-src-misc-prtime.c11
-rw-r--r--mail/mozilla-thunderbird/files/patch-nsprpub-pr-src-pthreads-ptio.c29
-rw-r--r--mail/mozilla-thunderbird/files/patch-sparc6469
-rw-r--r--mail/mozilla-thunderbird/files/patch-xptcall-sparc64345
-rw-r--r--mail/mozilla-thunderbird/pkg-descr6
-rw-r--r--mail/mozilla-thunderbird/pkg-plist.gtk13945
-rw-r--r--mail/mozilla-thunderbird/pkg-plist.gtk23957
16 files changed, 9252 insertions, 0 deletions
diff --git a/mail/mozilla-thunderbird/Makefile b/mail/mozilla-thunderbird/Makefile
new file mode 100644
index 000000000000..39b6266a7b38
--- /dev/null
+++ b/mail/mozilla-thunderbird/Makefile
@@ -0,0 +1,153 @@
+# New ports collection makefile for: mozilla-thunderbird
+# Date created: 4 September 2003
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= thunderbird
+PORTVERSION= 0.2
+CATEGORIES= mail
+MASTER_SITES= ${MASTER_SITE_MOZILLA}
+MASTER_SITE_SUBDIR= thunderbird/releases/${PORTVERSION}
+PKGNAMEPREFIX= mozilla-
+DISTNAME= ${PORTNAME}-source-${PORTVERSION}
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= Mozilla Thunderbird is standalone mail and news that stands above
+
+LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
+ png.5:${PORTSDIR}/graphics/png \
+ mng.1:${PORTSDIR}/graphics/libmng \
+ freetype.9:${PORTSDIR}/print/freetype2 \
+ iconv.3:${PORTSDIR}/converters/libiconv \
+ nspr4.1:${PORTSDIR}/devel/nspr
+BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip \
+ freetype-config:${PORTSDIR}/print/freetype2
+
+USE_X_PREFIX= yes
+
+USE_BZIP2= yes
+USE_GMAKE= yes
+USE_PERL5= yes
+USE_REINPLACE= yes
+HAS_CONFIGURE= yes
+ALL_TARGET= default
+
+.if defined(WITH_GTK2)
+USE_GNOME= gtk20 libidl
+PKGNAMESUFFIX= -gtk2
+PLIST= ${PKGDIR}/pkg-plist.gtk2
+.else
+USE_GNOME= gtk12 orbit
+PLIST= ${PKGDIR}/pkg-plist.gtk1
+.endif
+
+NO_MTREE= yes
+WRKSRC= ${WRKDIR}/mozilla
+LOCAL_SUBDIR= lib/${PORTNAME}
+LOCAL_PREFIX= ${PREFIX}/${LOCAL_SUBDIR}
+
+.include <bsd.port.pre.mk>
+
+SORT?=/usr/bin/sort
+
+.if ${ARCH} == "i386"
+CONFIGURE_ENV+= WITH_REORDER=yes
+.endif # ${ARCH} == "i386"
+
+.if defined(WITH_DEBUG)
+WITH_LOGGING= yes
+CONFIGURE_ENV+= WITH_DEBUG=yes
+.endif # defined(WITH_DEBUG)
+
+.if defined(WITH_OPTIMIZED_CFLAGS)
+CFLAGS+= -O2
+.endif # defined(WITH_OPTIMIZED_CFLAGS)
+
+.if defined(WITH_LOGGING)
+CONFIGURE_ENV+= WITH_LOGGING=yes
+.endif # defined(WITH_LOGGING)
+
+.if defined(WITHOUT_XFT)
+CONFIGURE_ENV+= WITHOUT_XFT=yes
+.else
+LIB_DEPENDS+= Xft.2:${PORTSDIR}/x11-fonts/Xft
+.endif # !defined(WITHOUT_XFT)
+
+.if defined(WITH_GTK2)
+CONFIGURE_ENV+= WITH_GTK2=yes
+.endif # defined(WITH_GTK2)
+
+CPPFLAGS+= -I${X11BASE}/include
+CFLAGS+= ${PTHREAD_CFLAGS}
+LDFLAGS+= -L${X11BASE}/lib
+LIBS+= ${PTHREAD_LIBS}
+
+pre-extract::
+ @${ECHO_MSG}
+ @${ECHO_MSG} "Extracting source (this takes a while) ..."
+ @${ECHO_MSG}
+
+post-extract::
+ @${SED} -e 's|@CPPFLAGS@|${CPPFLAGS}|' \
+ -e 's|@CFLAGS@|${CFLAGS}|' \
+ -e 's|@LDFLAGS@|${LDFLAGS}|' \
+ -e 's|@LIBS@|${LIBS}|' \
+ -e 's|@X11BASE@|${X11BASE}|' \
+ -e 's|@LOCALBASE@|${LOCALBASE}|' \
+ -e 's|@PREFIX@|${LOCAL_PREFIX}|' \
+ -e 's|@PERL@|${PERL5}|' \
+ <${FILESDIR}/mozconfig.in >${WRKSRC}/.mozconfig
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \
+ ${WRKSRC}/build/unix/run-mozilla.sh
+
+pre-install:
+ ${RM} -fr ${LOCAL_PREFIX}
+
+link-bins:
+ ${RM} -f ${PREFIX}/bin/thunderbird
+ ${LN} -s ${LOCAL_PREFIX}/bin/thunderbird \
+ ${PREFIX}/bin/thunderbird
+ ${RM} -f ${PREFIX}/bin/thunderbird-config
+ ${LN} -s ${LOCAL_PREFIX}/bin/mozilla-config \
+ ${PREFIX}/bin/thunderbird-config
+
+cleanup-install:
+ ${RM} -fr ${LOCAL_PREFIX}/share/idl
+ ${RM} -fr ${LOCAL_PREFIX}/include
+
+cons-plist:
+ -${RM} -f ${PLIST}
+ ${TOUCH} ${PLIST}
+ ${ECHO_CMD} bin/thunderbird >>${PLIST}
+ ${ECHO_CMD} bin/thunderbird-config >>${PLIST}
+.for i in ${EXTRA_SCRIPTS}
+ ${ECHO_CMD} bin/${i} >>${PLIST}
+.endfor # i in ${EXTRA_SCRIPTS}
+ cd ${PREFIX}; \
+ ${FIND} ${LOCAL_SUBDIR} ! -type d | ${SORT} >>${PLIST}; \
+ ${FIND} ${LOCAL_SUBDIR} -type d -empty | ${SORT} \
+ | ${SED} -e "s:^:@exec ${MKDIR} %D/:" -e "s:$$: || true:" \
+ >> ${PLIST}; \
+ ${FIND} ${LOCAL_SUBDIR} -type d -empty | ${SORT} -r \
+ | ${SED} -e "s:^:@unexec ${RMDIR} %D/:" -e "s:$$: || true:" \
+ >> ${PLIST}; \
+ ${FIND} ${LOCAL_SUBDIR} -type d ! -empty | ${SORT} -r \
+ | ${SED} -e "s:^:@dirrm :" >> ${PLIST}
+
+.PHONY: link-bins cleanup-install cons-plist
+
+.include <bsd.port.post.mk>
+
+# <alane>
+# Under normal circumstances, you should not put anything after
+# the above line. However, this is the only way I can state the
+# dependency without trashing the actual code of the generate-plist
+# target. This is a limitation of the make(1) program itself.
+# </alane>
+generate-plist: link-bins cleanup-install
+
+#EOF
diff --git a/mail/mozilla-thunderbird/distinfo b/mail/mozilla-thunderbird/distinfo
new file mode 100644
index 000000000000..e0e1aeb3b535
--- /dev/null
+++ b/mail/mozilla-thunderbird/distinfo
@@ -0,0 +1 @@
+MD5 (thunderbird-source-0.2.tar.bz2) = 79d720fc5a78b9491d34629a10ea9c20
diff --git a/mail/mozilla-thunderbird/files/mozconfig.in b/mail/mozilla-thunderbird/files/mozconfig.in
new file mode 100644
index 000000000000..3c3106b11d54
--- /dev/null
+++ b/mail/mozilla-thunderbird/files/mozconfig.in
@@ -0,0 +1,69 @@
+# .mozconfig.in -*-shell-script-*-
+# $FreeBSD$
+######################################################################
+# standard opts from README
+export MOZ_THUNDERBIRD=1
+mk_add_options MOZ_MOZ_THUNDERBIRD=1
+ac_add_options --enable-crypto
+ac_add_options --disable-mathml
+ac_add_options --disable-installer
+ac_add_options --disable-activex
+ac_add_options --disable-activex-scripting
+ac_add_options --disable-oji
+ac_add_options --disable-necko-disk-cache
+ac_add_options --disable-tests
+ac_add_options --disable-profilesharing
+ac_add_options --enable-extensions=wallet,spellcheck
+ac_add_options --enable-necko-protocols=http,file,jar,viewsource,res,data
+ac_add_options --enable-image-decoders=png,gif,jpeg
+######################################################################
+# FBSD specific
+export CPPFLAGS="@CPPFLAGS@"
+export CFLAGS="@CFLAGS@"
+export LIBS="@LIBS@"
+export LDFLAGS="@LDFLAGS@"
+export CONFIG_SH=/bin/sh
+export XP_UNIX=1
+mk_add_options XP_UNIX=1
+export PERL="@PERL@"
+mk_add_options PERL=$PERL
+# Configure options for installation
+ac_add_options --prefix=@PREFIX@
+######################################################################
+# Use ports for these libraries
+ac_add_options --with-system-jpeg=@LOCALBASE@
+ac_add_options --with-system-zlib
+ac_add_options --with-system-png=@LOCALBASE@
+ac_add_options --with-system-mng=@LOCALBASE@
+######################################################################
+# set compile/link features
+ac_add_options --with-pthreads
+ac_add_options --enable-strip
+######################################################################
+# conditional from port Makefile
+if test -n "$WITH_REORDER"; then
+ ac_add_options --enable-reorder
+else
+ ac_add_options --disable-reorder
+fi # test -n "$WITH_REORDER"
+if test -n "$WITH_DEBUG"; then
+ ac_add_options --enable-debug
+else
+ ac_add_options --disable-debug
+fi # test -n "$WITH_DEBUG"
+if test -n "$WITH_LOGGING"; then
+ ac_add_options --enable-logging
+else
+ ac_add_options --disable-logging
+fi # test -n "$WITH_LOGGING"
+if test -z "$WITHOUT_XFT"; then
+ ac_add_options --enable-xft
+else
+ ac_add_options --disable-xft
+fi # test -z "$WITHOUT_XFT"
+if test -n "$WITH_GTK2"; then
+ ac_add_options --enable-default-toolkit=gtk2
+else
+ ac_add_options --enable-default-toolkit=gtk
+fi # test -n "$WITH_GTK2"
+######################################################################
diff --git a/mail/mozilla-thunderbird/files/patch-Double.cpp b/mail/mozilla-thunderbird/files/patch-Double.cpp
new file mode 100644
index 000000000000..3dabc0260c14
--- /dev/null
+++ b/mail/mozilla-thunderbird/files/patch-Double.cpp
@@ -0,0 +1,11 @@
+--- extensions/transformiix/source/base/Double.cpp.orig Wed May 21 04:42:05 2003
++++ extensions/transformiix/source/base/Double.cpp Wed May 21 04:42:24 2003
+@@ -51,7 +51,7 @@
+ //A trick to handle IEEE floating point exceptions on FreeBSD - E.D.
+ #ifdef __FreeBSD__
+ #include <ieeefp.h>
+-#ifdef __alpha__
++#if defined(__alpha__) || defined(__sparc64__)
+ fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP;
+ #else
+ fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP|FP_X_DNML;
diff --git a/mail/mozilla-thunderbird/files/patch-alpha b/mail/mozilla-thunderbird/files/patch-alpha
new file mode 100644
index 000000000000..f8c1b081c9fa
--- /dev/null
+++ b/mail/mozilla-thunderbird/files/patch-alpha
@@ -0,0 +1,492 @@
+--- xpcom/reflect/xptcall/src/md/unix/Makefile.in.orig Mon Jan 27 22:52:51 2003
++++ xpcom/reflect/xptcall/src/md/unix/Makefile.in Tue May 27 01:41:12 2003
+@@ -100,9 +100,15 @@
+ ASFILES := xptcinvoke_asm_osf1_alpha.s xptcstubs_asm_osf1_alpha.s
+ endif
+ #
++# FreeBSD/Alpha
++#
++ifeq ($(OS_ARCH)$(OS_TEST),FreeBSDalpha)
++CPPSRCS := xptcinvoke_freebsd_alpha.cpp xptcstubs_freebsd_alpha.cpp
++endif
++#
+ # Linux/Alpha
+ #
+-ifneq (,$(filter Linuxalpha FreeBSDalpha NetBSDalpha,$(OS_ARCH)$(OS_TEST)))
++ifneq (,$(filter Linuxalpha NetBSDalpha,$(OS_ARCH)$(OS_TEST)))
+ CPPSRCS := xptcinvoke_linux_alpha.cpp xptcstubs_linux_alpha.cpp
+ endif
+ #
+--- config/rules.mk.orig Mon May 5 21:04:55 2003
++++ config/rules.mk Tue May 27 01:33:11 2003
+@@ -444,7 +444,11 @@
+
+ ifeq ($(OS_ARCH),FreeBSD)
+ ifdef IS_COMPONENT
++ifneq (,$(filter alpha,$(OS_TEST)))
++EXTRA_DSO_LDOPTS += -Wl,-Bsymbolic -lc
++else
+ EXTRA_DSO_LDOPTS += -Wl,-Bsymbolic
++endif
+ endif
+ endif
+
+--- xpcom/reflect/xptcall/src/md/unix/xptcinvoke_freebsd_alpha.cpp.orig Tue May 27 01:37:25 2003
++++ xpcom/reflect/xptcall/src/md/unix/xptcinvoke_freebsd_alpha.cpp Tue May 27 01:37:00 2003
+@@ -0,0 +1,184 @@
++/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
++/* ***** BEGIN LICENSE BLOCK *****
++ * Version: NPL 1.1/GPL 2.0/LGPL 2.1
++ *
++ * The contents of this file are subject to the Netscape Public License
++ * Version 1.1 (the "License"); you may not use this file except in
++ * compliance with the License. You may obtain a copy of the License at
++ * http://www.mozilla.org/NPL/
++ *
++ * Software distributed under the License is distributed on an "AS IS" basis,
++ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
++ * for the specific language governing rights and limitations under the
++ * License.
++ *
++ * The Original Code is mozilla.org code.
++ *
++ * The Initial Developer of the Original Code is
++ * Netscape Communications Corporation.
++ * Portions created by the Initial Developer are Copyright (C) 1998
++ * the Initial Developer. All Rights Reserved.
++ *
++ * Contributor(s):
++ *
++ * Alternatively, the contents of this file may be used under the terms of
++ * either the GNU General Public License Version 2 or later (the "GPL"), or
++ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
++ * in which case the provisions of the GPL or the LGPL are applicable instead
++ * of those above. If you wish to allow use of your version of this file only
++ * under the terms of either the GPL or the LGPL, and not to allow others to
++ * use your version of this file under the terms of the NPL, indicate your
++ * decision by deleting the provisions above and replace them with the notice
++ * and other provisions required by the GPL or the LGPL. If you do not delete
++ * the provisions above, a recipient may use your version of this file under
++ * the terms of any one of the NPL, the GPL or the LGPL.
++ *
++ * ***** END LICENSE BLOCK ***** */
++
++/* Platform specific code to invoke XPCOM methods on native objects */
++
++/* contributed by Glen Nakamura <glen.nakamura@usa.net> */
++
++#include "xptcprivate.h"
++
++/* Prototype specifies unmangled function name and disables unused warning */
++static void
++invoke_copy_to_stack(PRUint64* d, PRUint32 paramCount, nsXPTCVariant* s)
++__asm__("invoke_copy_to_stack") __attribute__((unused));
++
++static void
++invoke_copy_to_stack(PRUint64* d, PRUint32 paramCount, nsXPTCVariant* s)
++{
++ const PRUint8 NUM_ARG_REGS = 6-1; // -1 for "this" pointer
++
++ for(PRUint32 i = 0; i < paramCount; i++, d++, s++)
++ {
++ if(s->IsPtrData())
++ {
++ *d = (PRUint64)s->ptr;
++ continue;
++ }
++ switch(s->type)
++ {
++ case nsXPTType::T_I8 : *d = (PRUint64)s->val.i8; break;
++ case nsXPTType::T_I16 : *d = (PRUint64)s->val.i16; break;
++ case nsXPTType::T_I32 : *d = (PRUint64)s->val.i32; break;
++ case nsXPTType::T_I64 : *d = (PRUint64)s->val.i64; break;
++ case nsXPTType::T_U8 : *d = (PRUint64)s->val.u8; break;
++ case nsXPTType::T_U16 : *d = (PRUint64)s->val.u16; break;
++ case nsXPTType::T_U32 : *d = (PRUint64)s->val.u32; break;
++ case nsXPTType::T_U64 : *d = (PRUint64)s->val.u64; break;
++ case nsXPTType::T_FLOAT :
++ if(i < NUM_ARG_REGS)
++ {
++ // convert floats to doubles if they are to be passed
++ // via registers so we can just deal with doubles later
++ union { PRUint64 u64; double d; } t;
++ t.d = (double)s->val.f;
++ *d = t.u64;
++ }
++ else
++ // otherwise copy to stack normally
++ *d = (PRUint64)s->val.u32;
++ break;
++ case nsXPTType::T_DOUBLE : *d = (PRUint64)s->val.u64; break;
++ case nsXPTType::T_BOOL : *d = (PRUint64)s->val.b; break;
++ case nsXPTType::T_CHAR : *d = (PRUint64)s->val.c; break;
++ case nsXPTType::T_WCHAR : *d = (PRUint64)s->val.wc; break;
++ default:
++ // all the others are plain pointer types
++ *d = (PRUint64)s->val.p;
++ break;
++ }
++ }
++}
++
++/*
++ * XPTC_PUBLIC_API(nsresult)
++ * XPTC_InvokeByIndex(nsISupports* that, PRUint32 methodIndex,
++ * PRUint32 paramCount, nsXPTCVariant* params, void* vt)
++ */
++__asm__(
++ "#### XPTC_InvokeByIndex ####\n"
++".text\n\t"
++ ".align 5\n\t"
++ ".globl XPTC_InvokeByIndex\n\t"
++ ".ent XPTC_InvokeByIndex\n"
++"XPTC_InvokeByIndex:\n\t"
++ ".frame $15,32,$26,0\n\t"
++ ".mask 0x4008000,-32\n\t"
++ "ldgp $29,0($27)\n"
++"$XPTC_InvokeByIndex..ng:\n\t"
++ "subq $30,32,$30\n\t"
++ "stq $26,0($30)\n\t"
++ "stq $15,8($30)\n\t"
++ "bis $30,$30,$15\n\t"
++ ".prologue 1\n\t"
++
++ /*
++ * Allocate enough stack space to hold the greater of 6 or "paramCount"+1
++ * parameters. (+1 for "this" pointer) Room for at least 6 parameters
++ * is required for storage of those passed via registers.
++ */
++
++ "bis $31,5,$2\n\t" /* count = MAX(5, "paramCount") */
++ "cmplt $2,$18,$1\n\t"
++ "cmovne $1,$18,$2\n\t"
++ "s8addq $2,16,$1\n\t" /* room for count+1 params (8 bytes each) */
++ "bic $1,15,$1\n\t" /* stack space is rounded up to 0 % 16 */
++ "subq $30,$1,$30\n\t"
++
++ "stq $16,0($30)\n\t" /* save "that" (as "this" pointer) */
++ "stq $17,16($15)\n\t" /* save "methodIndex" */
++
++ "addq $30,8,$16\n\t" /* pass stack pointer */
++ "bis $18,$18,$17\n\t" /* pass "paramCount" */
++ "bis $19,$19,$18\n\t" /* pass "params" */
++ "bsr $26,$invoke_copy_to_stack..ng\n\t" /* call invoke_copy_to_stack */
++
++ /*
++ * Copy the first 6 parameters to registers and remove from stack frame.
++ * Both the integer and floating point registers are set for each parameter
++ * except the first which is the "this" pointer. (integer only)
++ * The floating point registers are all set as doubles since the
++ * invoke_copy_to_stack function should have converted the floats.
++ */
++ "ldq $16,0($30)\n\t" /* integer registers */
++ "ldq $17,8($30)\n\t"
++ "ldq $18,16($30)\n\t"
++ "ldq $19,24($30)\n\t"
++ "ldq $20,32($30)\n\t"
++ "ldq $21,40($30)\n\t"
++ "ldt $f17,8($30)\n\t" /* floating point registers */
++ "ldt $f18,16($30)\n\t"
++ "ldt $f19,24($30)\n\t"
++ "ldt $f20,32($30)\n\t"
++ "ldt $f21,40($30)\n\t"
++
++ "addq $30,48,$30\n\t" /* remove params from stack */
++
++ /*
++ * Call the virtual function with the constructed stack frame.
++ */
++ "bis $16,$16,$1\n\t" /* load "this" */
++ "ldq $2,16($15)\n\t" /* load "methodIndex" */
++ "ldq $1,0($1)\n\t" /* load vtable */
++#if 0
++ "s8addq $2,16,$2\n\t" /* vtable index = "methodIndex" * 8 + 16 */
++#else
++ "mulq $2, 8, $2\n\t"
++ "addq $2, 0, $2\n\t" /* vtable index = "methodIndex" * 16 + 24 */
++#endif
++ "addq $1,$2,$1\n\t"
++ "ldq $27,0($1)\n\t" /* load address of function */
++ "jsr $26,($27),0\n\t" /* call virtual function */
++ "ldgp $29,0($26)\n\t"
++
++ "bis $15,$15,$30\n\t"
++ "ldq $26,0($30)\n\t"
++ "ldq $15,8($30)\n\t"
++ "addq $30,32,$30\n\t"
++ "ret $31,($26),1\n\t"
++ ".end XPTC_InvokeByIndex"
++ );
++
+--- xpcom/reflect/xptcall/src/md/unix/xptcstubs_freebsd_alpha.cpp.orig Tue May 27 01:37:30 2003
++++ xpcom/reflect/xptcall/src/md/unix/xptcstubs_freebsd_alpha.cpp Tue May 27 01:37:04 2003
+@@ -0,0 +1,269 @@
++/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
++/* ***** BEGIN LICENSE BLOCK *****
++ * Version: NPL 1.1/GPL 2.0/LGPL 2.1
++ *
++ * The contents of this file are subject to the Netscape Public License
++ * Version 1.1 (the "License"); you may not use this file except in
++ * compliance with the License. You may obtain a copy of the License at
++ * http://www.mozilla.org/NPL/
++ *
++ * Software distributed under the License is distributed on an "AS IS" basis,
++ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
++ * for the specific language governing rights and limitations under the
++ * License.
++ *
++ * The Original Code is mozilla.org code.
++ *
++ * The Initial Developer of the Original Code is
++ * Netscape Communications Corporation.
++ * Portions created by the Initial Developer are Copyright (C) 1999
++ * the Initial Developer. All Rights Reserved.
++ *
++ * Contributor(s):
++ *
++ * Alternatively, the contents of this file may be used under the terms of
++ * either the GNU General Public License Version 2 or later (the "GPL"), or
++ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
++ * in which case the provisions of the GPL or the LGPL are applicable instead
++ * of those above. If you wish to allow use of your version of this file only
++ * under the terms of either the GPL or the LGPL, and not to allow others to
++ * use your version of this file under the terms of the NPL, indicate your
++ * decision by deleting the provisions above and replace them with the notice
++ * and other provisions required by the GPL or the LGPL. If you do not delete
++ * the provisions above, a recipient may use your version of this file under
++ * the terms of any one of the NPL, the GPL or the LGPL.
++ *
++ * ***** END LICENSE BLOCK ***** */
++
++/* Implement shared vtbl methods. */
++
++/* contributed by Glen Nakamura <glen.nakamura@usa.net> */
++
++#include <sys/types.h>
++#include <machine/cpu.h>
++#include "xptcprivate.h"
++
++/* Prototype specifies unmangled function name and disables unused warning */
++static nsresult
++PrepareAndDispatch(nsXPTCStubBase* self, uint32 methodIndex, PRUint64* args)
++__asm__("PrepareAndDispatch") __attribute__((unused));
++
++static nsresult
++PrepareAndDispatch(nsXPTCStubBase* self, uint32 methodIndex, PRUint64* args)
++{
++ const PRUint8 PARAM_BUFFER_COUNT = 16;
++ const PRUint8 NUM_ARG_REGS = 6-1; // -1 for "this" pointer
++
++ nsXPTCMiniVariant paramBuffer[PARAM_BUFFER_COUNT];
++ nsXPTCMiniVariant* dispatchParams = NULL;
++ nsIInterfaceInfo* iface_info = NULL;
++ const nsXPTMethodInfo* info;
++ PRUint8 paramCount;
++ PRUint8 i;
++ nsresult result = NS_ERROR_FAILURE;
++
++ NS_ASSERTION(self,"no self");
++
++ self->GetInterfaceInfo(&iface_info);
++ NS_ASSERTION(iface_info,"no interface info");
++
++ iface_info->GetMethodInfo(PRUint16(methodIndex), &info);
++ NS_ASSERTION(info,"no interface info");
++
++ paramCount = info->GetParamCount();
++
++ // setup variant array pointer
++ if(paramCount > PARAM_BUFFER_COUNT)
++ dispatchParams = new nsXPTCMiniVariant[paramCount];
++ else
++ dispatchParams = paramBuffer;
++ NS_ASSERTION(dispatchParams,"no place for params");
++
++ // args[0] to args[NUM_ARG_REGS] hold floating point register values
++ PRUint64* ap = args + NUM_ARG_REGS;
++ for(i = 0; i < paramCount; i++, ap++)
++ {
++ const nsXPTParamInfo& param = info->GetParam(i);
++ const nsXPTType& type = param.GetType();
++ nsXPTCMiniVariant* dp = &dispatchParams[i];
++
++ if(param.IsOut() || !type.IsArithmetic())
++ {
++ dp->val.p = (void*) *ap;
++ continue;
++ }
++ // else
++ switch(type)
++ {
++ case nsXPTType::T_I8 : dp->val.i8 = (PRInt8) *ap; break;
++ case nsXPTType::T_I16 : dp->val.i16 = (PRInt16) *ap; break;
++ case nsXPTType::T_I32 : dp->val.i32 = (PRInt32) *ap; break;
++ case nsXPTType::T_I64 : dp->val.i64 = (PRInt64) *ap; break;
++ case nsXPTType::T_U8 : dp->val.u8 = (PRUint8) *ap; break;
++ case nsXPTType::T_U16 : dp->val.u16 = (PRUint16) *ap; break;
++ case nsXPTType::T_U32 : dp->val.u32 = (PRUint32) *ap; break;
++ case nsXPTType::T_U64 : dp->val.u64 = (PRUint64) *ap; break;
++ case nsXPTType::T_FLOAT :
++ if(i < NUM_ARG_REGS)
++ {
++ // floats passed via registers are stored as doubles
++ // in the first NUM_ARG_REGS entries in args
++ dp->val.u64 = (PRUint64) args[i];
++ dp->val.f = (float) dp->val.d; // convert double to float
++ }
++ else
++ dp->val.u32 = (PRUint32) *ap;
++ break;
++ case nsXPTType::T_DOUBLE :
++ // doubles passed via registers are also stored
++ // in the first NUM_ARG_REGS entries in args
++ dp->val.u64 = (i < NUM_ARG_REGS) ? args[i] : *ap;
++ break;
++ case nsXPTType::T_BOOL : dp->val.b = (PRBool) *ap; break;
++ case nsXPTType::T_CHAR : dp->val.c = (char) *ap; break;
++ case nsXPTType::T_WCHAR : dp->val.wc = (PRUnichar) *ap; break;
++ default:
++ NS_ASSERTION(0, "bad type");
++ break;
++ }
++ }
++
++ result = self->CallMethod((PRUint16)methodIndex, info, dispatchParams);
++
++ NS_RELEASE(iface_info);
++
++ if(dispatchParams != paramBuffer)
++ delete [] dispatchParams;
++
++ return result;
++}
++
++/*
++ * SharedStub()
++ * Collects arguments and calls PrepareAndDispatch. The "methodIndex" is
++ * passed to this function via $1 to preserve the argument registers.
++ */
++__asm__(
++ "#### SharedStub ####\n"
++".text\n\t"
++ ".align 5\n\t"
++ ".ent SharedStub\n"
++"SharedStub:\n\t"
++ ".frame $30,96,$26,0\n\t"
++ ".mask 0x4000000,-96\n\t"
++ "ldgp $29,0($27)\n"
++"$SharedStub..ng:\n\t"
++ "subq $30,96,$30\n\t"
++ "stq $26,0($30)\n\t"
++ ".prologue 1\n\t"
++
++ /*
++ * Store arguments passed via registers to the stack.
++ * Floating point registers are stored as doubles and converted
++ * to floats in PrepareAndDispatch if necessary.
++ */
++ "stt $f17,16($30)\n\t" /* floating point registers */
++ "stt $f18,24($30)\n\t"
++ "stt $f19,32($30)\n\t"
++ "stt $f20,40($30)\n\t"
++ "stt $f21,48($30)\n\t"
++ "stq $17,56($30)\n\t" /* integer registers */
++ "stq $18,64($30)\n\t"
++ "stq $19,72($30)\n\t"
++ "stq $20,80($30)\n\t"
++ "stq $21,88($30)\n\t"
++
++ /*
++ * Call PrepareAndDispatch function.
++ */
++ "bis $1,$1,$17\n\t" /* pass "methodIndex" */
++ "addq $30,16,$18\n\t" /* pass "args" */
++ "bsr $26,$PrepareAndDispatch..ng\n\t"
++
++ "ldq $26,0($30)\n\t"
++ "addq $30,96,$30\n\t"
++ "ret $31,($26),1\n\t"
++ ".end SharedStub"
++ );
++
++#if defined(__GXX_ABI_VERSION) && __GXX_ABI_VERSION >= 100 /* G++ V3 ABI */
++/*
++ * nsresult nsXPTCStubBase::Stub##n()
++ * Sets register $1 to "methodIndex" and jumps to SharedStub.
++ */
++#define STUB_ENTRY(n) \
++__asm__( \
++ "#### Stub"#n" ####\n" \
++".text\n\t" \
++ ".align 5\n\t" \
++ ".globl _ZN14nsXPTCStubBase5Stub"#n"Ev\n\t" \
++ ".ent _ZN14nsXPTCStubBase5Stub"#n"Ev\n" \
++"_ZN14nsXPTCStubBase5Stub"#n"Ev:\n\t" \
++ ".frame $30,0,$26,0\n\t" \
++ "ldgp $29,0($27)\n" \
++"$_ZN14nsXPTCStubBase5Stub"#n"Ev..ng:\n\t" \
++ ".prologue 1\n\t" \
++ "lda $1,"#n"\n\t" \
++ "br $31,$SharedStub..ng\n\t" \
++ ".end _ZN14nsXPTCStubBase5Stub"#n"Ev" \
++ ); \
++__asm__( \
++ "#### Stub"#n" ####\n" \
++".text\n\t" \
++ ".align 5\n\t" \
++ ".globl _ZN14nsXPTCStubBase6Stub"#n"Ev\n\t" \
++ ".ent _ZN14nsXPTCStubBase6Stub"#n"Ev\n" \
++"_ZN14nsXPTCStubBase6Stub"#n"Ev:\n\t" \
++ ".frame $30,0,$26,0\n\t" \
++ "ldgp $29,0($27)\n" \
++"$_ZN14nsXPTCStubBase6Stub"#n"Ev..ng:\n\t" \
++ ".prologue 1\n\t" \
++ "lda $1,"#n"\n\t" \
++ "br $31,$SharedStub..ng\n\t" \
++ ".end _ZN14nsXPTCStubBase6Stub"#n"Ev" \
++ ); \
++__asm__( \
++ "#### Stub"#n" ####\n" \
++".text\n\t" \
++ ".align 5\n\t" \
++ ".globl _ZN14nsXPTCStubBase7Stub"#n"Ev\n\t" \
++ ".ent _ZN14nsXPTCStubBase7Stub"#n"Ev\n" \
++"_ZN14nsXPTCStubBase7Stub"#n"Ev:\n\t" \
++ ".frame $30,0,$26,0\n\t" \
++ "ldgp $29,0($27)\n" \
++"$_ZN14nsXPTCStubBase7Stub"#n"Ev..ng:\n\t" \
++ ".prologue 1\n\t" \
++ "lda $1,"#n"\n\t" \
++ "br $31,$SharedStub..ng\n\t" \
++ ".end _ZN14nsXPTCStubBase7Stub"#n"Ev" \
++ );
++#else
++/*
++ * nsresult nsXPTCStubBase::Stub##n()
++ * Sets register $1 to "methodIndex" and jumps to SharedStub.
++ */
++#define STUB_ENTRY(n) \
++nsresult nsXPTCStubBase::Stub##n() \
++{ \
++ nsresult result; \
++__asm__ __volatile__( \
++ "ldah $29,0($27)\n\t" \
++ "lda $29,0($29)\n\t" \
++ "lda $1, "#n"\n\t" \
++ "br $31, $SharedStub..ng\n\t" \
++ "mov $0, %0\n\t" \
++ : "=r" (result) \
++ ); \
++ return result; \
++}
++#endif
++
++#define SENTINEL_ENTRY(n) \
++nsresult nsXPTCStubBase::Sentinel##n() \
++{ \
++ NS_ASSERTION(0,"nsXPTCStubBase::Sentinel called"); \
++ return NS_ERROR_NOT_IMPLEMENTED; \
++}
++
++#include "xptcstubsdef.inc"
++
diff --git a/mail/mozilla-thunderbird/files/patch-build_unix_run-mozilla.sh b/mail/mozilla-thunderbird/files/patch-build_unix_run-mozilla.sh
new file mode 100644
index 000000000000..e7b80ed29c53
--- /dev/null
+++ b/mail/mozilla-thunderbird/files/patch-build_unix_run-mozilla.sh
@@ -0,0 +1,30 @@
+--- build/unix/run-mozilla.sh.orig Fri Apr 18 23:12:28 2003
++++ build/unix/run-mozilla.sh Sat May 31 19:03:29 2003
+@@ -355,7 +355,7 @@
+ fi
+ ##
+ ## Set LD_LIBRARY_PATH
+-LD_LIBRARY_PATH=${MOZ_DIST_BIN}:${MOZ_DIST_BIN}/plugins:${MRE_HOME}${LD_LIBRARY_PATH+":$LD_LIBRARY_PATH"}
++LD_LIBRARY_PATH=${MOZ_DIST_BIN}:${MOZ_DIST_BIN}/plugins:%%PREFIX%%/lib/browser_plugins:${MRE_HOME}${LD_LIBRARY_PATH+":$LD_LIBRARY_PATH"}
+ if [ -n "$LD_LIBRARYN32_PATH" ]
+ then
+ LD_LIBRARYN32_PATH=${MOZ_DIST_BIN}:${MOZ_DIST_BIN}/plugins:${MRE_HOME}${LD_LIBRARYN32_PATH+":$LD_LIBRARYN32_PATH"}
+@@ -402,7 +402,7 @@
+ fi
+ fi
+ # Font path for Xft
+-FONTCONFIG_PATH="/etc/fonts:${MOZILLA_FIVE_HOME}/res/Xft"
++FONTCONFIG_PATH="%%PREFIX%%/etc/fonts:${MOZILLA_FIVE_HOME}/res/Xft"
+ export FONTCONFIG_PATH
+
+ if [ "$moz_debug" -eq 1 ]
+@@ -445,6 +445,9 @@
+ #
+ export MOZILLA_FIVE_HOME LD_LIBRARY_PATH
+ export SHLIB_PATH LIBPATH LIBRARY_PATH ADDON_PATH DYLD_LIBRARY_PATH
++
++MOZ_PLUGIN_PATH=%%PREFIX%%/lib/browser_plugins
++export MOZ_PLUGIN_PATH
+
+ if [ $moz_debug -eq 1 ]
+ then
diff --git a/mail/mozilla-thunderbird/files/patch-config_preprocess.pl b/mail/mozilla-thunderbird/files/patch-config_preprocess.pl
new file mode 100644
index 000000000000..da1f69a2d338
--- /dev/null
+++ b/mail/mozilla-thunderbird/files/patch-config_preprocess.pl
@@ -0,0 +1,56 @@
+--- config/preprocessor.pl.orig Wed Aug 13 05:46:33 2003
++++ config/preprocessor.pl Thu Sep 4 00:42:12 2003
+@@ -71,16 +71,40 @@
+ ########################################################################
+
+ package main;
+-use File::Spec 0.8;
++use File::Spec;
+ use File::Spec::Unix; # on all platforms, because the #include syntax is unix-based
++use File::Basename;
++use Cwd;
++
++# This code is taken from File::Spec::Unix 0.8.
++sub rel2abs {
++ my ($path, $base) = @_;
++
++ if ( ! File::Spec->file_name_is_absolute( $path ) ) {
++ if ( !defined( $base ) || $base eq '' ) {
++ $base = cwd() ;
++ }
++ elsif ( ! File::Spec->file_name_is_absolute( $base ) ) {
++ $base = rel2abs( $base );
++ }
++ else {
++ $base = File::Spec->canonpath( $base );
++ }
++
++ $path = File::Spec->catdir( $base, $path );
++ }
++
++ return File::Spec->canonpath( $path );
++}
++# End code from File::Spec::Unix
++
+
+ sub include {
+ my($stack, $filename) = @_;
+ my $directory = $stack->{'variables'}->{'DIRECTORY'};
+ if ($filename ne '-') {
+- $filename = File::Spec->rel2abs($filename, $directory);
+- my($volume, $path) = File::Spec->splitpath($filename);
+- $directory = File::Spec->catpath($volume, $path, '');
++ $filename = rel2abs($filename, $directory);
++ $directory = File::Spec->catdir(dirname($filename));
+ }
+ local $stack->{'variables'}->{'DIRECTORY'} = $directory;
+ local $stack->{'variables'}->{'FILE'} = $filename;
+@@ -374,7 +398,7 @@
+ my $stack = shift;
+ return if $stack->disabled;
+ die "argument expected\n" unless @_;
+- main::include($stack, File::Spec->catpath(File::Spec::Unix->splitpath(@_)));
++ main::include($stack, File::Spec->catfile(dirname(@_), basename(@_)));
+ }
+
+ sub filter {
diff --git a/mail/mozilla-thunderbird/files/patch-gfx_src_gtk_nsFontMetricsXft.cpp b/mail/mozilla-thunderbird/files/patch-gfx_src_gtk_nsFontMetricsXft.cpp
new file mode 100644
index 000000000000..0b0e08247101
--- /dev/null
+++ b/mail/mozilla-thunderbird/files/patch-gfx_src_gtk_nsFontMetricsXft.cpp
@@ -0,0 +1,57 @@
+--- gfx/src/gtk/nsFontMetricsXft.cpp.save Thu Aug 7 12:14:49 2003
++++ gfx/src/gtk/nsFontMetricsXft.cpp Thu Aug 7 12:33:45 2003
+@@ -106,6 +106,7 @@
+ FcPattern *mPattern;
+ FcPattern *mFontName;
+ FcCharSet *mCharset;
++ int mNotXft;
+ };
+
+ class nsFontXftInfo;
+@@ -1051,7 +1052,7 @@
+ // font in our loaded list that supports the character
+ for (PRInt32 i = 0, end = mLoadedFonts.Count(); i < end; ++i) {
+ nsFontXft *font = (nsFontXft *)mLoadedFonts.ElementAt(i);
+- if (font->HasChar(PRUint32(aChar)))
++ if (font->HasChar(PRUint32(aChar)) && font->GetXftFont())
+ return font;
+ }
+
+@@ -1492,7 +1493,7 @@
+ // this character.
+ for (PRInt32 j = 0, end = mLoadedFonts.Count(); j < end; ++j) {
+ font = (nsFontXft *)mLoadedFonts.ElementAt(j);
+- if (font->HasChar(c)) {
++ if (font->HasChar(c) && font->GetXftFont()) {
+ currFont = font;
+ goto FoundFont; // for speed -- avoid "if" statement
+ }
+@@ -1922,6 +1923,7 @@
+ FcPatternReference(mFontName);
+
+ mXftFont = nsnull;
++ mNotXft = 0;
+
+ // set up our charset
+ mCharset = nsnull;
+@@ -1948,7 +1950,7 @@
+ XftFont *
+ nsFontXft::GetXftFont(void)
+ {
+- if (!mXftFont) {
++ if (!mXftFont && !mNotXft) {
+ FcPattern *pat = FcFontRenderPrepare(0, mPattern, mFontName);
+ if (!pat)
+ return nsnull;
+@@ -1967,8 +1969,10 @@
+ FcPatternDel(pat, FC_SPACING);
+
+ mXftFont = XftFontOpenPattern(GDK_DISPLAY(), pat);
+- if (!mXftFont)
++ if (!mXftFont) {
+ FcPatternDestroy(pat);
++ mNotXft = 1;
++ }
+ }
+
+ return mXftFont;
diff --git a/mail/mozilla-thunderbird/files/patch-nspr-unix.c b/mail/mozilla-thunderbird/files/patch-nspr-unix.c
new file mode 100644
index 000000000000..6bb4ed08fb40
--- /dev/null
+++ b/mail/mozilla-thunderbird/files/patch-nspr-unix.c
@@ -0,0 +1,21 @@
+--- nsprpub/pr/src/md/unix/unix.c.orig Sat May 31 18:06:04 2003
++++ nsprpub/pr/src/md/unix/unix.c Sat May 31 18:04:43 2003
+@@ -65,7 +65,8 @@
+ * PRInt32* pointer to a _PRSockLen_t* pointer.
+ */
+ #if defined(HAVE_SOCKLEN_T) \
+- || (defined(LINUX) && defined(__GLIBC__) && __GLIBC__ >= 2)
++ || (defined(LINUX) && defined(__GLIBC__) && __GLIBC__ >= 2) \
++ || defined(FREEBSD)
+ #define _PRSockLen_t socklen_t
+ #elif defined(IRIX) || defined(HPUX) || defined(OSF1) || defined(SOLARIS) \
+ || defined(AIX4_1) || defined(LINUX) || defined(SONY) \
+@@ -73,7 +74,7 @@
+ || defined(SUNOS4) || defined(NCR) || defined(DARWIN) \
+ || defined(NEXTSTEP) || defined(QNX)
+ #define _PRSockLen_t int
+-#elif (defined(AIX) && !defined(AIX4_1)) || defined(FREEBSD) \
++#elif (defined(AIX) && !defined(AIX4_1)) \
+ || defined(NETBSD) || defined(OPENBSD) || defined(UNIXWARE) \
+ || defined(DGUX) || defined(VMS) || defined(NTO)
+ #define _PRSockLen_t size_t
diff --git a/mail/mozilla-thunderbird/files/patch-nsprpub-pr-src-misc-prtime.c b/mail/mozilla-thunderbird/files/patch-nsprpub-pr-src-misc-prtime.c
new file mode 100644
index 000000000000..9682808e4d9e
--- /dev/null
+++ b/mail/mozilla-thunderbird/files/patch-nsprpub-pr-src-misc-prtime.c
@@ -0,0 +1,11 @@
+--- nsprpub/pr/src/misc/prtime.c.orig Thu Feb 27 01:01:02 2003
++++ nsprpub/pr/src/misc/prtime.c Thu May 22 16:46:49 2003
+@@ -1666,7 +1666,7 @@
+ */
+
+ #if defined(SUNOS4) || (__GLIBC__ >= 2) || defined(XP_BEOS) \
+- || defined(NETBSD)
++ || defined(NETBSD) || defined(__FreeBSD__)
+ a.tm_zone = NULL;
+ a.tm_gmtoff = tm->tm_params.tp_gmt_offset + tm->tm_params.tp_dst_offset;
+ #endif
diff --git a/mail/mozilla-thunderbird/files/patch-nsprpub-pr-src-pthreads-ptio.c b/mail/mozilla-thunderbird/files/patch-nsprpub-pr-src-pthreads-ptio.c
new file mode 100644
index 000000000000..08346f235416
--- /dev/null
+++ b/mail/mozilla-thunderbird/files/patch-nsprpub-pr-src-pthreads-ptio.c
@@ -0,0 +1,29 @@
+--- nsprpub/pr/src/pthreads/ptio.c.orig Mon Jul 14 17:59:47 2003
++++ nsprpub/pr/src/pthreads/ptio.c Fri Aug 29 15:39:46 2003
+@@ -189,7 +189,7 @@
+ #endif
+ #endif
+
+-#ifdef DARWIN
++#if defined(DARWIN) || defined(FREEBSD)
+ static PRBool _pr_ipv6_v6only_on_by_default;
+ /* The IPV6_V6ONLY socket option is not defined on Mac OS X 10.1. */
+ #ifndef IPV6_V6ONLY
+@@ -1154,7 +1154,7 @@
+ _pr_stderr = pt_SetMethods(2, PR_DESC_FILE, PR_FALSE, PR_TRUE);
+ PR_ASSERT(_pr_stdin && _pr_stdout && _pr_stderr);
+
+-#ifdef DARWIN
++#if defined(DARWIN) || defined(FREEBSD)
+ /* In Mac OS X v10.3 Panther Beta the IPV6_V6ONLY socket option
+ * is turned on by default, contrary to what RFC 3493, Section
+ * 5.3 says. So we have to turn it off. Find out whether we
+@@ -3462,7 +3462,7 @@
+ if (osfd == -1) pt_MapError(_PR_MD_MAP_SOCKET_ERROR, errno);
+ else
+ {
+-#ifdef DARWIN
++#if defined(DARWIN) || defined(FREEBSD)
+ if ((domain == AF_INET6) && _pr_ipv6_v6only_on_by_default)
+ {
+ int on = 0;
diff --git a/mail/mozilla-thunderbird/files/patch-sparc64 b/mail/mozilla-thunderbird/files/patch-sparc64
new file mode 100644
index 000000000000..b9cb83058235
--- /dev/null
+++ b/mail/mozilla-thunderbird/files/patch-sparc64
@@ -0,0 +1,69 @@
+diff -ru ./nsprpub/pr/include/md/_freebsd.cfg ../../work~/mozilla/nsprpub/pr/include/md/_freebsd.cfg
+--- ./nsprpub/pr/include/md/_freebsd.cfg Wed Jan 2 18:38:25 2002
++++ ../../work~/mozilla/nsprpub/pr/include/md/_freebsd.cfg Tue May 20 21:27:31 2003
+@@ -138,6 +138,53 @@
+ #define PR_ALIGN_OF_DOUBLE 8
+ #define PR_ALIGN_OF_POINTER 8
+
++#elif defined(__sparc__)
++
++#undef IS_LITTLE_ENDIAN
++#define IS_BIG_ENDIAN 1
++#define HAVE_LONG_LONG
++#define HAVE_ALIGNED_DOUBLES
++#define HAVE_ALIGNED_LONGLONGS
++#define IS_64
++
++#define PR_BYTES_PER_BYTE 1
++#define PR_BYTES_PER_SHORT 2
++#define PR_BYTES_PER_INT 4
++#define PR_BYTES_PER_INT64 8
++#define PR_BYTES_PER_LONG 8
++#define PR_BYTES_PER_FLOAT 4
++#define PR_BYTES_PER_DOUBLE 8
++#define PR_BYTES_PER_WORD 8
++#define PR_BYTES_PER_DWORD 8
++#define PR_BYTES_PER_WORD_LOG2 3
++#define PR_BYTES_PER_DWORD_LOG2 3
++
++#define PR_BITS_PER_BYTE 8
++#define PR_BITS_PER_SHORT 16
++#define PR_BITS_PER_INT 32
++#define PR_BITS_PER_INT64 64
++#define PR_BITS_PER_LONG 64
++#define PR_BITS_PER_FLOAT 32
++#define PR_BITS_PER_DOUBLE 64
++#define PR_BITS_PER_WORD 64
++
++#define PR_BITS_PER_BYTE_LOG2 3
++#define PR_BITS_PER_SHORT_LOG2 4
++#define PR_BITS_PER_INT_LOG2 5
++#define PR_BITS_PER_INT64_LOG2 6
++#define PR_BITS_PER_LONG_LOG2 6
++#define PR_BITS_PER_FLOAT_LOG2 5
++#define PR_BITS_PER_DOUBLE_LOG2 6
++#define PR_BITS_PER_WORD_LOG2 6
++
++#define PR_ALIGN_OF_SHORT 2
++#define PR_ALIGN_OF_INT 4
++#define PR_ALIGN_OF_LONG 8
++#define PR_ALIGN_OF_INT64 8
++#define PR_ALIGN_OF_FLOAT 4
++#define PR_ALIGN_OF_DOUBLE 8
++#define PR_ALIGN_OF_POINTER 8
++
+ #else
+
+ #error "Unknown CPU architecture"
+diff -ru ./nsprpub/pr/include/md/_freebsd.h ../../work~/mozilla/nsprpub/pr/include/md/_freebsd.h
+--- ./nsprpub/pr/include/md/_freebsd.h Thu Jan 16 15:09:12 2003
++++ ../../work~/mozilla/nsprpub/pr/include/md/_freebsd.h Tue May 20 21:27:13 2003
+@@ -48,6 +48,8 @@
+ #define _PR_SI_ARCHITECTURE "x86"
+ #elif defined(__alpha)
+ #define _PR_SI_ARCHITECTURE "alpha"
++#elif defined(__sparc__)
++#define _PR_SI_ARCHITECTURE "sparc"
+ #else
+ #error "Unknown CPU architecture"
+ #endif
diff --git a/mail/mozilla-thunderbird/files/patch-xptcall-sparc64 b/mail/mozilla-thunderbird/files/patch-xptcall-sparc64
new file mode 100644
index 000000000000..ea2773ced7d9
--- /dev/null
+++ b/mail/mozilla-thunderbird/files/patch-xptcall-sparc64
@@ -0,0 +1,345 @@
+--- xpcom/reflect/xptcall/src/md/unix/Makefile.in.orig Mon May 26 13:26:01 2003
++++ xpcom/reflect/xptcall/src/md/unix/Makefile.in Mon May 26 13:30:04 2003
+@@ -287,6 +287,15 @@
+ ASFILES := xptcinvoke_asm_sparc_netbsd.s xptcstubs_asm_sparc_netbsd.s
+ endif
+ #
++# FreeBSD/SPARC64
++#
++ifeq ($(OS_ARCH),FreeBSD)
++ifneq (,$(findstring sparc,$(OS_TEST)))
++CPPSRCS := xptcinvoke_sparc64_freebsd.cpp xptcstubs_sparc64_freebsd.cpp
++ASFILES := xptcinvoke_asm_sparc64_freebsd.s xptcstubs_asm_sparcv9_solaris.s
++endif
++endif
++#
+ # Solaris/SPARC
+ #
+ ifeq ($(OS_ARCH),SunOS)
+--- /dev/null Mon May 26 13:22:00 2003
++++ xpcom/reflect/xptcall/src/md/unix/xptcstubs_sparc64_freebsd.cpp Mon May 26 04:12:55 2003
+@@ -0,0 +1,123 @@
++/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
++ *
++ * The contents of this file are subject to the Mozilla Public
++ * License Version 1.1 (the "License"); you may not use this file
++ * except in compliance with the License. You may obtain a copy of
++ * the License at http://www.mozilla.org/MPL/
++ *
++ * Software distributed under the License is distributed on an "AS
++ * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
++ * implied. See the License for the specific language governing
++ * rights and limitations under the License.
++ *
++ * The Original Code is mozilla.org code.
++ *
++ * The Initial Developer of the Original Code is Netscape
++ * Communications Corporation. Portions created by Netscape are
++ * Copyright (C) 2001 Netscape Communications Corporation. All
++ * Rights Reserved.
++ *
++ * Contributor(s):
++ * Stuart Parmenter <pavlov@netscape.com>
++ */
++
++/* Implement shared vtbl methods. */
++
++#include "xptcprivate.h"
++
++#if defined(sparc) || defined(__sparc__)
++
++extern "C" nsresult
++PrepareAndDispatch(nsXPTCStubBase* self, PRUint64 methodIndex, PRUint64* args)
++{
++
++#define PARAM_BUFFER_COUNT 16
++
++ nsXPTCMiniVariant paramBuffer[PARAM_BUFFER_COUNT];
++ nsXPTCMiniVariant* dispatchParams = NULL;
++ nsIInterfaceInfo* iface_info = NULL;
++ const nsXPTMethodInfo* info;
++ PRUint8 paramCount;
++ PRUint8 i;
++ nsresult result = NS_ERROR_FAILURE;
++
++ NS_ASSERTION(self,"no self");
++
++ self->GetInterfaceInfo(&iface_info);
++ NS_ASSERTION(iface_info,"no interface info");
++
++ iface_info->GetMethodInfo(PRUint16(methodIndex), &info);
++ NS_ASSERTION(info,"no interface info");
++
++ paramCount = info->GetParamCount();
++
++ // setup variant array pointer
++ if(paramCount > PARAM_BUFFER_COUNT)
++ dispatchParams = new nsXPTCMiniVariant[paramCount];
++ else
++ dispatchParams = paramBuffer;
++ NS_ASSERTION(dispatchParams,"no place for params");
++
++ PRUint64* ap = args;
++ for(i = 0; i < paramCount; i++, ap++)
++ {
++ const nsXPTParamInfo& param = info->GetParam(i);
++ const nsXPTType& type = param.GetType();
++ nsXPTCMiniVariant* dp = &dispatchParams[i];
++
++ if(param.IsOut() || !type.IsArithmetic())
++ {
++ dp->val.p = (void*) *ap;
++ continue;
++ }
++ // else
++ switch(type)
++ {
++ case nsXPTType::T_I8 : dp->val.i8 = *((PRInt64*) ap); break;
++ case nsXPTType::T_I16 : dp->val.i16 = *((PRInt64*) ap); break;
++ case nsXPTType::T_I32 : dp->val.i32 = *((PRInt64*) ap); break;
++ case nsXPTType::T_DOUBLE : dp->val.d = *((double*) ap); break;
++ case nsXPTType::T_U64 : dp->val.u64 = *((PRUint64*) ap); break;
++ case nsXPTType::T_I64 : dp->val.i64 = *((PRInt64*) ap); break;
++ case nsXPTType::T_U8 : dp->val.u8 = *((PRUint64*) ap); break;
++ case nsXPTType::T_U16 : dp->val.u16 = *((PRUint64*)ap); break;
++ case nsXPTType::T_U32 : dp->val.u32 = *((PRUint64*)ap); break;
++ case nsXPTType::T_FLOAT : dp->val.f = ((float*) ap)[1]; break;
++ case nsXPTType::T_BOOL : dp->val.b = *((PRInt64*) ap); break;
++ case nsXPTType::T_CHAR : dp->val.c = *((PRUint64*) ap); break;
++ case nsXPTType::T_WCHAR : dp->val.wc = *((PRInt64*) ap); break;
++ default:
++ NS_ASSERTION(0, "bad type");
++ break;
++ }
++ }
++
++ result = self->CallMethod((PRUint16)methodIndex, info, dispatchParams);
++
++ NS_RELEASE(iface_info);
++
++ if(dispatchParams != paramBuffer)
++ delete [] dispatchParams;
++
++ return result;
++}
++
++extern "C" int SharedStub(int, int*);
++
++#define STUB_ENTRY(n) \
++nsresult nsXPTCStubBase::Stub##n() \
++{ \
++ int dummy; /* defeat tail-call optimization */ \
++ return SharedStub(n, &dummy); \
++}
++
++#define SENTINEL_ENTRY(n) \
++nsresult nsXPTCStubBase::Sentinel##n() \
++{ \
++ NS_ASSERTION(0,"nsXPTCStubBase::Sentinel called"); \
++ return NS_ERROR_NOT_IMPLEMENTED; \
++}
++
++#include "xptcstubsdef.inc"
++
++#endif /* sparc || __sparc__ */
+--- /dev/null Mon May 26 13:22:00 2003
++++ xpcom/reflect/xptcall/src/md/unix/xptcinvoke_asm_sparc64_freebsd.s Mon May 26 04:06:09 2003
+@@ -0,0 +1,104 @@
++/* -*- Mode: asm; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
++ *
++ * The contents of this file are subject to the Mozilla Public
++ * License Version 1.1 (the "License"); you may not use this file
++ * except in compliance with the License. You may obtain a copy of
++ * the License at http://www.mozilla.org/MPL/
++ *
++ * Software distributed under the License is distributed on an "AS
++ * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
++ * implied. See the License for the specific language governing
++ * rights and limitations under the License.
++ *
++ * The Original Code is mozilla.org code.
++ *
++ * The Initial Developer of the Original Code is Netscape
++ * Communications Corporation. Portions created by Netscape are
++ * Copyright (C) 2001 Netscape Communications Corporation. All
++ * Rights Reserved.
++ *
++ * Contributor(s):
++ * Stuart Parmenter <pavlov@netscape.com>
++ * Chris Seawood <cls@seawood.org>
++ */
++
++/*
++ Platform specific code to invoke XPCOM methods on native objects
++ for sparcv9 Solaris.
++
++ See the SPARC Compliance Definition (SCD) Chapter 3
++ for more information about what is going on here, including
++ the use of BIAS (0x7ff).
++ The SCD is available from http://www.sparc.com/.
++*/
++
++ .global XPTC_InvokeByIndex
++ .type XPTC_InvokeByIndex, #function
++
++/*
++ XPTC_InvokeByIndex(nsISupports* that, PRUint32 methodIndex,
++ PRUint32 paramCount, nsXPTCVariant* params);
++
++*/
++XPTC_InvokeByIndex:
++ save %sp,-(128 + 64),%sp ! room for the register window and
++ ! struct pointer, rounded up to 0 % 64
++ sll %i2,4,%l0 ! assume the worst case
++ ! paramCount * 2 * 8 bytes
++ cmp %l0, 0 ! are there any args? If not,
++ be .invoke ! no need to copy args to stack
++ nop
++
++ sub %sp,%l0,%sp ! create the additional stack space
++ add %sp,0x7ff+136,%o0 ! step past the register window, the
++ ! struct result pointer and the 'this' slot
++ mov %i2,%o1 ! paramCount
++ call invoke_copy_to_stack
++ mov %i3,%o2 ! params
++
++!
++! load arguments from stack into the outgoing registers
++! BIAS is 0x7ff (2047)
++!
++
++! load the %o1..5 64bit (extended word) output registers registers
++ ldx [%sp + 0x7ff + 136],%o1 ! %i1
++ ldx [%sp + 0x7ff + 144],%o2 ! %i2
++ ldx [%sp + 0x7ff + 152],%o3 ! %i3
++ ldx [%sp + 0x7ff + 160],%o4 ! %i4
++ ldx [%sp + 0x7ff + 168],%o5 ! %i5
++
++! load the even number double registers starting with %d2
++ ldd [%sp + 0x7ff + 136],%f2
++ ldd [%sp + 0x7ff + 144],%f4
++ ldd [%sp + 0x7ff + 152],%f6
++ ldd [%sp + 0x7ff + 160],%f8
++ ldd [%sp + 0x7ff + 168],%f10
++ ldd [%sp + 0x7ff + 176],%f12
++ ldd [%sp + 0x7ff + 184],%f14
++ ldd [%sp + 0x7ff + 192],%f16
++ ldd [%sp + 0x7ff + 200],%f18
++ ldd [%sp + 0x7ff + 208],%f20
++ ldd [%sp + 0x7ff + 216],%f22
++ ldd [%sp + 0x7ff + 224],%f24
++ ldd [%sp + 0x7ff + 232],%f26
++ ldd [%sp + 0x7ff + 240],%f28
++ ldd [%sp + 0x7ff + 248],%f30
++
++!
++! calculate the target address from the vtable
++!
++.invoke:
++ sll %i1,3,%l0 ! index *= 8
++! add %l0,16,%l0 ! there are 2 extra entries in the vTable (16bytes)
++ ldx [%i0],%l1 ! *that --> address of vtable
++ ldx [%l0 + %l1],%l0 ! that->vtable[index * 8 + 16] --> address
++
++ jmpl %l0,%o7 ! call the routine
++ mov %i0,%o0 ! move 'this' pointer to out register
++
++ mov %o0,%i0 ! propagate return value
++ ret
++ restore
++
++ .size XPTC_InvokeByIndex, .-XPTC_InvokeByIndex
+--- /dev/null Mon May 26 14:00:00 2003
++++ xpcom/reflect/xptcall/src/md/unix/xptcinvoke_sparc64_freebsd.cpp Mon May 26 14:00:49 2003
+@@ -0,0 +1,91 @@
++/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
++ *
++ * The contents of this file are subject to the Mozilla Public
++ * License Version 1.1 (the "License"); you may not use this file
++ * except in compliance with the License. You may obtain a copy of
++ * the License at http://www.mozilla.org/MPL/
++ *
++ * Software distributed under the License is distributed on an "AS
++ * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
++ * implied. See the License for the specific language governing
++ * rights and limitations under the License.
++ *
++ * The Original Code is mozilla.org code.
++ *
++ * The Initial Developer of the Original Code is Netscape
++ * Communications Corporation. Portions created by Netscape are
++ * Copyright (C) 2001 Netscape Communications Corporation. All
++ * Rights Reserved.
++ *
++ * Contributor(s):
++ * Stuart Parmenter <pavlov@netscape.com>
++ * Chris Seawood <cls@seawood.org>
++ */
++
++
++/* Platform specific code to invoke XPCOM methods on native objects */
++
++#include "xptcprivate.h"
++
++#if !defined(__sparc) && !defined(__sparc__)
++#error "This code is for Sparc only"
++#endif
++
++/* Prototype specifies unmangled function name */
++extern "C" PRUint64
++invoke_copy_to_stack(PRUint64* d, PRUint32 paramCount, nsXPTCVariant* s);
++
++extern "C" PRUint64
++invoke_copy_to_stack(PRUint64* d, PRUint32 paramCount, nsXPTCVariant* s)
++{
++ /*
++ We need to copy the parameters for this function to locals and use them
++ from there since the parameters occupy the same stack space as the stack
++ we're trying to populate.
++ */
++ PRUint64 *l_d = d;
++ nsXPTCVariant *l_s = s;
++ PRUint64 l_paramCount = paramCount;
++ PRUint64 regCount = 0; // return the number of registers to load from the stack
++
++ for(PRUint64 i = 0; i < l_paramCount; i++, l_d++, l_s++)
++ {
++ if (regCount < 5) regCount++;
++
++ if (l_s->IsPtrData())
++ {
++ *l_d = (PRUint64)l_s->ptr;
++ continue;
++ }
++ switch (l_s->type)
++ {
++ case nsXPTType::T_I8 : *((PRInt64*)l_d) = l_s->val.i8; break;
++ case nsXPTType::T_I16 : *((PRInt64*)l_d) = l_s->val.i16; break;
++ case nsXPTType::T_I32 : *((PRInt64*)l_d) = l_s->val.i32; break;
++ case nsXPTType::T_I64 : *((PRInt64*)l_d) = l_s->val.i64; break;
++
++ case nsXPTType::T_U8 : *((PRUint64*)l_d) = l_s->val.u8; break;
++ case nsXPTType::T_U16 : *((PRUint64*)l_d) = l_s->val.u16; break;
++ case nsXPTType::T_U32 : *((PRUint64*)l_d) = l_s->val.u32; break;
++ case nsXPTType::T_U64 : *((PRUint64*)l_d) = l_s->val.u64; break;
++
++ /* in the case of floats, we want to put the bits in to the
++ 64bit space right justified... floats in the paramter array on
++ sparcv9 use odd numbered registers.. %f1, %f3, so we have to skip
++ the space that would be occupied by %f0, %f2, etc.
++ */
++ case nsXPTType::T_FLOAT : *(((float*)l_d) + 1) = l_s->val.f; break;
++ case nsXPTType::T_DOUBLE: *((double*)l_d) = l_s->val.d; break;
++ case nsXPTType::T_BOOL : *((PRInt64*)l_d) = l_s->val.b; break;
++ case nsXPTType::T_CHAR : *((PRUint64*)l_d) = l_s->val.c; break;
++ case nsXPTType::T_WCHAR : *((PRInt64*)l_d) = l_s->val.wc; break;
++
++ default:
++ // all the others are plain pointer types
++ *((void**)l_d) = l_s->val.p;
++ break;
++ }
++ }
++
++ return regCount;
++}
diff --git a/mail/mozilla-thunderbird/pkg-descr b/mail/mozilla-thunderbird/pkg-descr
new file mode 100644
index 000000000000..5a21b98b08cc
--- /dev/null
+++ b/mail/mozilla-thunderbird/pkg-descr
@@ -0,0 +1,6 @@
+Mozilla Thunderbird is a redesign of the Mozilla mail component with the goal
+of becoming a cross-platform stand alone mail application using the XUL
+user interface language. See the Mozilla Thunderbird project page for
+more details.
+
+WWW: http://www.mozilla.org/projects/thunderbird/
diff --git a/mail/mozilla-thunderbird/pkg-plist.gtk1 b/mail/mozilla-thunderbird/pkg-plist.gtk1
new file mode 100644
index 000000000000..5a934398402c
--- /dev/null
+++ b/mail/mozilla-thunderbird/pkg-plist.gtk1
@@ -0,0 +1,3945 @@
+bin/thunderbird
+bin/thunderbird-config
+lib/thunderbird/bin/mozilla-config
+lib/thunderbird/bin/thunderbird
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsAccessNode.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsAccessNodeWrap.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsAccessibleEventData.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsAccessibleWrap.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsDocAccessibleWrap.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessNode.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibilityService.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessible.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleCaret.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleDocument.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleEvent.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleProvider.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleRetrieval.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleSelectable.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsPIAccessNode.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsPIAccessible.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsPIAccessibleDocument.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsRootAccessible.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsRootAccessibleWrap.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsTextAccessibleWrap.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbAddressCollecter.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbAutoCompleteSession.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbBSDirectory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbBaseCID.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbBooleanExpression.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbCardProperty.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbDirFactoryService.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbDirProperty.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbDirSearchListener.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbDirectoryQuery.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbDirectoryQueryProxy.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbDirectoryRDFResource.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPAutoCompFormatter.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPCard.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPChangeLogData.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPChangeLogQuery.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPDirFactory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPDirectory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPDirectoryQuery.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPReplicationData.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPReplicationQuery.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPReplicationService.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbMDBCard.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbMDBCardProperty.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbMDBDirFactory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbMDBDirProperty.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbMDBDirectory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbRDFDataSource.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbView.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAddbookProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAddbookUrl.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAddrBookSession.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAddrDatabase.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAddressBook.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsDirPrefs.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsDirectoryDataSource.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbAddressCollecter.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbAutoCompleteSession.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbBase.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbBooleanExpression.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbCard.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbDirFactory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbDirFactoryService.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbDirectory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbDirectoryQuery.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbDirectoryQueryProxy.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbDirectorySearch.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbLDAPAutoCompFormatter.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbLDAPReplicationData.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbLDAPReplicationQuery.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbLDAPReplicationService.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbListener.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbMDBCard.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbMDBDirectory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbUpgrader.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbView.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAddbookUrl.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAddrBookSession.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAddrDBAnnouncer.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAddrDBListener.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAddrDatabase.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAddressBook.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsILDAPPrefsService.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsCharsetMenu.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsFontPackageHandler.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsIAutoCompleteListener.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsIAutoCompleteResults.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsIAutoCompleteSession.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsIBookmarksService.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsIFindService.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsILDAPAutoCompFormatter.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsILDAPAutoCompleteSession.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsISearchContext.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsITimeBomb.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsIWindowDataSource.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsTimeBomb.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsAppShellCIDs.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsIAppShellService.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsICloseAllWindows.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsICmdLineHandler.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsICmdLineService.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsINativeAppSupport.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsIPopupWindowManager.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsISplashScreen.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsITimingService.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsIUserInfo.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsIWebShellWindow.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsIWindowMediator.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsIWindowMediatorListener.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsIXULWindow.h
+lib/thunderbird/include/mozilla-1.5b/bayesflt/nsBayesianFilter.h
+lib/thunderbird/include/mozilla-1.5b/bayesflt/nsBayesianFilterCID.h
+lib/thunderbird/include/mozilla-1.5b/browser/nsIBrowserInstance.h
+lib/thunderbird/include/mozilla-1.5b/browser/nsIXULBrowserWindow.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsAggregatePrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsBasePrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsCertificatePrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsCodebasePrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsIAggregatePrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsICertificatePrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsICodebasePrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsIPrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsIScriptSecurityManager.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsISecurityCheckedComponent.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsISignatureVerifier.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsJSPrincipals.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsScriptSecurityManager.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsSystemPrincipal.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsCharsetDetectionAdaptorCID.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsDetectionConfident.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsDocumentCharsetInfoCID.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsICharsetDetectionAdaptor.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsICharsetDetectionObserver.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsICharsetDetector.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsICharsetResolver.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsIDocCharset.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsIDocumentCharsetInfo.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsIMetaCharsetService.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsIStringCharsetDetector.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsIXMLEncodingService.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsMetaCharsetCID.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsXMLEncodingCID.h
+lib/thunderbird/include/mozilla-1.5b/chrome/nsIChromeRegistry.h
+lib/thunderbird/include/mozilla-1.5b/commandhandler/nsICommandManager.h
+lib/thunderbird/include/mozilla-1.5b/commandhandler/nsICommandParams.h
+lib/thunderbird/include/mozilla-1.5b/commandhandler/nsIControllerCommand.h
+lib/thunderbird/include/mozilla-1.5b/commandhandler/nsIControllerCommandTable.h
+lib/thunderbird/include/mozilla-1.5b/commandhandler/nsIControllerContext.h
+lib/thunderbird/include/mozilla-1.5b/commandhandler/nsPICommandUpdater.h
+lib/thunderbird/include/mozilla-1.5b/composer/nsIEditingSession.h
+lib/thunderbird/include/mozilla-1.5b/content/mozISanitizingSerializer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsAtomListUtils.h
+lib/thunderbird/include/mozilla-1.5b/content/nsBidiUtils.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSAnonBoxList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSAnonBoxes.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSKeywordList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSKeywords.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSPropList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSProperty.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSProps.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSPseudoClassList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSPseudoClasses.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSPseudoElementList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSPseudoElements.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSStruct.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSValue.h
+lib/thunderbird/include/mozilla-1.5b/content/nsChangeHint.h
+lib/thunderbird/include/mozilla-1.5b/content/nsContentCID.h
+lib/thunderbird/include/mozilla-1.5b/content/nsContentErrors.h
+lib/thunderbird/include/mozilla-1.5b/content/nsContentPolicyUtils.h
+lib/thunderbird/include/mozilla-1.5b/content/nsContentUtils.h
+lib/thunderbird/include/mozilla-1.5b/content/nsDOMCSSDeclaration.h
+lib/thunderbird/include/mozilla-1.5b/content/nsHTMLAtomList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsHTMLAtoms.h
+lib/thunderbird/include/mozilla-1.5b/content/nsHTMLValue.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIAnonymousContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIAttribute.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIAttributeContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIBindingManager.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSGroupRule.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSImportRule.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSLoader.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSLoaderObserver.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSMediaRule.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSNameSpaceRule.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSOMFactory.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSParser.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSPseudoComparator.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSRule.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSStyleRule.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSStyleRuleDOMWrapper.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSStyleRuleProcessor.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSStyleSheet.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIComputedDOMStyle.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIContentIterator.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIContentList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIContentPolicy.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIContentSerializer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIDocument.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIDocumentEncoder.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIDocumentObserver.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIDocumentTransformer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIDocumentViewer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIDragDropHandler.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIElementFactory.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIEventListenerManager.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIEventStateManager.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIFIXptr.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIForm.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIFormControl.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIFormSubmission.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIFrameLoader.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIFrameSetElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIHTMLCSSStyleSheet.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIHTMLContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIHTMLContentContainer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIHTMLDocument.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIHTMLTableCellElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIHTMLTableColElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIHTMLToTextSink.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIImageDocument.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIImageLoadingContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIInspectorCSSUtils.h
+lib/thunderbird/include/mozilla-1.5b/content/nsILink.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIMediaList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIModifyableXPointer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsINameSpace.h
+lib/thunderbird/include/mozilla-1.5b/content/nsINameSpaceManager.h
+lib/thunderbird/include/mozilla-1.5b/content/nsINodeInfo.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIOptionElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPhonetic.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrintProgress.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrintProgressParams.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrintStatusFeedback.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrivateCompositionEvent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrivateDOMEvent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrivateDOMImplementation.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrivateTextEvent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrivateTextRange.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIRadioControlElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIRadioGroupContainer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIRadioVisitor.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIRangeUtils.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIScriptElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIScriptEventHandler.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIScriptEventManager.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIScriptLoader.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIScriptLoaderObserver.h
+lib/thunderbird/include/mozilla-1.5b/content/nsISelectElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsISelection.h
+lib/thunderbird/include/mozilla-1.5b/content/nsISelectionController.h
+lib/thunderbird/include/mozilla-1.5b/content/nsISelectionDisplay.h
+lib/thunderbird/include/mozilla-1.5b/content/nsISelectionListener.h
+lib/thunderbird/include/mozilla-1.5b/content/nsISelectionPrivate.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIStyleRule.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIStyleRuleProcessor.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIStyleRuleSupplier.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIStyleSheet.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIStyleSheetLinkingElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIStyledContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsISyncLoadDOMService.h
+lib/thunderbird/include/mozilla-1.5b/content/nsITextAreaElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsITextContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsITextControlElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIWyciwygChannel.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXBLBinding.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXBLDocumentInfo.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXBLService.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXMLContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXMLContentSink.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXPathEvaluatorInternal.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXPointer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXSLTException.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXSLTProcessor.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXSLTProcessorObsolete.h
+lib/thunderbird/include/mozilla-1.5b/content/nsImageMapUtils.h
+lib/thunderbird/include/mozilla-1.5b/content/nsLayoutAtomList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsLayoutAtoms.h
+lib/thunderbird/include/mozilla-1.5b/content/nsMutationEvent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsRuleNode.h
+lib/thunderbird/include/mozilla-1.5b/content/nsRuleWalker.h
+lib/thunderbird/include/mozilla-1.5b/content/nsStyleContext.h
+lib/thunderbird/include/mozilla-1.5b/content/nsStyleCoord.h
+lib/thunderbird/include/mozilla-1.5b/content/nsStyleStruct.h
+lib/thunderbird/include/mozilla-1.5b/content/nsStyleStructList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsStyleUtil.h
+lib/thunderbird/include/mozilla-1.5b/content/nsTextFragment.h
+lib/thunderbird/include/mozilla-1.5b/content/nsXBLAtomList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsXBLAtoms.h
+lib/thunderbird/include/mozilla-1.5b/content/nsXULAtomList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsXULAtoms.h
+lib/thunderbird/include/mozilla-1.5b/dbm/cdefs.h
+lib/thunderbird/include/mozilla-1.5b/dbm/mcom_db.h
+lib/thunderbird/include/mozilla-1.5b/dbm/ncompat.h
+lib/thunderbird/include/mozilla-1.5b/dbm/nsres.h
+lib/thunderbird/include/mozilla-1.5b/dbm/winfile.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsCDefaultURIFixup.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsCDocShell.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIContentViewer.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIContentViewerEdit.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIContentViewerFile.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIDocShell.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIDocShellHistory.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIDocShellLoadInfo.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIDocShellTreeItem.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIDocShellTreeNode.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIDocShellTreeOwner.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIEditorDocShell.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIMarkupDocumentViewer.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIScrollable.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsITextScroll.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIURIFixup.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIWebNavigation.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIWebPageDescriptor.h
+lib/thunderbird/include/mozilla-1.5b/dom/domstubs.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsDOMCID.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsDOMError.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIBaseDOMException.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOM3Document.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOM3DocumentEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOM3EventTarget.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOM3Node.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMAbstractView.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMAttr.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMBarProp.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCDATASection.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCRMFObject.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSS2Properties.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSCharsetRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSFontFaceRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSImportRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSMediaRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSPageRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSPrimitiveValue.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSRuleList.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSStyleDeclaration.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSStyleRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSStyleSheet.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSUnknownRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSValue.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSValueList.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCharacterData.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMChromeWindow.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMClassInfo.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMComment.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCompositionListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMContextMenuListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCounter.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCrypto.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCustomEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDOMConfiguration.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDOMException.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDOMImplementation.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocument.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentCSS.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentFragment.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentRange.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentStyle.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentTraversal.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentType.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentView.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentXBL.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDragListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMElementCSSInlineStyle.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMEntity.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMEntityReference.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMEventGroup.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMEventListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMEventReceiver.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMEventTarget.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMFocusListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMFormListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLAnchorElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLAppletElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLAreaElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLBRElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLBaseElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLBaseFontElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLBodyElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLButtonElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLCollection.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLDListElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLDirectoryElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLDivElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLDocument.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLEmbedElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLFieldSetElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLFontElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLFormElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLFrameElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLFrameSetElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLHRElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLHeadElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLHeadingElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLHtmlElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLIFrameElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLImageElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLInputElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLIsIndexElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLLIElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLLabelElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLLegendElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLLinkElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLMapElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLMenuElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLMetaElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLModElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLOListElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLObjectElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLOptGroupElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLOptionElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLOptionsCollection.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLParagraphElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLParamElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLPreElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLQuoteElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLScriptElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLSelectElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLStyleElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTableCaptionElem.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTableCellElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTableColElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTableElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTableRowElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTableSectionElem.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTextAreaElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTitleElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLUListElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHistory.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMJSWindow.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMKeyEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMKeyListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMLinkStyle.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMLoadListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMLocation.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMediaList.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMimeType.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMimeTypeArray.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMouseEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMouseListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMouseMotionListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMutationEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMutationListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSDocument.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLAnchorElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLAreaElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLButtonElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLDocument.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLFormControlList.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLFormElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLFrameElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLHRElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLImageElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLInputElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLOptionCollectn.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLOptionElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLSelectElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLTextAreaElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHistory.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSLocation.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSRange.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSUIEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSXBLFormControl.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNamedNodeMap.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNavigator.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNode.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNodeFilter.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNodeIterator.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNodeList.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNotation.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMPaintListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMPkcs11.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMPlugin.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMPluginArray.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMPopupBlockedEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMProcessingInstruction.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMRGBColor.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMRange.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMRangeException.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMRect.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMScreen.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMScriptObjectFactory.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMScrollListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMStyleSheet.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMStyleSheetList.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMText.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMTextListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMTreeWalker.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMUIEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMUserDataHandler.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMViewCSS.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMWindow.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMWindowCollection.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMWindowInternal.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXMLDocument.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXPathEvaluator.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXPathException.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXPathExpression.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXPathNSResolver.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXPathNamespace.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXPathResult.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULButtonElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULCheckboxElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULCommandDispatcher.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULControlElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULDescriptionElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULDocument.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULImageElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULLabelElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULLabeledControlEl.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULMenuListElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULMultSelectCntrlEl.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULPopupElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULSelectCntrlEl.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULSelectCntrlItemEl.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULTextboxElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIEntropyCollector.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIFocusController.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIJSEventListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIJSNativeInitializer.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptContext.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptContextOwner.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptEventListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptExternalNameSet.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptGlobalObject.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptGlobalObjectOwner.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptNameSpaceManager.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptObjectOwner.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptObjectPrincipal.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsPIDOMWindow.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsPIWindowRoot.h
+lib/thunderbird/include/mozilla-1.5b/downloadmanager/nsIDownloadManager.h
+lib/thunderbird/include/mozilla-1.5b/downloadmanager/nsIDownloadProgressListener.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsEditorCID.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsICiter.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIContentFilter.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIDocumentStateListener.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditActionListener.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditor.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditorIMESupport.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditorLogging.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditorMailSupport.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditorObserver.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditorSpellCheck.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditorStyleSheets.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIHTMLAbsPosEditor.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIHTMLEditor.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIHTMLInlineTableEditor.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIHTMLObjectResizeListener.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIHTMLObjectResizer.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIPlaintextEditor.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsITableEditor.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIURIRefObject.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsPIEditorTransaction.h
+lib/thunderbird/include/mozilla-1.5b/embed_base/nsEmbedAPI.h
+lib/thunderbird/include/mozilla-1.5b/embed_base/nsIWindowCreator.h
+lib/thunderbird/include/mozilla-1.5b/embed_base/nsIWindowCreator2.h
+lib/thunderbird/include/mozilla-1.5b/embedcomponents/nsIAppStartupNotifier.h
+lib/thunderbird/include/mozilla-1.5b/embedstring/nsEmbedString.h
+lib/thunderbird/include/mozilla-1.5b/expat/xmlparse.h
+lib/thunderbird/include/mozilla-1.5b/exthandler/nsCExternalHandlerService.h
+lib/thunderbird/include/mozilla-1.5b/exthandler/nsExternalHelperAppService.h
+lib/thunderbird/include/mozilla-1.5b/exthandler/nsExternalProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/exthandler/nsHelperAppRDF.h
+lib/thunderbird/include/mozilla-1.5b/exthandler/nsIExternalHelperAppService.h
+lib/thunderbird/include/mozilla-1.5b/exthandler/nsIExternalProtocolService.h
+lib/thunderbird/include/mozilla-1.5b/exthandler/nsOSHelperAppService.h
+lib/thunderbird/include/mozilla-1.5b/filepicker/nsIFileView.h
+lib/thunderbird/include/mozilla-1.5b/find/nsIFind.h
+lib/thunderbird/include/mozilla-1.5b/find/nsIWebBrowserFind.h
+lib/thunderbird/include/mozilla-1.5b/gfx/gfxIFormats.h
+lib/thunderbird/include/mozilla-1.5b/gfx/gfxIImageFrame.h
+lib/thunderbird/include/mozilla-1.5b/gfx/gfxtypes.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsColor.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsColorNameList.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsColorNames.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsCompressedCharMap.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsCoord.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsDeviceContext.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsFont.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsGfxCIID.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsGfxPSCID.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsGfxXPrintCID.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIBlender.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDeviceContext.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDeviceContextPS.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDeviceContextSpec.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDeviceContextSpecFactory.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDeviceContextSpecPS.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDeviceContextSpecXPrint.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDeviceContextXPrint.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDrawingSurface.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIFontCatalogService.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIFontEnumerator.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIFontList.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIFontMetrics.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIFreeType2.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIGraphics.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIImage.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIPrintOptions.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIPrintSession.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIPrintSettings.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIPrintSettingsService.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIRegion.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIRenderingContext.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIScreen.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIScreenManager.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIScriptableRegion.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsITheme.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsMargin.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsPoint.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsPostScriptObj.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsRect.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsRegion.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsSize.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsThemeConstants.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsTransform2D.h
+lib/thunderbird/include/mozilla-1.5b/gtkembedmoz/gtkmozembed.h
+lib/thunderbird/include/mozilla-1.5b/gtkembedmoz/gtkmozembed_internal.h
+lib/thunderbird/include/mozilla-1.5b/gtkxtbin/gtk2xtbin.h
+lib/thunderbird/include/mozilla-1.5b/gtkxtbin/gtkxtbin.h
+lib/thunderbird/include/mozilla-1.5b/helperAppDlg/nsIHelperAppLauncherDialog.h
+lib/thunderbird/include/mozilla-1.5b/history/nsIBrowserHistory.h
+lib/thunderbird/include/mozilla-1.5b/history/nsIGlobalHistory.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsHTMLTagList.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsHTMLTags.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsHTMLTokens.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIContentSink.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIDTD.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIElementObserver.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIExpatSink.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIHTMLContentSink.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIHTMLFragmentContentSink.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIParser.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIParserFilter.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIParserNode.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIParserService.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsITokenizer.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsParserCIID.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsParserError.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsToken.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/ImageErrors.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/ImageLogging.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgICache.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgIContainer.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgIContainerObserver.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgIDecoder.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgIDecoderObserver.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgILoad.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgILoader.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgIRequest.h
+lib/thunderbird/include/mozilla-1.5b/impComm4xMail/nsComm4xMail.h
+lib/thunderbird/include/mozilla-1.5b/impComm4xMail/nsComm4xMailImport.h
+lib/thunderbird/include/mozilla-1.5b/impComm4xMail/nsComm4xMailStringBundle.h
+lib/thunderbird/include/mozilla-1.5b/impComm4xMail/nsComm4xProfile.h
+lib/thunderbird/include/mozilla-1.5b/impComm4xMail/nsIComm4xProfile.h
+lib/thunderbird/include/mozilla-1.5b/impText/nsTextImport.h
+lib/thunderbird/include/mozilla-1.5b/impText/nsTextStringBundle.h
+lib/thunderbird/include/mozilla-1.5b/import/ImportOutFile.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportABDescriptor.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportAddressBooks.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportFieldMap.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportGeneric.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportMail.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportMailboxDescriptor.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportMimeEncode.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportModule.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportService.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportSettings.h
+lib/thunderbird/include/mozilla-1.5b/import/nsImportEncodeScan.h
+lib/thunderbird/include/mozilla-1.5b/import/nsImportMimeEncode.h
+lib/thunderbird/include/mozilla-1.5b/import/nsImportScanFile.h
+lib/thunderbird/include/mozilla-1.5b/import/nsImportService.h
+lib/thunderbird/include/mozilla-1.5b/import/nsImportStringBundle.h
+lib/thunderbird/include/mozilla-1.5b/import/nsImportTranslator.h
+lib/thunderbird/include/mozilla-1.5b/intl/nsIStringBundle.h
+lib/thunderbird/include/mozilla-1.5b/intl/nsIStringBundleOverride.h
+lib/thunderbird/include/mozilla-1.5b/jar/nsIJAR.h
+lib/thunderbird/include/mozilla-1.5b/jar/nsIZipReader.h
+lib/thunderbird/include/mozilla-1.5b/jar/zipfile.h
+lib/thunderbird/include/mozilla-1.5b/jar/zipstruct.h
+lib/thunderbird/include/mozilla-1.5b/jar/zipstub.h
+lib/thunderbird/include/mozilla-1.5b/java/bool.h
+lib/thunderbird/include/mozilla-1.5b/java/interpreter.h
+lib/thunderbird/include/mozilla-1.5b/java/javaString.h
+lib/thunderbird/include/mozilla-1.5b/java/javaThreads.h
+lib/thunderbird/include/mozilla-1.5b/java/java_lang_String.h
+lib/thunderbird/include/mozilla-1.5b/java/jdk_java_lang_String.h
+lib/thunderbird/include/mozilla-1.5b/java/jmc.h
+lib/thunderbird/include/mozilla-1.5b/java/jni.h
+lib/thunderbird/include/mozilla-1.5b/java/jni_md.h
+lib/thunderbird/include/mozilla-1.5b/java/jri.h
+lib/thunderbird/include/mozilla-1.5b/java/jri_md.h
+lib/thunderbird/include/mozilla-1.5b/java/jriext.h
+lib/thunderbird/include/mozilla-1.5b/java/jritypes.h
+lib/thunderbird/include/mozilla-1.5b/java/nspr_md.h
+lib/thunderbird/include/mozilla-1.5b/java/oobj.h
+lib/thunderbird/include/mozilla-1.5b/java/sysmacros_md.h
+lib/thunderbird/include/mozilla-1.5b/java/tree.h
+lib/thunderbird/include/mozilla-1.5b/java/typedefs.h
+lib/thunderbird/include/mozilla-1.5b/java/typedefs_md.h
+lib/thunderbird/include/mozilla-1.5b/java/zip.h
+lib/thunderbird/include/mozilla-1.5b/js/fdlibm.h
+lib/thunderbird/include/mozilla-1.5b/js/js.msg
+lib/thunderbird/include/mozilla-1.5b/js/jsapi.h
+lib/thunderbird/include/mozilla-1.5b/js/jsarena.h
+lib/thunderbird/include/mozilla-1.5b/js/jsarray.h
+lib/thunderbird/include/mozilla-1.5b/js/jsatom.h
+lib/thunderbird/include/mozilla-1.5b/js/jsautocfg.h
+lib/thunderbird/include/mozilla-1.5b/js/jsbit.h
+lib/thunderbird/include/mozilla-1.5b/js/jsbool.h
+lib/thunderbird/include/mozilla-1.5b/js/jsclist.h
+lib/thunderbird/include/mozilla-1.5b/js/jscntxt.h
+lib/thunderbird/include/mozilla-1.5b/js/jscompat.h
+lib/thunderbird/include/mozilla-1.5b/js/jsconfig.h
+lib/thunderbird/include/mozilla-1.5b/js/jsdate.h
+lib/thunderbird/include/mozilla-1.5b/js/jsdbgapi.h
+lib/thunderbird/include/mozilla-1.5b/js/jsdhash.h
+lib/thunderbird/include/mozilla-1.5b/js/jsemit.h
+lib/thunderbird/include/mozilla-1.5b/js/jsfun.h
+lib/thunderbird/include/mozilla-1.5b/js/jsgc.h
+lib/thunderbird/include/mozilla-1.5b/js/jshash.h
+lib/thunderbird/include/mozilla-1.5b/js/jsinterp.h
+lib/thunderbird/include/mozilla-1.5b/js/jslock.h
+lib/thunderbird/include/mozilla-1.5b/js/jslong.h
+lib/thunderbird/include/mozilla-1.5b/js/jsmath.h
+lib/thunderbird/include/mozilla-1.5b/js/jsnum.h
+lib/thunderbird/include/mozilla-1.5b/js/jsobj.h
+lib/thunderbird/include/mozilla-1.5b/js/jsopcode.h
+lib/thunderbird/include/mozilla-1.5b/js/jsopcode.tbl
+lib/thunderbird/include/mozilla-1.5b/js/jsosdep.h
+lib/thunderbird/include/mozilla-1.5b/js/jsotypes.h
+lib/thunderbird/include/mozilla-1.5b/js/jsparse.h
+lib/thunderbird/include/mozilla-1.5b/js/jsprf.h
+lib/thunderbird/include/mozilla-1.5b/js/jsprvtd.h
+lib/thunderbird/include/mozilla-1.5b/js/jspubtd.h
+lib/thunderbird/include/mozilla-1.5b/js/jsregexp.h
+lib/thunderbird/include/mozilla-1.5b/js/jsscan.h
+lib/thunderbird/include/mozilla-1.5b/js/jsscope.h
+lib/thunderbird/include/mozilla-1.5b/js/jsscript.h
+lib/thunderbird/include/mozilla-1.5b/js/jsstddef.h
+lib/thunderbird/include/mozilla-1.5b/js/jsstr.h
+lib/thunderbird/include/mozilla-1.5b/js/jstypes.h
+lib/thunderbird/include/mozilla-1.5b/js/jsutil.h
+lib/thunderbird/include/mozilla-1.5b/js/jsxdrapi.h
+lib/thunderbird/include/mozilla-1.5b/jsconsole/nsIJSConsoleService.h
+lib/thunderbird/include/mozilla-1.5b/jsdebug/jsdIDebuggerService.h
+lib/thunderbird/include/mozilla-1.5b/jsdebug/jsdebug.h
+lib/thunderbird/include/mozilla-1.5b/jsurl/nsIEvaluateStringProxy.h
+lib/thunderbird/include/mozilla-1.5b/jsurl/nsJSProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsBidi.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsBidiFrames.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsBidiPresUtils.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsCompatibility.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsFrameList.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsFrameTraversal.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGrid.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGridCell.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGridLayout2.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGridRow.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGridRowGroupLayout.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGridRowLayout.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGridRowLeafFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGridRowLeafLayout.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsHTMLParts.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsHTMLReflowMetrics.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsHTMLReflowState.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIAutoCopy.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIBoxLayoutManager.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIBoxPaintManager.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIBrowserBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsICSSFrameConstructor.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsICanvasFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsICaret.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsICheckboxControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIChromeEventHandler.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIComboboxControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIEditorBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFocusTracker.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFormControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFormProcessor.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFormSubmitObserver.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFrameDebug.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFrameFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFrameManager.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFrameSelection.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFrameTraversal.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFrameUtil.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIGridPart.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIHTMLStyleSheet.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIIFrameBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIImageControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIImageFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIImageMap.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsILayoutDebugger.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsILayoutHistoryState.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsILineIterator.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIListBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIListControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIMenuBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIMenuFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIMutableStyleContext.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIObjectFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPageSequenceFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPercentHeightObserver.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPopupBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPopupSetFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPresContext.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPresShell.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPresState.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPrintContext.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPrintPreviewContext.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIRadioControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIReflowCallback.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIScrollBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIScrollableFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIScrollableViewProvider.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIScrollbarMediator.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsISelectControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsISelectionImageService.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIStatefulFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIStyleFrameConstruction.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIStyleSet.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsITableCellLayout.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsITableLayout.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsITextControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsITreeBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsITreeContentView.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsITreeSelection.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsITreeView.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsLayoutCID.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsLayoutErrors.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsLayoutUtils.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsPIBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsReflowType.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsStyleChangeList.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsStyleConsts.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsTextTransformer.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsTreeBodyFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsTreeColFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsTreeContentView.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsTreeSelection.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsTreeUtils.h
+lib/thunderbird/include/mozilla-1.5b/ldap/disptmpl.h
+lib/thunderbird/include/mozilla-1.5b/ldap/iutil.h
+lib/thunderbird/include/mozilla-1.5b/ldap/lber.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldap-deprecated.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldap-extension.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldap-platform.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldap-standard.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldap-to-be-deprecated.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldap.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldap_ssl.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldappr.h
+lib/thunderbird/include/mozilla-1.5b/ldap/srchpref.h
+lib/thunderbird/include/mozilla-1.5b/libreg/NSReg.h
+lib/thunderbird/include/mozilla-1.5b/libreg/VerReg.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsCollation.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsCollationCID.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsDateTimeFormatCID.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsICollation.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIDateTimeFormat.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIFontPackageHandler.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIFontPackageProxy.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIFontPackageService.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsILanguageAtom.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsILanguageAtomService.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsILocale.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsILocaleService.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIMacLocale.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIOS2Locale.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIPosixLocale.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIScriptableDateFormat.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIWin32Locale.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsLocaleCID.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsIBinarySearchIterator.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsIBreakState.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsILineBreaker.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsILineBreakerFactory.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsILinearIterator.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsISemanticUnitScanner.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsIWordBreaker.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsIWordBreakerFactory.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsLWBrkCIID.h
+lib/thunderbird/include/mozilla-1.5b/mailnews/MailNewsTypes.h
+lib/thunderbird/include/mozilla-1.5b/mailnews/MailNewsTypes2.h
+lib/thunderbird/include/mozilla-1.5b/mailview/nsIMsgMailView.h
+lib/thunderbird/include/mozilla-1.5b/mailview/nsIMsgMailViewList.h
+lib/thunderbird/include/mozilla-1.5b/mailview/nsMsgMailViewList.h
+lib/thunderbird/include/mozilla-1.5b/mailview/nsMsgMailViewsCID.h
+lib/thunderbird/include/mozilla-1.5b/mime/comi18n.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimecont.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimecth.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimehdrs.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimei.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimeleaf.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimemsig.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimemult.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimeobj.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimepbuf.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimetext.h
+lib/thunderbird/include/mozilla-1.5b/mime/modlmime.h
+lib/thunderbird/include/mozilla-1.5b/mime/modmimee.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMimeContentTypeHandler.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMimeConverter.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMimeEmitter.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMimeHeaders.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMimeMiscStatus.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMimeObjectClassAccess.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMimeStreamConverter.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMsgHeaderParser.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMailHeaders.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMimeContentTypeHandler.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMimeConverter.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMimeHeaders.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMimeObjectClassAccess.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMimeStringResources.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMsgHeaderParser.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMsgMimeCID.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsStreamConverter.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsEmitterUtils.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsMimeBaseEmitter.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsMimeEmitterCID.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsMimeHtmlEmitter.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsMimePlainEmitter.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsMimeRawEmitter.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsMimeRebuffer.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsMimeXmlEmitter.h
+lib/thunderbird/include/mozilla-1.5b/mimetype/nsIMIMEHeaderParam.h
+lib/thunderbird/include/mozilla-1.5b/mimetype/nsIMIMEInfo.h
+lib/thunderbird/include/mozilla-1.5b/mimetype/nsIMIMEService.h
+lib/thunderbird/include/mozilla-1.5b/mimetype/nsMimeTypes.h
+lib/thunderbird/include/mozilla-1.5b/mork/mdb.h
+lib/thunderbird/include/mozilla-1.5b/mork/nsIMdbFactoryFactory.h
+lib/thunderbird/include/mozilla-1.5b/mork/nsMorkCID.h
+lib/thunderbird/include/mozilla-1.5b/mozilla-config.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPBERValue.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPConnection.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPErrors.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPMessage.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPMessageListener.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPOperation.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPServer.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPService.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPURL.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsLDAP.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/msgCore.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsCopyMessageStreamListener.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsICopyMessageListener.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsICopyMsgStreamListener.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIFolderListener.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIIncomingServerListener.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMessenger.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMessengerMigrator.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMessengerOSIntegration.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMessengerWindowService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgAccount.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgAccountManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgBiffManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgCopyService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgCopyServiceListener.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgDBView.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFilter.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFilterHitNotify.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFilterList.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFilterPlugin.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFilterService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFolderCache.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFolderCacheElement.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFolderCompactor.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgGroupRecord.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgHdr.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgHost.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgIdentity.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgMailNewsUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgMailSession.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgMdnGenerator.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgMessageService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgOfflineManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgPrintEngine.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgProgress.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgProtocolInfo.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgPurgeService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgRDFDataSource.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchAdapter.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchNotify.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchScopeTerm.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchSession.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchTerm.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchValidityManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchValidityTable.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchValue.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSignature.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgStatusFeedback.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgStringService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgThread.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgVCard.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgWindow.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsISpamSettings.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsISubscribableServer.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIUrlListener.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIUrlListenerManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMessenger.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMessengerBootstrap.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMessengerContentHandler.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMessengerMigrator.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgAccount.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgAccountManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgAccountManagerDS.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgBaseCID.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgBiffManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgBodyHandler.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgContentPolicy.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgCopyService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgFilterCore.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgFilterDataSource.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgFilterDelegateFactory.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgFilterService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgFolderCache.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgFolderDataSource.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgFolderFlags.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgHeaderMasks.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgLocalFolderHdrs.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgMailSession.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgMessageFlags.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgPrintEngine.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgProgress.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgPurgeService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgRDFDataSource.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgRDFUtils.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgResultElement.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgSearchAdapter.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgSearchArray.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgSearchBoolExpression.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgSearchCore.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgSearchScopeTerm.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgSearchSession.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgSearchTerm.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgServiceProvider.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgStatusFeedback.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgWindow.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsStatusBarBiffManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsSubscribableServer.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsSubscribeDataSource.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsUrlListenerManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsAdapterEnumerator.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsLocalFolderSummarySpec.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgDBFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgGroupRecord.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgI18N.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgIdentity.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgKeyArray.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgKeySet.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgLineBuffer.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgMailNewsUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgProtocol.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgTxn.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgUtf7Utils.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgUtils.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsNewsSummarySpec.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsUInt32Array.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsUint8Array.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgAttachment.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgCompFields.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgCompUtils.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgCompose.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgComposeParams.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgComposeProgressParams.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgComposeSecure.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgComposeService.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgDraft.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgQuote.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgRecipientArray.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgSend.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgSendLater.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgSendLaterListener.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgSendListener.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgSendReport.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsISmtpServer.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsISmtpService.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsISmtpUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIURLFetcher.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgAttachment.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgAttachmentHandler.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgCompCID.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgCompFields.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgCompUtils.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgCompose.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgComposeContentHandler.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgComposeParams.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgComposeProgressParams.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgComposeService.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgComposeStringBundle.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgCopy.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgCreate.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgDeliveryListener.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgEncoders.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgPrompts.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgQuote.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgRecipientArray.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgSend.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgSendLater.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgSendReport.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgSimulateError.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsSmtpDataSource.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsSmtpDelegateFactory.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsSmtpProtocol.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsSmtpServer.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsSmtpService.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsSmtpUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsURLFetcher.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsDBFolderInfo.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsIDBChangeAnnouncer.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsIDBChangeListener.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsIDBFolderInfo.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsIMsgDatabase.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsIMsgOfflineImapOperation.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsINewsDatabase.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsImapMailDatabase.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsMailDatabase.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsMsgDBCID.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsMsgDatabase.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsMsgHdr.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsMsgThread.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsNewsDatabase.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIIMAPHostSessionList.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapExtensionSink.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapFlagAndUidState.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapHeaderXferInfo.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapMailFolderSink.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapMessageSink.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapMiscellaneousSink.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapMockChannel.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapProtocol.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapServerSink.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapService.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIMAPBodyShell.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIMAPGenericParser.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIMAPHostSessionList.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIMAPNamespace.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIMailboxSpec.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIMsgImapMailFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIMsgLogonRedirector.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapCore.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapFlagAndUidState.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapMailFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapProtocol.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapProxyEvent.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapSearchResults.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapServerResponseParser.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapService.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapUtils.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsMsgImapCID.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsILocalMailIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIMailboxService.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIMailboxUrl.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIMovemailIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIMovemailService.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIMsgLocalMailFolder.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIMsgParseMailMsgState.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsINoIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsINoneService.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIPop3IncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIPop3Service.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIPop3Sink.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIPop3URL.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsLocalMailFolder.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsLocalStringBundle.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsMailboxProtocol.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsMailboxService.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsMailboxUrl.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsMovemailIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsMovemailService.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsMsgLocalCID.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsNoIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsNoneService.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsParseMailbox.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsPop3IncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsPop3Protocol.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsPop3Service.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsPop3Sink.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsPop3URL.h
+lib/thunderbird/include/mozilla-1.5b/msgmdn/nsMsgMdnCID.h
+lib/thunderbird/include/mozilla-1.5b/msgmdn/nsMsgMdnGenerator.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nntpCore.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsIMsgNewsFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsIMsgOfflineNewsState.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINNTPArticleList.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINNTPNewsgroupList.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINNTPNewsgroupPost.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINNTPProtocol.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINewsDownloadDialogArgs.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINntpIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINntpService.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINntpUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsMsgNewsCID.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNNTPArticleList.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNNTPNewsgroupList.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNNTPNewsgroupPost.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNNTPProtocol.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNewsDownloadDialogArgs.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNewsFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNewsUtils.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNntpIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNntpService.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNntpUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsEncryptedSMIMEURIsService.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsIEncryptedSMIMEURIsSrvc.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsIMsgSMIMECompFields.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsIMsgSMIMEHeaderSink.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsISMimeJSHelper.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsMsgComposeSecure.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsMsgSMIMECID.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsSMimeJSHelper.h
+lib/thunderbird/include/mozilla-1.5b/necko/ftpCore.h
+lib/thunderbird/include/mozilla-1.5b/necko/mozITXTToHTMLConv.h
+lib/thunderbird/include/mozilla-1.5b/necko/necko-config.h
+lib/thunderbird/include/mozilla-1.5b/necko/netCore.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsCPasswordManager.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsCPasswordManagerInternal.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIAboutModule.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIAsyncStreamCopier.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIAuthPrompt.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIBufferedStreams.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIByteRangeRequest.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsICachingChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsICookieService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsICryptoFIPSInfo.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIDNSListener.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIDNSService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIDataChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIDirIndex.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIDirIndexListener.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIDirectoryListing.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIDownloader.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIEncodedChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIExternalProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIFTPChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIFileChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIFileProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIFileStreams.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIFileURL.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpAuthManager.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpAuthenticator.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpChannelInternal.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpEventSink.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpHeaderVisitor.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpNotify.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIIDNService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIIOService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIInputStreamChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIInputStreamPump.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIJARChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIJARProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIJARURI.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsILoadGroup.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIMIMEInputStream.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIMultiPartChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsINetModRegEntry.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsINetModuleMgr.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsINetNotify.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIPasswordManager.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIPasswordManagerInternal.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIProgressEventSink.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIPrompt.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIProtocolProxyService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIProxiedProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIProxy.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIProxyAutoConfig.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIProxyInfo.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIRequest.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIRequestObserver.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIRequestObserverProxy.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIResProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIResumableChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIResumableEntityID.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISOCKS4SocketInfo.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISOCKS4SocketProvider.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISOCKSSocketInfo.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISOCKSSocketProvider.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISSLSocketControl.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISSLSocketProvider.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISecretDecoderRing.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISecureBrowserUI.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISecurityEventSink.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISimpleStreamListener.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISocketProvider.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISocketProviderService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISocketTransport.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISocketTransportService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStandardURL.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStreamConverter.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStreamConverterService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStreamListener.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStreamListenerProxy.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStreamListenerTee.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStreamLoader.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStreamTransportService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsITXTToHTMLConv.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsITransport.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsITransportSecurityInfo.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIURI.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIURIChecker.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIURL.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIURLParser.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIUnicharStreamLoader.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIUploadChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsNetCID.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsNetError.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsNetUtil.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsReadLine.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsURIHashKey.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsUnixColorPrintf.h
+lib/thunderbird/include/mozilla-1.5b/necko2/nsIViewSourceChannel.h
+lib/thunderbird/include/mozilla-1.5b/nkcache/nsCacheService.h
+lib/thunderbird/include/mozilla-1.5b/nkcache/nsICache.h
+lib/thunderbird/include/mozilla-1.5b/nkcache/nsICacheEntryDescriptor.h
+lib/thunderbird/include/mozilla-1.5b/nkcache/nsICacheListener.h
+lib/thunderbird/include/mozilla-1.5b/nkcache/nsICacheService.h
+lib/thunderbird/include/mozilla-1.5b/nkcache/nsICacheSession.h
+lib/thunderbird/include/mozilla-1.5b/nkcache/nsICacheVisitor.h
+lib/thunderbird/include/mozilla-1.5b/nsBuildID.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_aix.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_beos.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_bsdi.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_darwin.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_dgux.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_freebsd.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_hpux.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_irix.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_linux.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_macos.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_ncr.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_nec.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_netbsd.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_nextstep.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_nspr_pthread.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_nto.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_openbsd.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_openvms.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_os2.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_os2_errors.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_osf1.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_pcos.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_pth.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_qnx.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_reliantunix.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_rhapsody.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_scoos.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_solaris.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_sony.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_sunos4.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_unix_errors.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_unixos.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_unixware.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_win16.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_win32_errors.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_win95.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_winnt.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/prosdep.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/sunos4.h
+lib/thunderbird/include/mozilla-1.5b/nspr/nspr.h
+lib/thunderbird/include/mozilla-1.5b/nspr/obsolete/pralarm.h
+lib/thunderbird/include/mozilla-1.5b/nspr/obsolete/probslet.h
+lib/thunderbird/include/mozilla-1.5b/nspr/obsolete/protypes.h
+lib/thunderbird/include/mozilla-1.5b/nspr/obsolete/prsem.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plarena.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plarenas.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plbase64.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plerror.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plgetopt.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plhash.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plresolv.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plstr.h
+lib/thunderbird/include/mozilla-1.5b/nspr/pratom.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prbit.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prclist.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prcmon.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prcountr.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prcpucfg.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prcvar.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prdtoa.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prenv.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prerr.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prerror.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prinet.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prinit.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prinrval.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prio.h
+lib/thunderbird/include/mozilla-1.5b/nspr/pripcsem.h
+lib/thunderbird/include/mozilla-1.5b/nspr/private/pprio.h
+lib/thunderbird/include/mozilla-1.5b/nspr/private/pprthred.h
+lib/thunderbird/include/mozilla-1.5b/nspr/private/prpriv.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prlink.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prlock.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prlog.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prlong.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prmem.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prmon.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prmwait.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prnetdb.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prolock.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prpdce.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prprf.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prproces.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prrng.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prrwlock.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prshm.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prshma.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prsystem.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prthread.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prtime.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prtpool.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prtrace.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prtypes.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prvrsion.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prwin16.h
+lib/thunderbird/include/mozilla-1.5b/pipboot/nsIBufEntropyCollector.h
+lib/thunderbird/include/mozilla-1.5b/pipboot/nsISSLStatusProvider.h
+lib/thunderbird/include/mozilla-1.5b/pipboot/nsISecurityWarningDialogs.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIASN1Object.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIASN1PrintableItem.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIASN1Sequence.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIBadCertListener.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICMSDecoder.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICMSEncoder.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICMSMessage.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICMSMessageErrors.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICMSSecureMessage.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICRLInfo.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICRLManager.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICertPickDialogs.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICertSelect.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICertTree.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICertificateDialogs.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICipherInfo.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIClientAuthDialogs.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIDOMCryptoDialogs.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIGenKeypairInfoDlg.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIHash.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIKeygenThread.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsINSSCertCache.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIOCSPResponder.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIPK11Token.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIPK11TokenDB.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIPKCS11Module.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIPKCS11ModuleDB.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIPKCS11Slot.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsISMimeCert.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsISSLStatus.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsITokenDialogs.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsITokenPasswordDialogs.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIUserCertPicker.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIX509Cert.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIX509CertDB.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIX509CertValidity.h
+lib/thunderbird/include/mozilla-1.5b/pippki/nsIASN1Tree.h
+lib/thunderbird/include/mozilla-1.5b/pippki/nsIPKIParamBlock.h
+lib/thunderbird/include/mozilla-1.5b/plugin/npapi.h
+lib/thunderbird/include/mozilla-1.5b/plugin/npupp.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsDefaultPlugin.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIClassicPluginFactory.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsICookieStorage.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIEventHandler.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIFileUtilities.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIHTTPHeaderListener.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIJRILiveConnectPIPeer.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIJRILiveConnectPlugin.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPlugin.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginDocument.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginHost.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginInputStream.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginInstance.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginInstanceOwner.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginInstancePeer.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginInstancePeer2.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginManager.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginManager2.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginStreamInfo.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginStreamListener.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginTagInfo.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginTagInfo2.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIScriptablePlugin.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIWindowlessPlugInstPeer.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsPIPluginHost.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsPIPluginInstancePeer.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsPluginError.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsPluginLogging.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsPluginNativeWindow.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsPluginsCID.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsplugin.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsplugindefs.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nspluginroot.h
+lib/thunderbird/include/mozilla-1.5b/pref/nsIPref.h
+lib/thunderbird/include/mozilla-1.5b/pref/nsIPrefBranch.h
+lib/thunderbird/include/mozilla-1.5b/pref/nsIPrefBranchInternal.h
+lib/thunderbird/include/mozilla-1.5b/pref/nsIPrefLocalizedString.h
+lib/thunderbird/include/mozilla-1.5b/pref/nsIPrefService.h
+lib/thunderbird/include/mozilla-1.5b/pref/nsIRelativeFilePref.h
+lib/thunderbird/include/mozilla-1.5b/pref/nsISecurityPref.h
+lib/thunderbird/include/mozilla-1.5b/prefetch/nsCPrefetchService.h
+lib/thunderbird/include/mozilla-1.5b/prefetch/nsIPrefetchService.h
+lib/thunderbird/include/mozilla-1.5b/prefmigr/nsIPrefMigration.h
+lib/thunderbird/include/mozilla-1.5b/prefmigr/nsIPrefMigrationProgress.h
+lib/thunderbird/include/mozilla-1.5b/prefmigr/nsPrefMigration.h
+lib/thunderbird/include/mozilla-1.5b/prefmigr/nsPrefMigrationCIDs.h
+lib/thunderbird/include/mozilla-1.5b/prefmigr/nsPrefMigrationFactory.h
+lib/thunderbird/include/mozilla-1.5b/profdirserviceprovider/nsProfileDirServiceProvider.h
+lib/thunderbird/include/mozilla-1.5b/profile/nsIProfile.h
+lib/thunderbird/include/mozilla-1.5b/profile/nsIProfileChangeStatus.h
+lib/thunderbird/include/mozilla-1.5b/profile/nsIProfileInternal.h
+lib/thunderbird/include/mozilla-1.5b/profile/nsIProfileStartupListener.h
+lib/thunderbird/include/mozilla-1.5b/progressDlg/nsIProgressDialog.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsILocalStore.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFCompositeDataSource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFContainer.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFContainerUtils.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFContentSink.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFDataSource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFDelegateFactory.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFFileSystem.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFInMemoryDataSource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFLiteral.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFNode.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFObserver.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFPropagatableDataSource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFPurgeableDataSource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFRemoteDataSource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFResource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFService.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFXMLParser.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFXMLSerializer.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFXMLSink.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFXMLSource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsRDFCID.h
+lib/thunderbird/include/mozilla-1.5b/rdf/rdf.h
+lib/thunderbird/include/mozilla-1.5b/rdfutil/nsRDFResource.h
+lib/thunderbird/include/mozilla-1.5b/shistory/nsIHistoryEntry.h
+lib/thunderbird/include/mozilla-1.5b/shistory/nsISHContainer.h
+lib/thunderbird/include/mozilla-1.5b/shistory/nsISHEntry.h
+lib/thunderbird/include/mozilla-1.5b/shistory/nsISHTransaction.h
+lib/thunderbird/include/mozilla-1.5b/shistory/nsISHistory.h
+lib/thunderbird/include/mozilla-1.5b/shistory/nsISHistoryInternal.h
+lib/thunderbird/include/mozilla-1.5b/shistory/nsISHistoryListener.h
+lib/thunderbird/include/mozilla-1.5b/sidebar/nsISidebar.h
+lib/thunderbird/include/mozilla-1.5b/spellchecker/mozIPersonalDictionary.h
+lib/thunderbird/include/mozilla-1.5b/spellchecker/mozISpellCheckingEngine.h
+lib/thunderbird/include/mozilla-1.5b/spellchecker/mozISpellI18NManager.h
+lib/thunderbird/include/mozilla-1.5b/spellchecker/mozISpellI18NUtil.h
+lib/thunderbird/include/mozilla-1.5b/string/nsAFlatString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsASingleFragmentString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsAString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsAStringGenerator.h
+lib/thunderbird/include/mozilla-1.5b/string/nsAlgorithm.h
+lib/thunderbird/include/mozilla-1.5b/string/nsBufferHandle.h
+lib/thunderbird/include/mozilla-1.5b/string/nsBufferHandleUtils.h
+lib/thunderbird/include/mozilla-1.5b/string/nsCharTraits.h
+lib/thunderbird/include/mozilla-1.5b/string/nsDependentConcatenation.h
+lib/thunderbird/include/mozilla-1.5b/string/nsDependentString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsDependentSubstring.h
+lib/thunderbird/include/mozilla-1.5b/string/nsFragmentedString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsLiteralString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsPrintfCString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsPromiseFlatString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsReadableUtils.h
+lib/thunderbird/include/mozilla-1.5b/string/nsSharableString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsSharedBufferList.h
+lib/thunderbird/include/mozilla-1.5b/string/nsSlidingString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStr.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStrShared.h
+lib/thunderbird/include/mozilla-1.5b/string/nsString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsString2.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStringDefines.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStringFragment.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStringFwd.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStringIterator.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStringIteratorUtils.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStringTraits.h
+lib/thunderbird/include/mozilla-1.5b/string/nsUTF8Utils.h
+lib/thunderbird/include/mozilla-1.5b/string/nsXPIDLString.h
+lib/thunderbird/include/mozilla-1.5b/txmgr/nsITransaction.h
+lib/thunderbird/include/mozilla-1.5b/txmgr/nsITransactionList.h
+lib/thunderbird/include/mozilla-1.5b/txmgr/nsITransactionListener.h
+lib/thunderbird/include/mozilla-1.5b/txmgr/nsITransactionManager.h
+lib/thunderbird/include/mozilla-1.5b/txmgr/nsTransactionManagerCID.h
+lib/thunderbird/include/mozilla-1.5b/txtsvc/nsISpellChecker.h
+lib/thunderbird/include/mozilla-1.5b/txtsvc/nsITextService.h
+lib/thunderbird/include/mozilla-1.5b/txtsvc/nsITextServicesDocument.h
+lib/thunderbird/include/mozilla-1.5b/txtsvc/nsITextServicesFilter.h
+lib/thunderbird/include/mozilla-1.5b/txtsvc/nsTextServicesCID.h
+lib/thunderbird/include/mozilla-1.5b/ucnative/nsINativeUConvService.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsEncoderDecoderUtils.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsICharRepresentable.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsICharsetAlias.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsICharsetConverterManager.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIConverterInputStream.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsICurrentCharsetListener.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIMappingCache.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIPlatformCharset.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIScriptableUConv.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsITextToSubURI.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIUTF8ConverterService.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIUnicodeDecodeHelper.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIUnicodeDecoder.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIUnicodeEncodeHelper.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIUnicodeEncoder.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsUConvCID.h
+lib/thunderbird/include/mozilla-1.5b/uconv/uconvutil.h
+lib/thunderbird/include/mozilla-1.5b/ucvcn/nsUCvCnCID.h
+lib/thunderbird/include/mozilla-1.5b/ucvibm/nsUCvIBMCID.h
+lib/thunderbird/include/mozilla-1.5b/ucvja/nsUCVJA2CID.h
+lib/thunderbird/include/mozilla-1.5b/ucvja/nsUCVJACID.h
+lib/thunderbird/include/mozilla-1.5b/ucvko/nsUCvKOCID.h
+lib/thunderbird/include/mozilla-1.5b/ucvlatin/nsUCvLatinCID.h
+lib/thunderbird/include/mozilla-1.5b/ucvtw/nsUCvTWCID.h
+lib/thunderbird/include/mozilla-1.5b/ucvtw2/nsUCvTW2CID.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsHankakuToZenkakuCID.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsICaseConversion.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsIEntityConverter.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsIOrderIdFormater.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsISaveAsCharset.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsITextTransform.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsIUGenCategory.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsIUGenDetailCategory.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsIUnicodeNormalizer.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsUnicharUtilCIID.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsUnicharUtils.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsCURILoader.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsDocLoader.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsIContentHandler.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsIDocumentLoader.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsIDownload.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsIURIContentListener.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsIURILoader.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsIWebProgress.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsIWebProgressListener.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsURILoader.h
+lib/thunderbird/include/mozilla-1.5b/util/nsITimeRecorder.h
+lib/thunderbird/include/mozilla-1.5b/util/nsTimer.h
+lib/thunderbird/include/mozilla-1.5b/util/stopwatch.h
+lib/thunderbird/include/mozilla-1.5b/util/xp_obs.h
+lib/thunderbird/include/mozilla-1.5b/view/nsICompositeListener.h
+lib/thunderbird/include/mozilla-1.5b/view/nsIScrollPositionListener.h
+lib/thunderbird/include/mozilla-1.5b/view/nsIScrollableView.h
+lib/thunderbird/include/mozilla-1.5b/view/nsIView.h
+lib/thunderbird/include/mozilla-1.5b/view/nsIViewManager.h
+lib/thunderbird/include/mozilla-1.5b/view/nsIViewObserver.h
+lib/thunderbird/include/mozilla-1.5b/view/nsViewsCID.h
+lib/thunderbird/include/mozilla-1.5b/wallet/nsCPassword.h
+lib/thunderbird/include/mozilla-1.5b/wallet/nsIKeyedStreamGenerator.h
+lib/thunderbird/include/mozilla-1.5b/wallet/nsIPassword.h
+lib/thunderbird/include/mozilla-1.5b/wallet/nsIPasswordSink.h
+lib/thunderbird/include/mozilla-1.5b/wallet/nsIWalletService.h
+lib/thunderbird/include/mozilla-1.5b/walletviewers/nsISignonViewer.h
+lib/thunderbird/include/mozilla-1.5b/walletviewers/nsIWalletEditor.h
+lib/thunderbird/include/mozilla-1.5b/walletviewers/nsIWalletPreview.h
+lib/thunderbird/include/mozilla-1.5b/webbrowserpersist/nsCWebBrowserPersist.h
+lib/thunderbird/include/mozilla-1.5b/webbrowserpersist/nsIWebBrowserPersist.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsCTooltipTextProvider.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsCWebBrowser.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsICommandHandler.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIContextMenuListener.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIContextMenuListener2.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIEmbeddingSiteWindow.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIEmbeddingSiteWindow2.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIPrintingPrompt.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIPrintingPromptService.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsITooltipListener.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsITooltipTextProvider.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIWebBrowser.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIWebBrowserChrome.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIWebBrowserChromeFocus.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIWebBrowserFocus.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIWebBrowserPrint.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIWebBrowserSetup.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsIClipboardCommands.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsIContentViewerContainer.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsIDocStreamLoaderFactory.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsIDocumentLoaderFactory.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsILinkHandler.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsIRefreshURI.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsIWebShell.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsIWebShellServices.h
+lib/thunderbird/include/mozilla-1.5b/widget/gdksuperwin.h
+lib/thunderbird/include/mozilla-1.5b/widget/gtkmozarea.h
+lib/thunderbird/include/mozilla-1.5b/widget/gtkmozbox.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsEvent.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsGUIEvent.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIAppShell.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIBaseWindow.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIBidiKeyboard.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIButton.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsICheckButton.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIClipboard.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIClipboardDragDropHookList.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIClipboardDragDropHooks.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIClipboardHelper.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIClipboardOwner.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIDragService.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIDragSession.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIDragSessionGTK.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIDragSessionMac.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIDragSessionXlib.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIEventListener.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIFilePicker.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIFormatConverter.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIFullScreen.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIKBStateControl.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsILabel.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsILookAndFeel.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIMenu.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIMenuBar.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIMenuItem.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIMenuListener.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIMenuRollup.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIMouseListener.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsINativeScrollbar.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIPluginWidget.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIRollupListener.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsISound.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsITextWidget.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIToolkit.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsITransferable.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIWidget.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIXRemoteClient.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIXRemoteWidgetHelper.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsStringUtil.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsWidgetSupport.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsWidgetsCID.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsXRemoteClientCID.h
+lib/thunderbird/include/mozilla-1.5b/windowwatcher/nsIAuthPromptWrapper.h
+lib/thunderbird/include/mozilla-1.5b/windowwatcher/nsIDialogParamBlock.h
+lib/thunderbird/include/mozilla-1.5b/windowwatcher/nsIPromptService.h
+lib/thunderbird/include/mozilla-1.5b/windowwatcher/nsIWindowWatcher.h
+lib/thunderbird/include/mozilla-1.5b/windowwatcher/nsPIPromptService.h
+lib/thunderbird/include/mozilla-1.5b/windowwatcher/nsPIWindowWatcher.h
+lib/thunderbird/include/mozilla-1.5b/xlibrgb/xlibrgb.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsAgg.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsAppDirectoryServiceDefs.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsArray.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsArrayEnumerator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsAtomService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsAutoLock.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsAutoPtr.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsBaseHashtable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCOMArray.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCOMPtr.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCRT.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCWeakReference.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCategoryManagerUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCheapSets.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsClassHashtable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCom.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsComObsolete.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsComponentManagerObsolete.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsComponentManagerUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCppSharedAllocator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDataHashtable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDebug.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDebugImpl.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDeque.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDirectoryService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDirectoryServiceDefs.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDirectoryServiceUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDoubleHashtable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsEnumeratorUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsError.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsEscape.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsEventQueueUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsFastLoadPtr.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsFastLoadService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsFixedSizeAllocator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsGenericFactory.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsHashKeys.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsHashSets.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsHashtable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIAllocator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIArray.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIAsyncInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIAsyncOutputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIAtom.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIAtomService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIBinaryInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIBinaryOutputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIByteArrayInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIByteBuffer.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsICategoryManager.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIClassInfo.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsICollection.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIComponentLoader.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIComponentLoaderManager.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIComponentManager.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIComponentManagerObsolete.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIComponentRegistrar.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIConsoleListener.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIConsoleMessage.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIConsoleService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsID.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIDebug.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIDirectoryService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIEnumerator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIErrorService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIEventQueue.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIEventQueueService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIException.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIExceptionService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIFactory.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIFastLoadFileControl.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIFastLoadService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIFile.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIGenericFactory.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIID.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIInputStreamTee.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIInterfaceInfo.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIInterfaceInfoManager.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIInterfaceRequestor.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIInterfaceRequestorUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsILineInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsILocalFile.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIMemory.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIModule.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIMultiplexInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsINativeComponentLoader.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIObjectInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIObjectOutputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIObserver.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIObserverService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIOutputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIPersistentProperties2.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIPipe.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIProcess.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIProgrammingLanguage.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIProperties.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIPropertyBag.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIProxyCreateInstance.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIProxyObjectManager.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIRecyclingAllocator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIRunnable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIScriptableInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISeekableStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISerializable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIServiceManager.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIServiceManagerObsolete.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIServiceManagerUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISimpleEnumerator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIStorageStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIStreamBufferAccess.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIStringEnumerator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIStringService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIStringStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupports.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupportsArray.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupportsBase.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupportsImpl.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupportsIterators.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupportsObsolete.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupportsPrimitives.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupportsUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIThread.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIThreadPool.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsITimelineService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsITimer.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsITimerInternal.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsITimerManager.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsITraceRefcnt.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIUnicharBuffer.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIUnicharInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIVariant.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIWeakReference.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIWeakReferenceUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIXPTLoader.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsInt64.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsInterfaceHashtable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsLinebreakConverter.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsLocalFile.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsLocalFileUnix.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsMemory.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsMultiplexInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsNativeCharsetUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsNativeComponentLoader.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsObserverService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsObsoleteModuleLoading.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsProcess.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsProxiedService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsProxyEvent.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsProxyRelease.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsQuickSort.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsRecyclingAllocator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsScriptableInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStaticAtom.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStaticComponent.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStaticNameTable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStorageStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStreamUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStringEnumerator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStringIO.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStringStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsSupportsArray.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsSupportsPrimitives.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsTHashtable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsTextFormatter.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsTime.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsTraceRefcnt.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsTraceRefcntImpl.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsUnitConversion.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsValueArray.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsVariant.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsVector.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsVoidArray.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsWeakPtr.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsWeakReference.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsXPCOM.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsXPCOMCID.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsXPCOMGlue.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nscore.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsrootidl.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/pldhash.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/plevent.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/plvector.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/xcDll.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/xpcom-config.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/xpt_arena.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/xpt_struct.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/xpt_xdr.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/xptcall.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/xptcstubsdecl.inc
+lib/thunderbird/include/mozilla-1.5b/xpcom/xptcstubsdef.inc
+lib/thunderbird/include/mozilla-1.5b/xpcom/xptinfo.h
+lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete/nsFileSpec.h
+lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete/nsFileStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete/nsIFileSpec.h
+lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete/nsIFileStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete/nsIRegistry.h
+lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete/nsIRegistryUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete/nsSpecialSystemDirectory.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/XPCIDispatch.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/mozIJSSubScriptLoader.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIJSContextStack.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIJSRuntimeService.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIScriptError.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIScriptableInterfaces.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIXPCScriptNotify.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIXPCScriptable.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIXPCSecurityManager.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIXPConnect.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/xpc_map_end.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/xpccomponents.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/xpcexception.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/xpcjsid.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/InstallCleanupDefines.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsIDOMInstallTriggerGlobal.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsIDOMInstallVersion.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsISoftwareUpdate.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsIXPIDialogService.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsIXPINotifier.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsIXPIProgressDialog.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsPICertNotification.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsPIXPIProxy.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsPIXPIStubHook.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsSoftwareUpdateIIDs.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsXPITriggerInfo.h
+lib/thunderbird/include/mozilla-1.5b/xprintutil/xprintutil.h
+lib/thunderbird/include/mozilla-1.5b/xremoteservice/nsIXRemoteService.h
+lib/thunderbird/include/mozilla-1.5b/xul/nsIXULContent.h
+lib/thunderbird/include/mozilla-1.5b/xul/nsIXULPopupListener.h
+lib/thunderbird/include/mozilla-1.5b/xulapp/nsXULAppAPI.h
+lib/thunderbird/include/mozilla-1.5b/xuldoc/nsIController.h
+lib/thunderbird/include/mozilla-1.5b/xuldoc/nsIControllers.h
+lib/thunderbird/include/mozilla-1.5b/xuldoc/nsIXULContentSink.h
+lib/thunderbird/include/mozilla-1.5b/xuldoc/nsIXULDocument.h
+lib/thunderbird/include/mozilla-1.5b/xuldoc/nsIXULPrototypeCache.h
+lib/thunderbird/include/mozilla-1.5b/xuldoc/nsIXULPrototypeDocument.h
+lib/thunderbird/include/mozilla-1.5b/xultmpl/nsIXULBuilderListener.h
+lib/thunderbird/include/mozilla-1.5b/xultmpl/nsIXULSortService.h
+lib/thunderbird/include/mozilla-1.5b/xultmpl/nsIXULTemplateBuilder.h
+lib/thunderbird/lib/mozilla-1.5b/TestGtkEmbed
+lib/thunderbird/lib/mozilla-1.5b/chrome/US.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/chromelist.txt
+lib/thunderbird/lib/mozilla-1.5b/chrome/classic.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/comm.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/en-US.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/en-win.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/icons/default/abcardWindow.ico
+lib/thunderbird/lib/mozilla-1.5b/chrome/icons/default/addressbookWindow.ico
+lib/thunderbird/lib/mozilla-1.5b/chrome/icons/default/messengerWindow.ico
+lib/thunderbird/lib/mozilla-1.5b/chrome/icons/default/msgcomposeWindow.ico
+lib/thunderbird/lib/mozilla-1.5b/chrome/installed-chrome.txt
+lib/thunderbird/lib/mozilla-1.5b/chrome/messenger.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/modern.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/pipnss.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/pippki.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit.jar
+lib/thunderbird/lib/mozilla-1.5b/components/accessibility.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/addrbook.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/appshell.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/autocomplete.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/bookmarks.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/caps.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/chardet.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/chrome.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/commandhandler.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/composer.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/content_base.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/content_html.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/content_htmldoc.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/content_xmldoc.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/content_xslt.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/docshell.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_base.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_core.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_css.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_events.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_html.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_range.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_stylesheets.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_traversal.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_views.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_xbl.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_xpath.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_xul.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/downloadmanager.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/editor.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/embed_base.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/exthandler.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/filepicker.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/find.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/gfx.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/helperAppDlg.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/history.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/htmlparser.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/imglib2.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/impComm4xMail.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/import.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/intl.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/jar.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/jsconsole-clhandler.js
+lib/thunderbird/lib/mozilla-1.5b/components/jsconsole.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/jsdservice.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/jsurl.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/layout_base.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/layout_xul.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/layout_xul_tree.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/libaccessibility.so
+lib/thunderbird/lib/mozilla-1.5b/components/libappcomps.so
+lib/thunderbird/lib/mozilla-1.5b/components/libcaps.so
+lib/thunderbird/lib/mozilla-1.5b/components/libchrome.so
+lib/thunderbird/lib/mozilla-1.5b/components/libcomposer.so
+lib/thunderbird/lib/mozilla-1.5b/components/libdocshell.so
+lib/thunderbird/lib/mozilla-1.5b/components/libeditor.so
+lib/thunderbird/lib/mozilla-1.5b/components/libembed_lite.so
+lib/thunderbird/lib/mozilla-1.5b/components/libembedcomponents.so
+lib/thunderbird/lib/mozilla-1.5b/components/libfileview.so
+lib/thunderbird/lib/mozilla-1.5b/components/libgfx_gtk.so
+lib/thunderbird/lib/mozilla-1.5b/components/libgfxps.so
+lib/thunderbird/lib/mozilla-1.5b/components/libgfxxprint.so
+lib/thunderbird/lib/mozilla-1.5b/components/libgklayout.so
+lib/thunderbird/lib/mozilla-1.5b/components/libgkplugin.so
+lib/thunderbird/lib/mozilla-1.5b/components/libhtmlpars.so
+lib/thunderbird/lib/mozilla-1.5b/components/libi18n.so
+lib/thunderbird/lib/mozilla-1.5b/components/libimglib2.so
+lib/thunderbird/lib/mozilla-1.5b/components/libimport.so
+lib/thunderbird/lib/mozilla-1.5b/components/libjar50.so
+lib/thunderbird/lib/mozilla-1.5b/components/libjsd.so
+lib/thunderbird/lib/mozilla-1.5b/components/libjsdom.so
+lib/thunderbird/lib/mozilla-1.5b/components/libmail.so
+lib/thunderbird/lib/mozilla-1.5b/components/libmork.so
+lib/thunderbird/lib/mozilla-1.5b/components/libmozfind.so
+lib/thunderbird/lib/mozilla-1.5b/components/libmozldap.so
+lib/thunderbird/lib/mozilla-1.5b/components/libmsgsmime.so
+lib/thunderbird/lib/mozilla-1.5b/components/libmyspell.so
+lib/thunderbird/lib/mozilla-1.5b/components/libnecko.so
+lib/thunderbird/lib/mozilla-1.5b/components/libnecko2.so
+lib/thunderbird/lib/mozilla-1.5b/components/libnsappshell.so
+lib/thunderbird/lib/mozilla-1.5b/components/libnsprefm.so
+lib/thunderbird/lib/mozilla-1.5b/components/libpipboot.so
+lib/thunderbird/lib/mozilla-1.5b/components/libpipnss.so
+lib/thunderbird/lib/mozilla-1.5b/components/libpippki.so
+lib/thunderbird/lib/mozilla-1.5b/components/libpref.so
+lib/thunderbird/lib/mozilla-1.5b/components/libprofile.so
+lib/thunderbird/lib/mozilla-1.5b/components/librdf.so
+lib/thunderbird/lib/mozilla-1.5b/components/libspellchecker.so
+lib/thunderbird/lib/mozilla-1.5b/components/libtxmgr.so
+lib/thunderbird/lib/mozilla-1.5b/components/libuconv.so
+lib/thunderbird/lib/mozilla-1.5b/components/libwallet.so
+lib/thunderbird/lib/mozilla-1.5b/components/libwalletviewers.so
+lib/thunderbird/lib/mozilla-1.5b/components/libwebbrwsr.so
+lib/thunderbird/lib/mozilla-1.5b/components/libwidget_gtk.so
+lib/thunderbird/lib/mozilla-1.5b/components/libxpcom_compat_c.so
+lib/thunderbird/lib/mozilla-1.5b/components/libxpconnect.so
+lib/thunderbird/lib/mozilla-1.5b/components/libxpinstall.so
+lib/thunderbird/lib/mozilla-1.5b/components/libxremote_client.so
+lib/thunderbird/lib/mozilla-1.5b/components/libxremoteservice.so
+lib/thunderbird/lib/mozilla-1.5b/components/locale.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/lwbrk.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/mailnews.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/mailview.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/mdn-service.js
+lib/thunderbird/lib/mozilla-1.5b/components/mime.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/mimetype.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/mozbrwsr.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/mozfind.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/mozldap.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msgbase.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msgcompose.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msgdb.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msgimap.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msglocal.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msgnews.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msgsearch.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msgsmime.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/myspell/en-US.aff
+lib/thunderbird/lib/mozilla-1.5b/components/myspell/en-US.dic
+lib/thunderbird/lib/mozilla-1.5b/components/necko.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_about.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_cache.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_cookie.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_data.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_dns.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_file.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_ftp.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_http.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_jar.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_res.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_socket.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_strconv.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_viewsource.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/nsCloseAllWindows.js
+lib/thunderbird/lib/mozilla-1.5b/components/nsDownloadProgressListener.js
+lib/thunderbird/lib/mozilla-1.5b/components/nsFilePicker.js
+lib/thunderbird/lib/mozilla-1.5b/components/nsHelperAppDlg.js
+lib/thunderbird/lib/mozilla-1.5b/components/nsLDAPPrefsService.js
+lib/thunderbird/lib/mozilla-1.5b/components/nsProgressDialog.js
+lib/thunderbird/lib/mozilla-1.5b/components/nsProxyAutoConfig.js
+lib/thunderbird/lib/mozilla-1.5b/components/pipboot.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/pipnss.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/pippki.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/plugin.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/pref.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/prefetch.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/prefmigr.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/profile.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/progressDlg.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/proxyObjInst.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/rdf.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/shistory.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/sidebar.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/signonviewer.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/smime-service.js
+lib/thunderbird/lib/mozilla-1.5b/components/spellchecker.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/timebomb.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/txmgr.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/txtsvc.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/ucnative.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/uconv.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/unicharutil.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/uriloader.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/util.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/wallet.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/walleteditor.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/walletpreview.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/webBrowser_core.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/webbrowserpersist.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/webshell_idls.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/widget.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/windowds.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/windowwatcher.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpcom_base.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpcom_components.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpcom_ds.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpcom_io.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpcom_obsolete.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpcom_threads.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpcom_xpti.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpconnect.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpinstall.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xremoteservice.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xuldoc.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xultmpl.xpt
+lib/thunderbird/lib/mozilla-1.5b/defaults/messenger/US/mailViews.dat
+lib/thunderbird/lib/mozilla-1.5b/defaults/messenger/mailViews.dat
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/all.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/editor.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/mailnews.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/mdn.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/security-prefs.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/smime.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/unix.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/xpinstall.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/bookmarks.html
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/chrome/userChrome-example.css
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/chrome/userContent-example.css
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/localstore.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/mimeTypes.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/panels.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/search.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/bookmarks.html
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/chrome/userChrome-example.css
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/chrome/userContent-example.css
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/localstore.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/mimeTypes.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/panels.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/search.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/wallet/DistinguishedSchema.tbl
+lib/thunderbird/lib/mozilla-1.5b/defaults/wallet/FieldSchema.tbl
+lib/thunderbird/lib/mozilla-1.5b/defaults/wallet/PositionalSchema.tbl
+lib/thunderbird/lib/mozilla-1.5b/defaults/wallet/SchemaConcat.tbl
+lib/thunderbird/lib/mozilla-1.5b/defaults/wallet/SchemaStrings.tbl
+lib/thunderbird/lib/mozilla-1.5b/defaults/wallet/StateSchema.tbl
+lib/thunderbird/lib/mozilla-1.5b/defaults/wallet/VcardSchema.tbl
+lib/thunderbird/lib/mozilla-1.5b/icons/mozicon16.xpm
+lib/thunderbird/lib/mozilla-1.5b/icons/mozicon50.xpm
+lib/thunderbird/lib/mozilla-1.5b/libgkgfx.so
+lib/thunderbird/lib/mozilla-1.5b/libgtkembedmoz.so
+lib/thunderbird/lib/mozilla-1.5b/libgtksuperwin.so
+lib/thunderbird/lib/mozilla-1.5b/libgtkxtbin.so
+lib/thunderbird/lib/mozilla-1.5b/libldap50.so
+lib/thunderbird/lib/mozilla-1.5b/libmozjs.so
+lib/thunderbird/lib/mozilla-1.5b/libnspr4.so
+lib/thunderbird/lib/mozilla-1.5b/libnss3.so
+lib/thunderbird/lib/mozilla-1.5b/libnssckbi.so
+lib/thunderbird/lib/mozilla-1.5b/libnullplugin.so
+lib/thunderbird/lib/mozilla-1.5b/libplc4.so
+lib/thunderbird/lib/mozilla-1.5b/libplds4.so
+lib/thunderbird/lib/mozilla-1.5b/libprldap50.so
+lib/thunderbird/lib/mozilla-1.5b/libsmime3.so
+lib/thunderbird/lib/mozilla-1.5b/libsoftokn3.chk
+lib/thunderbird/lib/mozilla-1.5b/libsoftokn3.so
+lib/thunderbird/lib/mozilla-1.5b/libssl3.so
+lib/thunderbird/lib/mozilla-1.5b/libxlibrgb.so
+lib/thunderbird/lib/mozilla-1.5b/libxpcom.so
+lib/thunderbird/lib/mozilla-1.5b/libxpcom_compat.so
+lib/thunderbird/lib/mozilla-1.5b/libxpistub.so
+lib/thunderbird/lib/mozilla-1.5b/mozilla-xremote-client
+lib/thunderbird/lib/mozilla-1.5b/plugins/libnullplugin.so
+lib/thunderbird/lib/mozilla-1.5b/regchrome
+lib/thunderbird/lib/mozilla-1.5b/regxpcom
+lib/thunderbird/lib/mozilla-1.5b/res/EditorOverride.css
+lib/thunderbird/lib/mozilla-1.5b/res/arrow.gif
+lib/thunderbird/lib/mozilla-1.5b/res/arrowd.gif
+lib/thunderbird/lib/mozilla-1.5b/res/broken-image.gif
+lib/thunderbird/lib/mozilla-1.5b/res/builtin/htmlBindings.xml
+lib/thunderbird/lib/mozilla-1.5b/res/builtin/platformHTMLBindings.xml
+lib/thunderbird/lib/mozilla-1.5b/res/charsetData.properties
+lib/thunderbird/lib/mozilla-1.5b/res/charsetalias.properties
+lib/thunderbird/lib/mozilla-1.5b/res/cmessage.txt
+lib/thunderbird/lib/mozilla-1.5b/res/dtd/xhtml11.dtd
+lib/thunderbird/lib/mozilla-1.5b/res/entityTables/html40Latin1.properties
+lib/thunderbird/lib/mozilla-1.5b/res/entityTables/html40Special.properties
+lib/thunderbird/lib/mozilla-1.5b/res/entityTables/html40Symbols.properties
+lib/thunderbird/lib/mozilla-1.5b/res/entityTables/htmlEntityVersions.properties
+lib/thunderbird/lib/mozilla-1.5b/res/entityTables/transliterate.properties
+lib/thunderbird/lib/mozilla-1.5b/res/fonts/fontEncoding.properties
+lib/thunderbird/lib/mozilla-1.5b/res/forms.css
+lib/thunderbird/lib/mozilla-1.5b/res/grabber.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html.css
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-audio.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-binary.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-find.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-image.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-menu.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-movie.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-sound.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-telnet.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-text.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-unknown.gif
+lib/thunderbird/lib/mozilla-1.5b/res/langGroups.properties
+lib/thunderbird/lib/mozilla-1.5b/res/language.properties
+lib/thunderbird/lib/mozilla-1.5b/res/loading-image.gif
+lib/thunderbird/lib/mozilla-1.5b/res/platform-forms.css
+lib/thunderbird/lib/mozilla-1.5b/res/quirk.css
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/article.gif
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/document.gif
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-1.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-2.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-3.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-4.css
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-4.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-5.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-6.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-7.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-8.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/folder-closed.gif
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/folder-open.gif
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/ignore-test.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/loading.gif
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/xpidl-test-1.xul
+lib/thunderbird/lib/mozilla-1.5b/res/sample.unixpsfonts.properties
+lib/thunderbird/lib/mozilla-1.5b/res/samples/Anieyes.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/aform.css
+lib/thunderbird/lib/mozilla-1.5b/res/samples/beeptest.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/bform.css
+lib/thunderbird/lib/mozilla-1.5b/res/samples/bg.jpg
+lib/thunderbird/lib/mozilla-1.5b/res/samples/cform.css
+lib/thunderbird/lib/mozilla-1.5b/res/samples/checkboxTest.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/colorpicker.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/demoform.css
+lib/thunderbird/lib/mozilla-1.5b/res/samples/dexopenchrome.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/dexparamdialog.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/dexparamdialog.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/find.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/gear1.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/hidetoolicon.css
+lib/thunderbird/lib/mozilla-1.5b/res/samples/hidetoolicon.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/image_props.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/mozform.css
+lib/thunderbird/lib/mozilla-1.5b/res/samples/printsetup.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/raptor.jpg
+lib/thunderbird/lib/mozilla-1.5b/res/samples/rock_gra.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/sampleimages/bongo.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/sampleimages/down.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/sampleimages/left.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/sampleimages/right.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/sampleimages/up.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/scrollbarTest1.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/scrollbarTest2.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/sliderTest1.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/soundtest.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/tab.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test.wav
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test0.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test1.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test10.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test11.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test12.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test13.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test14.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test15.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test16.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test2.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test3.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test4.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test5.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test6.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test7.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test8-1.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test8.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test8dom.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test8sca.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test8siz.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test8tab.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test9.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test9a.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test9b.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test_ed.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test_form.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test_gfx.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test_lbox.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test_pr.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test_weight.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/toolbarTest1.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/treeTest1.css
+lib/thunderbird/lib/mozilla-1.5b/res/samples/treeTest1.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/widgets.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/xpmenu.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/xulTest.css
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-column-after-active.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-column-after-hover.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-column-after.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-column-before-active.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-column-before-hover.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-column-before.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-row-after-active.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-row-after-hover.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-row-after.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-row-before-active.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-row-before-hover.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-row-before.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-remove-column-active.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-remove-column-hover.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-remove-column.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-remove-row-active.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-remove-row-hover.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-remove-row.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anim.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims00.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims01.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims02.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims03.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims04.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims05.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims06.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims07.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims08.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims09.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims10.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims11.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims12.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims13.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims14.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims15.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims16.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims17.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims18.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims19.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims20.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims21.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims22.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims23.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims24.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims25.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims26.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims27.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims28.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims29.gif
+lib/thunderbird/lib/mozilla-1.5b/res/ua.css
+lib/thunderbird/lib/mozilla-1.5b/res/unixcharset.properties
+lib/thunderbird/lib/mozilla-1.5b/res/viewer.properties
+lib/thunderbird/lib/mozilla-1.5b/res/viewsource.css
+lib/thunderbird/lib/mozilla-1.5b/run-mozilla.sh
+lib/thunderbird/lib/mozilla-1.5b/thunderbird-bin
+lib/thunderbird/lib/mozilla-1.5b/timebombgen
+lib/thunderbird/lib/mozilla-1.5b/xpcshell
+lib/thunderbird/lib/mozilla-1.5b/xpicleanup
+lib/thunderbird/lib/mozilla-1.5b/xpidl
+lib/thunderbird/lib/mozilla-1.5b/xpt_dump
+lib/thunderbird/lib/mozilla-1.5b/xpt_link
+lib/thunderbird/lib/pkgconfig/mozilla-gtkmozembed.pc
+lib/thunderbird/lib/pkgconfig/mozilla-js.pc
+lib/thunderbird/lib/pkgconfig/mozilla-nspr.pc
+lib/thunderbird/lib/pkgconfig/mozilla-nss.pc
+lib/thunderbird/lib/pkgconfig/mozilla-plugin.pc
+lib/thunderbird/lib/pkgconfig/mozilla-xpcom.pc
+lib/thunderbird/share/aclocal/nspr.m4
+lib/thunderbird/share/idl/mozilla-1.5b/MailNewsTypes2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/XPCIDispatch.idl
+lib/thunderbird/share/idl/mozilla-1.5b/domstubs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/gfxIFormats.idl
+lib/thunderbird/share/idl/mozilla-1.5b/gfxIImageFrame.idl
+lib/thunderbird/share/idl/mozilla-1.5b/gfxtypes.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgICache.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgIContainer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgIContainerObserver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgIDecoder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgIDecoderObserver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgILoad.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgILoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgIRequest.idl
+lib/thunderbird/share/idl/mozilla-1.5b/jsdIDebuggerService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/mozIJSSubScriptLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/mozIPersonalDictionary.idl
+lib/thunderbird/share/idl/mozilla-1.5b/mozISpellCheckingEngine.idl
+lib/thunderbird/share/idl/mozilla-1.5b/mozISpellI18NManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/mozISpellI18NUtil.idl
+lib/thunderbird/share/idl/mozilla-1.5b/mozITXTToHTMLConv.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsCDefaultURIFixup.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsCDocShell.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsCExternalHandlerService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsCURILoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsCWebBrowser.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsCWebBrowserPersist.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIASN1Object.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIASN1PrintableItem.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIASN1Sequence.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIASN1Tree.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbAddressCollecter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbAutoCompleteSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbBase.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbBooleanExpression.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbCard.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbDirFactory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbDirFactoryService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbDirectory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbDirectoryQuery.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbDirectoryQueryProxy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbDirectorySearch.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbLDAPAutoCompFormatter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbLDAPReplicationData.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbLDAPReplicationQuery.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbLDAPReplicationService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbMDBCard.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbMDBDirectory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbUpgrader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAboutModule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessNode.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibilityService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessible.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleCaret.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleProvider.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleRetrieval.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleSelectable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAddbookUrl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAddrBookSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAddrDBAnnouncer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAddrDBListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAddrDatabase.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAddressBook.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAggregatePrincipal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAppShell.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAppShellService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIArray.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAsyncInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAsyncOutputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAsyncStreamCopier.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAtom.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAtomService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAuthPrompt.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAuthPromptWrapper.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAutoCompleteListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAutoCompleteResults.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAutoCompleteSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBadCertListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBaseWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBidiKeyboard.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBinaryInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBinaryOutputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBookmarksService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBoxLayoutManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBoxPaintManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBrowserBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBrowserHistory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBrowserInstance.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBufEntropyCollector.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBufferedStreams.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIByteArrayInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIByteRangeRequest.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICMSDecoder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICMSEncoder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICMSMessage.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICMSMessageErrors.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICMSSecureMessage.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICRLInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICRLManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICache.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICacheEntryDescriptor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICacheListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICacheService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICacheSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICacheVisitor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICachingChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICategoryManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICertPickDialogs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICertSelect.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICertTree.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICertificateDialogs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICertificatePrincipal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICharsetConverterManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICharsetResolver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIChromeEventHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIChromeRegistry.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICipherInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICiter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClassInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClassicPluginFactory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClientAuthDialogs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClipboard.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClipboardCommands.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClipboardDragDropHookList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClipboardDragDropHooks.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClipboardHelper.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClipboardOwner.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICloseAllWindows.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICmdLineHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICmdLineService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICodebasePrincipal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICollection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIComm4xProfile.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICommandHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICommandManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICommandParams.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIComponentLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIComponentLoaderManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIComponentManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIComponentManagerObsolete.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIComponentRegistrar.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIConsoleListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIConsoleMessage.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIConsoleService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContentFilter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContentHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContentPolicy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContentViewer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContentViewerContainer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContentViewerEdit.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContentViewerFile.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContextMenuListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContextMenuListener2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIController.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIControllerCommand.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIControllerCommandTable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIControllerContext.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIControllers.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICookieService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICookieStorage.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICopyMessageListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICopyMsgStreamListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICryptoFIPSInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICurrentCharsetListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDBChangeAnnouncer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDBChangeListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDBFolderInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDNSListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDNSService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOM3Document.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOM3DocumentEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOM3EventTarget.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOM3Node.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMAbstractView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMAttr.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMBarProp.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCDATASection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCRMFObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSS2Properties.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSCharsetRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSFontFaceRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSImportRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSMediaRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSPageRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSPrimitiveValue.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSRuleList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSStyleDeclaration.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSStyleRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSStyleSheet.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSUnknownRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSValue.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSValueList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCharacterData.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMChromeWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMComment.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCounter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCrypto.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCryptoDialogs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCustomEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDOMConfiguration.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDOMException.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDOMImplementation.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentCSS.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentFragment.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentRange.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentStyle.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentTraversal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentType.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentXBL.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMElementCSSInlineStyle.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMEntity.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMEntityReference.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMEventGroup.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMEventListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMEventTarget.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLAnchorElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLAppletElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLAreaElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLBRElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLBaseElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLBaseFontElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLBodyElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLButtonElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLCollection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLDListElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLDirectoryElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLDivElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLEmbedElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLFieldSetElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLFontElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLFormElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLFrameElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLFrameSetElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLHRElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLHeadElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLHeadingElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLHtmlElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLIFrameElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLImageElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLInputElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLIsIndexElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLLIElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLLabelElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLLegendElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLLinkElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLMapElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLMenuElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLMetaElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLModElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLOListElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLObjectElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLOptGroupElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLOptionElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLOptionsCollection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLParagraphElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLParamElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLPreElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLQuoteElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLScriptElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLSelectElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLStyleElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTableCaptionElem.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTableCellElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTableColElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTableElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTableRowElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTableSectionElem.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTextAreaElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTitleElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLUListElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHistory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMJSWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMKeyEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMLinkStyle.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMLocation.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMMediaList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMMimeType.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMMimeTypeArray.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMMouseEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMMutationEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLAnchorElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLAreaElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLButtonElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLFormControlList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLFormElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLFrameElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLHRElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLImageElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLInputElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLOptionCollectn.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLOptionElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLSelectElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLTextAreaElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHistory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSLocation.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSRange.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSUIEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSXBLFormControl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNamedNodeMap.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNavigator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNode.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNodeFilter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNodeIterator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNodeList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNotation.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMPkcs11.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMPlugin.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMPluginArray.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMPopupBlockedEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMProcessingInstruction.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMRGBColor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMRange.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMRangeException.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMRect.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMScreen.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMStyleSheet.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMStyleSheetList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMText.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMTreeWalker.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMUIEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMUserDataHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMViewCSS.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMWindowCollection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMWindowInternal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXMLDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXPathEvaluator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXPathException.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXPathExpression.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXPathNSResolver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXPathNamespace.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXPathResult.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULButtonElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULCheckboxElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULCommandDispatcher.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULControlElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULDescriptionElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULImageElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULLabelElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULLabeledControlEl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULMenuListElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULMultSelectCntrlEl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULPopupElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULSelectCntrlEl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULSelectCntrlItemEl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULTextboxElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDataChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDebug.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDialogParamBlock.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDirIndex.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDirIndexListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDirectoryListing.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDirectoryService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocCharset.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocShell.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocShellHistory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocShellLoadInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocShellTreeItem.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocShellTreeNode.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocShellTreeOwner.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocumentCharsetInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocumentLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocumentLoaderFactory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocumentStateListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDownload.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDownloadManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDownloadProgressListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDownloader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDragDropHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDragService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDragSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditActionListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditingSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorDocShell.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorIMESupport.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorLogging.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorMailSupport.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorObserver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorSpellCheck.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorStyleSheets.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEmbeddingSiteWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEmbeddingSiteWindow2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEncodedChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEncryptedSMIMEURIsSrvc.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEntityConverter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEntropyCollector.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEnumerator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIErrorService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEvaluateStringProxy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEventHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEventQueue.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEventQueueService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIException.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIExceptionService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIExpatSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIExternalHelperAppService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIExternalProtocolHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIExternalProtocolService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFIXptr.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFTPChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFactory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFastLoadFileControl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFastLoadService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFile.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFileChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFilePicker.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFileProtocolHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFileSpec.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFileStreams.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFileURL.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFileUtilities.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFileView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFind.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFindService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFolder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFolderListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFontCatalogService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFontEnumerator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFontList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFontPackageHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFontPackageProxy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFontPackageService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFormatConverter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFreeType2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFullScreen.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIGenKeypairInfoDlg.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIGlobalHistory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIGraphics.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHTMLAbsPosEditor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHTMLEditor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHTMLInlineTableEditor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHTMLObjectResizeListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHTMLObjectResizer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHTTPHeaderListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHash.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHelperAppLauncherDialog.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHistoryEntry.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpAuthManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpAuthenticator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpChannelInternal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpEventSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpHeaderVisitor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpNotify.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpProtocolHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIIDNService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIIFrameBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIIOService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImageDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImageLoadingContent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapFlagAndUidState.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapHeaderXferInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapIncomingServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapMailFolderSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapMessageSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapMockChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapProtocol.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapServerSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapUrl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportABDescriptor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportAddressBooks.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportFieldMap.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportGeneric.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportMail.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportMailboxDescriptor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportMimeEncode.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportModule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportSettings.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIIncomingServerListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIInputStreamChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIInputStreamPump.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIInputStreamTee.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIInterfaceInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIInterfaceInfoManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIInterfaceRequestor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJAR.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJARChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJARProtocolHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJARURI.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJRILiveConnectPIPeer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJRILiveConnectPlugin.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJSConsoleService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJSContextStack.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJSRuntimeService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIKeyedStreamGenerator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIKeygenThread.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPAutoCompFormatter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPAutoCompleteSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPBERValue.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPConnection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPErrors.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPMessage.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPMessageListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPOperation.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPPrefsService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPURL.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILanguageAtom.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILanguageAtomService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILineInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIListBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILoadGroup.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILocalFile.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILocalMailIncomingServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILocale.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILocaleService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMIMEHeaderParam.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMIMEInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMIMEInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMIMEService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMailboxService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMailboxSpec.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMailboxUrl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMarkupDocumentViewer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMemory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMenuBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMenuRollup.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMessenger.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMessengerMigrator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMessengerOSIntegration.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMessengerWindowService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMimeEmitter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMimeHeaders.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMimeMiscStatus.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMimeStreamConverter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIModifyableXPointer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIModule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMovemailIncomingServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMovemailService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgAccount.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgAccountManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgAttachment.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgBiffManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgCompFields.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgCompUtils.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgCompose.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgComposeParams.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgComposeProgressParams.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgComposeSecure.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgComposeService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgCopyService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgCopyServiceListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgDBView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgDatabase.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgDraft.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFilter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFilterHitNotify.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFilterList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFilterPlugin.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFilterService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFolder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFolderCache.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFolderCacheElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFolderCompactor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgGroupRecord.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgHdr.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgHeaderParser.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgHost.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgIdentity.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgImapMailFolder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgIncomingServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgLocalMailFolder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgLogonRedirector.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgMailNewsUrl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgMailSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgMailView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgMailViewList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgMdnGenerator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgMessageService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgNewsFolder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgOfflineImapOperation.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgOfflineManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgOfflineNewsState.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgParseMailMsgState.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgPrintEngine.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgProgress.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgProtocolInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgPurgeService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgQuote.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgRDFDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgRecipientArray.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSMIMECompFields.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSMIMEHeaderSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchAdapter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchNotify.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchScopeTerm.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchTerm.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchValidityManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchValidityTable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchValue.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSend.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSendLater.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSendLaterListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSendListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSendReport.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSignature.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgStatusFeedback.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgStringService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgThread.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgVCard.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMultiPartChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMultiplexInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINNTPArticleList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINNTPNewsgroupList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINNTPNewsgroupPost.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINNTPProtocol.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINSSCertCache.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINativeAppSupport.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINativeComponentLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINativeScrollbar.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINativeUConvService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINetModRegEntry.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINetModuleMgr.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINetNotify.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINewsDatabase.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINewsDownloadDialogArgs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINntpIncomingServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINntpService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINntpUrl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINoIncomingServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINoneService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIOCSPResponder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIObjectInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIObjectOutputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIObserver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIObserverService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIOutputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPK11Token.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPK11TokenDB.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPKCS11Module.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPKCS11ModuleDB.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPKCS11Slot.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPKIParamBlock.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPassword.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPasswordManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPasswordManagerInternal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPasswordSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPersistentProperties2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPhonetic.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPipe.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPlaintextEditor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPlugin.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginHost.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginInstance.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginInstanceOwner.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginInstancePeer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginInstancePeer2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginManager2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginStreamInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginStreamListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginTagInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginTagInfo2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPop3IncomingServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPop3Service.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPop3Sink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPop3URL.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPopupBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPopupWindowManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPref.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrefBranch.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrefBranchInternal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrefLocalizedString.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrefMigration.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrefMigrationProgress.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrefService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrefetchService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrincipal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintOptions.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintProgress.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintProgressParams.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintSettings.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintSettingsService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintStatusFeedback.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintingPrompt.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintingPromptService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProcess.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProfile.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProfileChangeStatus.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProfileInternal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProfileStartupListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProgrammingLanguage.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProgressDialog.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProgressEventSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrompt.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPromptService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProperties.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPropertyBag.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProtocolHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProtocolProxyService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProxiedProtocolHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProxy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProxyAutoConfig.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProxyCreateInstance.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProxyInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProxyObjectManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFCompositeDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFContainer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFContainerUtils.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFDelegateFactory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFInMemoryDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFLiteral.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFNode.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFObserver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFPropagatableDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFPurgeableDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFRemoteDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFResource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFXMLParser.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFXMLSerializer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFXMLSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFXMLSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRecyclingAllocator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRefreshURI.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRegistry.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRelativeFilePref.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRequest.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRequestObserver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRequestObserverProxy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIResProtocolHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIResumableChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIResumableEntityID.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRollupListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRunnable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISHContainer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISHEntry.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISHTransaction.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISHistory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISHistoryInternal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISHistoryListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISMimeCert.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISMimeJSHelper.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISOCKS4SocketInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISOCKS4SocketProvider.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISOCKSSocketInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISOCKSSocketProvider.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISSLSocketControl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISSLSocketProvider.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISSLStatus.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISSLStatusProvider.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISaveAsCharset.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScreen.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScreenManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptContextOwner.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptError.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptEventHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptEventManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptGlobalObjectOwner.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptLoaderObserver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptSecurityManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptableDateFormat.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptableInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptableInterfaces.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptablePlugin.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptableRegion.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptableUConv.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScrollBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScrollable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISearchContext.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISecretDecoderRing.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISecureBrowserUI.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISecurityCheckedComponent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISecurityEventSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISecurityPref.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISecurityWarningDialogs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISeekableStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISelectElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISelection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISelectionController.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISelectionDisplay.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISelectionImageService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISelectionListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISelectionPrivate.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISemanticUnitScanner.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISerializable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIServiceManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISidebar.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISignatureVerifier.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISignonViewer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISimpleEnumerator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISimpleStreamListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISmtpServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISmtpService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISmtpUrl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISocketProvider.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISocketProviderService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISocketTransport.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISocketTransportService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISound.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISpamSettings.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStandardURL.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStorageStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamBufferAccess.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamConverter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamConverterService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamListenerProxy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamListenerTee.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamTransportService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStringBundle.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStringBundleOverride.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStringEnumerator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStringService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStringStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISubscribableServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISupports.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISupportsArray.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISupportsIterators.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISupportsPrimitives.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISyncLoadDOMService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITXTToHTMLConv.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITableEditor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITextAreaElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITextScroll.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITextServicesFilter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITextToSubURI.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIThread.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIThreadPool.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITimeBomb.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITimeRecorder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITimelineService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITimer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITimerInternal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITimerManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITimingService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITokenDialogs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITokenPasswordDialogs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIToolkit.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITooltipListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITooltipTextProvider.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITraceRefcnt.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITransaction.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITransactionList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITransactionListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITransactionManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITransferable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITransport.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITransportSecurityInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITreeBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITreeContentView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITreeSelection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITreeView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURI.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURIChecker.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURIContentListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURIFixup.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURILoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURIRefObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURL.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURLFetcher.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURLParser.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUTF8ConverterService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUnicharStreamLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUnicodeNormalizer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUploadChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUrlListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUrlListenerManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUserCertPicker.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUserInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIVariant.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIViewSourceChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWalletEditor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWalletPreview.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWalletService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWeakReference.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowser.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowserChrome.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowserChromeFocus.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowserFind.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowserFocus.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowserPersist.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowserPrint.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowserSetup.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebNavigation.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebPageDescriptor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebProgress.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebProgressListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWindowCreator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWindowCreator2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWindowDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWindowMediator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWindowMediatorListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWindowWatcher.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWindowlessPlugInstPeer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWyciwygChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIX509Cert.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIX509CertDB.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIX509CertValidity.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPCScriptNotify.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPCScriptable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPCSecurityManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPConnect.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPIDialogService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPINotifier.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPIProgressDialog.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPTLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPointer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXRemoteClient.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXRemoteService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXSLTException.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXSLTProcessor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXSLTProcessorObsolete.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXULBrowserWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXULBuilderListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXULSortService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXULTemplateBuilder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXULWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIZipReader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsMsgFilterCore.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsMsgSearchCore.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIAccessNode.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIAccessible.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIAccessibleDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPICertNotification.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPICommandUpdater.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIEditorTransaction.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIPluginHost.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIPluginInstancePeer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIPromptService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIWindowWatcher.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIXPIProxy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIXPIStubHook.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nspluginroot.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsrootidl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/xpccomponents.idl
+lib/thunderbird/share/idl/mozilla-1.5b/xpcexception.idl
+lib/thunderbird/share/idl/mozilla-1.5b/xpcjsid.idl
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/communicator-region/wallet || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/editor-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/global-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/messenger-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/navigator-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/alerts || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/bookmarks || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/brand || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/directory || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/pref || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/profile || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/related || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/search || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/sidebar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/taskbar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/xpinstall || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/editor/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/arrow || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/checkbox || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/console || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/filepicker || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/menu || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/progressmeter || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/radio || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/scrollbar/slider || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/splitter || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/toolbar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/tree || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/addressbook/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/messengercompose || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/smime/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/mozapps/downloads || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/mozapps/pref || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/navigator/btn1 || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/navigator/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/alerts || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/directory || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/downloadmanager || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/history || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/pref || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/profile || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/related || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/search || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/sidebar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/timebomb || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/wallet || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/xml || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/xpinstall || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/editor-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/editor/images || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/help || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/mozldap || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/navigator || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/navigator-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/navigator-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/necko || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/wallet || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/xbl-marquee || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/content/embed || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/locale/en-US/embed || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/skin/classic/embed || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/directory || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/dom || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/downloadmanager || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/history || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/layout || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/pref || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/profile || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/search || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/security || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/sidebar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/timebomb || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/wallet || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/xml || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/xpinstall || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/editor || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/global || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger-mdn || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger-smime || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger/addressbook || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger/messengercompose || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/mozapps/downloads || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/mozldap || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/navigator || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/necko || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/pipnss || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/pippki || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/wallet || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US/communicator-platform/pref || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US/global-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US/navigator-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US/communicator-platform/pref || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US/global-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US/navigator-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/communicator-platform/pref || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/global-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/messenger-mapi || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/navigator-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/editor/images || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-mdn || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-smime || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-views || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger/addressbook || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger/messengercompose || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/alerts || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/bookmarks || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/brand || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/directory || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/profile || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/related || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/search || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/sidebar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/taskbar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/toolbar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/xpinstall || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/editor/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/arrow || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/button || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/checkbox || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/console || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/filepicker || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/menu || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/menulist || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/progressmeter || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/radio || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/scrollbar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/splitter || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/toolbar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/tree || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/addressbook/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/messengercompose/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/smime/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/navigator/btn1 || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/navigator/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/navigator/toolbar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/pipnss/content/pipnss || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/pippki/content/pippki || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/communicator || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global/bindings || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global/widgets || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/mozapps/downloads || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/mozapps/downloads || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global/widgets || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global/bindings || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/communicator || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/pippki/content/pippki || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/pipnss/content/pipnss || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/navigator/toolbar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/navigator/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/navigator/btn1 || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/smime/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/messengercompose/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/addressbook/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/tree || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/toolbar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/splitter || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/scrollbar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/radio || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/progressmeter || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/menulist || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/menu || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/filepicker || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/console || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/checkbox || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/button || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/arrow || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/editor/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/xpinstall || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/toolbar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/taskbar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/sidebar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/search || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/related || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/profile || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/directory || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/brand || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/bookmarks || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/alerts || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger/messengercompose || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger/addressbook || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-views || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-smime || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-mdn || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/editor/images || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/navigator-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/messenger-mapi || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/global-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/communicator-platform/pref || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US/navigator-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US/global-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US/communicator-platform/pref || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US/navigator-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US/global-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US/communicator-platform/pref || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/wallet || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/pippki || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/pipnss || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/necko || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/navigator || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/mozldap || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/mozapps/downloads || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger/messengercompose || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger/addressbook || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger-smime || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger-mdn || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/global || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/editor || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/xpinstall || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/xml || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/wallet || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/timebomb || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/sidebar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/security || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/search || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/profile || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/pref || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/layout || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/history || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/downloadmanager || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/dom || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/directory || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/skin/classic/embed || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/locale/en-US/embed || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/content/embed || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/xbl-marquee || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/wallet || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/necko || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/navigator-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/navigator-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/navigator || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/mozldap || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/help || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/editor/images || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/editor-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/xpinstall || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/xml || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/wallet || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/timebomb || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/sidebar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/search || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/related || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/profile || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/pref || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/history || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/downloadmanager || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/directory || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/alerts || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/navigator/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/navigator/btn1 || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/mozapps/pref || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/mozapps/downloads || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/smime/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/messengercompose || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/addressbook/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/tree || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/toolbar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/splitter || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/scrollbar/slider || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/radio || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/progressmeter || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/menu || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/filepicker || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/console || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/checkbox || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/arrow || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/editor/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/xpinstall || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/taskbar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/sidebar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/search || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/related || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/profile || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/pref || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/directory || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/brand || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/bookmarks || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/alerts || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/navigator-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/messenger-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/global-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/editor-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/communicator-region/wallet || true
+@dirrm lib/thunderbird/share/idl/mozilla-1.5b
+@dirrm lib/thunderbird/share/idl
+@dirrm lib/thunderbird/share/aclocal
+@dirrm lib/thunderbird/share
+@dirrm lib/thunderbird/lib/pkgconfig
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/throbber
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/samples/sampleimages
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/samples
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/rdf
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/html
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/fonts
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/entityTables
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/dtd
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/builtin
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res
+@dirrm lib/thunderbird/lib/mozilla-1.5b/plugins
+@dirrm lib/thunderbird/lib/mozilla-1.5b/icons
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/wallet
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/profile/chrome
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/chrome
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/profile
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/pref
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/messenger/US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/messenger
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults
+@dirrm lib/thunderbird/lib/mozilla-1.5b/components/myspell
+@dirrm lib/thunderbird/lib/mozilla-1.5b/components
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/mozapps
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/pippki/content
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/pippki
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/pipnss/content
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/pipnss
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/navigator
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/smime
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/messengercompose
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/addressbook
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/editor
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/editor
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/messenger
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/icons/default
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/icons
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/communicator-platform
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-win
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US/communicator-platform
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US/communicator-platform
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/mozapps
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/skin/classic
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/skin
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/locale/en-US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/locale
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/content
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/editor
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/comm
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/navigator
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/mozapps
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/smime
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/addressbook
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/scrollbar
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/editor
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/communicator-region
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome
+@dirrm lib/thunderbird/lib/mozilla-1.5b
+@dirrm lib/thunderbird/lib
+@dirrm lib/thunderbird/include/mozilla-1.5b/xultmpl
+@dirrm lib/thunderbird/include/mozilla-1.5b/xuldoc
+@dirrm lib/thunderbird/include/mozilla-1.5b/xulapp
+@dirrm lib/thunderbird/include/mozilla-1.5b/xul
+@dirrm lib/thunderbird/include/mozilla-1.5b/xremoteservice
+@dirrm lib/thunderbird/include/mozilla-1.5b/xprintutil
+@dirrm lib/thunderbird/include/mozilla-1.5b/xpinstall
+@dirrm lib/thunderbird/include/mozilla-1.5b/xpconnect
+@dirrm lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete
+@dirrm lib/thunderbird/include/mozilla-1.5b/xpcom
+@dirrm lib/thunderbird/include/mozilla-1.5b/xlibrgb
+@dirrm lib/thunderbird/include/mozilla-1.5b/windowwatcher
+@dirrm lib/thunderbird/include/mozilla-1.5b/widget
+@dirrm lib/thunderbird/include/mozilla-1.5b/webshell
+@dirrm lib/thunderbird/include/mozilla-1.5b/webbrwsr
+@dirrm lib/thunderbird/include/mozilla-1.5b/webbrowserpersist
+@dirrm lib/thunderbird/include/mozilla-1.5b/walletviewers
+@dirrm lib/thunderbird/include/mozilla-1.5b/wallet
+@dirrm lib/thunderbird/include/mozilla-1.5b/view
+@dirrm lib/thunderbird/include/mozilla-1.5b/util
+@dirrm lib/thunderbird/include/mozilla-1.5b/uriloader
+@dirrm lib/thunderbird/include/mozilla-1.5b/unicharutil
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucvtw2
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucvtw
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucvlatin
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucvko
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucvja
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucvibm
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucvcn
+@dirrm lib/thunderbird/include/mozilla-1.5b/uconv
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucnative
+@dirrm lib/thunderbird/include/mozilla-1.5b/txtsvc
+@dirrm lib/thunderbird/include/mozilla-1.5b/txmgr
+@dirrm lib/thunderbird/include/mozilla-1.5b/string
+@dirrm lib/thunderbird/include/mozilla-1.5b/spellchecker
+@dirrm lib/thunderbird/include/mozilla-1.5b/sidebar
+@dirrm lib/thunderbird/include/mozilla-1.5b/shistory
+@dirrm lib/thunderbird/include/mozilla-1.5b/rdfutil
+@dirrm lib/thunderbird/include/mozilla-1.5b/rdf
+@dirrm lib/thunderbird/include/mozilla-1.5b/progressDlg
+@dirrm lib/thunderbird/include/mozilla-1.5b/profile
+@dirrm lib/thunderbird/include/mozilla-1.5b/profdirserviceprovider
+@dirrm lib/thunderbird/include/mozilla-1.5b/prefmigr
+@dirrm lib/thunderbird/include/mozilla-1.5b/prefetch
+@dirrm lib/thunderbird/include/mozilla-1.5b/pref
+@dirrm lib/thunderbird/include/mozilla-1.5b/plugin
+@dirrm lib/thunderbird/include/mozilla-1.5b/pippki
+@dirrm lib/thunderbird/include/mozilla-1.5b/pipnss
+@dirrm lib/thunderbird/include/mozilla-1.5b/pipboot
+@dirrm lib/thunderbird/include/mozilla-1.5b/nspr/private
+@dirrm lib/thunderbird/include/mozilla-1.5b/nspr/obsolete
+@dirrm lib/thunderbird/include/mozilla-1.5b/nspr/md
+@dirrm lib/thunderbird/include/mozilla-1.5b/nspr
+@dirrm lib/thunderbird/include/mozilla-1.5b/nkcache
+@dirrm lib/thunderbird/include/mozilla-1.5b/necko2
+@dirrm lib/thunderbird/include/mozilla-1.5b/necko
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgsmime
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgnews
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgmdn
+@dirrm lib/thunderbird/include/mozilla-1.5b/msglocal
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgimap
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgdb
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgcompose
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgbaseutil
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgbase
+@dirrm lib/thunderbird/include/mozilla-1.5b/mozldap
+@dirrm lib/thunderbird/include/mozilla-1.5b/mork
+@dirrm lib/thunderbird/include/mozilla-1.5b/mimetype
+@dirrm lib/thunderbird/include/mozilla-1.5b/mimeemitter
+@dirrm lib/thunderbird/include/mozilla-1.5b/mime
+@dirrm lib/thunderbird/include/mozilla-1.5b/mailview
+@dirrm lib/thunderbird/include/mozilla-1.5b/mailnews
+@dirrm lib/thunderbird/include/mozilla-1.5b/lwbrk
+@dirrm lib/thunderbird/include/mozilla-1.5b/locale
+@dirrm lib/thunderbird/include/mozilla-1.5b/libreg
+@dirrm lib/thunderbird/include/mozilla-1.5b/ldap
+@dirrm lib/thunderbird/include/mozilla-1.5b/layout
+@dirrm lib/thunderbird/include/mozilla-1.5b/jsurl
+@dirrm lib/thunderbird/include/mozilla-1.5b/jsdebug
+@dirrm lib/thunderbird/include/mozilla-1.5b/jsconsole
+@dirrm lib/thunderbird/include/mozilla-1.5b/js
+@dirrm lib/thunderbird/include/mozilla-1.5b/java
+@dirrm lib/thunderbird/include/mozilla-1.5b/jar
+@dirrm lib/thunderbird/include/mozilla-1.5b/intl
+@dirrm lib/thunderbird/include/mozilla-1.5b/import
+@dirrm lib/thunderbird/include/mozilla-1.5b/impText
+@dirrm lib/thunderbird/include/mozilla-1.5b/impComm4xMail
+@dirrm lib/thunderbird/include/mozilla-1.5b/imglib2
+@dirrm lib/thunderbird/include/mozilla-1.5b/htmlparser
+@dirrm lib/thunderbird/include/mozilla-1.5b/history
+@dirrm lib/thunderbird/include/mozilla-1.5b/helperAppDlg
+@dirrm lib/thunderbird/include/mozilla-1.5b/gtkxtbin
+@dirrm lib/thunderbird/include/mozilla-1.5b/gtkembedmoz
+@dirrm lib/thunderbird/include/mozilla-1.5b/gfx
+@dirrm lib/thunderbird/include/mozilla-1.5b/find
+@dirrm lib/thunderbird/include/mozilla-1.5b/filepicker
+@dirrm lib/thunderbird/include/mozilla-1.5b/exthandler
+@dirrm lib/thunderbird/include/mozilla-1.5b/expat
+@dirrm lib/thunderbird/include/mozilla-1.5b/embedstring
+@dirrm lib/thunderbird/include/mozilla-1.5b/embedcomponents
+@dirrm lib/thunderbird/include/mozilla-1.5b/embed_base
+@dirrm lib/thunderbird/include/mozilla-1.5b/editor
+@dirrm lib/thunderbird/include/mozilla-1.5b/downloadmanager
+@dirrm lib/thunderbird/include/mozilla-1.5b/dom
+@dirrm lib/thunderbird/include/mozilla-1.5b/docshell
+@dirrm lib/thunderbird/include/mozilla-1.5b/dbm
+@dirrm lib/thunderbird/include/mozilla-1.5b/content
+@dirrm lib/thunderbird/include/mozilla-1.5b/composer
+@dirrm lib/thunderbird/include/mozilla-1.5b/commandhandler
+@dirrm lib/thunderbird/include/mozilla-1.5b/chrome
+@dirrm lib/thunderbird/include/mozilla-1.5b/chardet
+@dirrm lib/thunderbird/include/mozilla-1.5b/caps
+@dirrm lib/thunderbird/include/mozilla-1.5b/browser
+@dirrm lib/thunderbird/include/mozilla-1.5b/bayesflt
+@dirrm lib/thunderbird/include/mozilla-1.5b/appshell
+@dirrm lib/thunderbird/include/mozilla-1.5b/appcomps
+@dirrm lib/thunderbird/include/mozilla-1.5b/addrbook
+@dirrm lib/thunderbird/include/mozilla-1.5b/accessibility
+@dirrm lib/thunderbird/include/mozilla-1.5b
+@dirrm lib/thunderbird/include
+@dirrm lib/thunderbird/bin
+@dirrm lib/thunderbird
diff --git a/mail/mozilla-thunderbird/pkg-plist.gtk2 b/mail/mozilla-thunderbird/pkg-plist.gtk2
new file mode 100644
index 000000000000..6706e0ff59b3
--- /dev/null
+++ b/mail/mozilla-thunderbird/pkg-plist.gtk2
@@ -0,0 +1,3957 @@
+bin/thunderbird
+bin/thunderbird-config
+lib/thunderbird/bin/mozilla-config
+lib/thunderbird/bin/thunderbird
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsAccessNode.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsAccessNodeWrap.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsAccessibleEventData.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsAccessibleText.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsAccessibleWrap.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsDocAccessibleWrap.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessNode.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibilityService.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessible.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleAction.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleCaret.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleDocument.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleEditableText.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleEvent.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleHyperLink.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleHyperText.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleProvider.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleRetrieval.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleSelectable.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleTable.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleText.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsIAccessibleValue.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsPIAccessNode.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsPIAccessible.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsPIAccessibleDocument.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsRootAccessible.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsRootAccessibleWrap.h
+lib/thunderbird/include/mozilla-1.5b/accessibility/nsTextAccessibleWrap.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbAddressCollecter.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbAutoCompleteSession.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbBSDirectory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbBaseCID.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbBooleanExpression.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbCardProperty.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbDirFactoryService.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbDirProperty.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbDirSearchListener.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbDirectoryQuery.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbDirectoryQueryProxy.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbDirectoryRDFResource.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPAutoCompFormatter.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPCard.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPChangeLogData.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPChangeLogQuery.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPDirFactory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPDirectory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPDirectoryQuery.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPReplicationData.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPReplicationQuery.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbLDAPReplicationService.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbMDBCard.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbMDBCardProperty.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbMDBDirFactory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbMDBDirProperty.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbMDBDirectory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbRDFDataSource.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAbView.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAddbookProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAddbookUrl.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAddrBookSession.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAddrDatabase.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsAddressBook.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsDirPrefs.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsDirectoryDataSource.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbAddressCollecter.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbAutoCompleteSession.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbBase.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbBooleanExpression.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbCard.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbDirFactory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbDirFactoryService.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbDirectory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbDirectoryQuery.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbDirectoryQueryProxy.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbDirectorySearch.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbLDAPAutoCompFormatter.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbLDAPReplicationData.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbLDAPReplicationQuery.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbLDAPReplicationService.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbListener.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbMDBCard.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbMDBDirectory.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbUpgrader.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAbView.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAddbookUrl.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAddrBookSession.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAddrDBAnnouncer.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAddrDBListener.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAddrDatabase.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsIAddressBook.h
+lib/thunderbird/include/mozilla-1.5b/addrbook/nsILDAPPrefsService.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsCharsetMenu.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsFontPackageHandler.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsIAutoCompleteListener.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsIAutoCompleteResults.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsIAutoCompleteSession.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsIBookmarksService.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsIFindService.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsILDAPAutoCompFormatter.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsILDAPAutoCompleteSession.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsISearchContext.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsITimeBomb.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsIWindowDataSource.h
+lib/thunderbird/include/mozilla-1.5b/appcomps/nsTimeBomb.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsAppShellCIDs.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsIAppShellService.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsICloseAllWindows.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsICmdLineHandler.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsICmdLineService.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsINativeAppSupport.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsIPopupWindowManager.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsISplashScreen.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsITimingService.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsIUserInfo.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsIWebShellWindow.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsIWindowMediator.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsIWindowMediatorListener.h
+lib/thunderbird/include/mozilla-1.5b/appshell/nsIXULWindow.h
+lib/thunderbird/include/mozilla-1.5b/bayesflt/nsBayesianFilter.h
+lib/thunderbird/include/mozilla-1.5b/bayesflt/nsBayesianFilterCID.h
+lib/thunderbird/include/mozilla-1.5b/browser/nsIBrowserInstance.h
+lib/thunderbird/include/mozilla-1.5b/browser/nsIXULBrowserWindow.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsAggregatePrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsBasePrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsCertificatePrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsCodebasePrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsIAggregatePrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsICertificatePrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsICodebasePrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsIPrincipal.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsIScriptSecurityManager.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsISecurityCheckedComponent.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsISignatureVerifier.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsJSPrincipals.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsScriptSecurityManager.h
+lib/thunderbird/include/mozilla-1.5b/caps/nsSystemPrincipal.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsCharsetDetectionAdaptorCID.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsDetectionConfident.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsDocumentCharsetInfoCID.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsICharsetDetectionAdaptor.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsICharsetDetectionObserver.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsICharsetDetector.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsICharsetResolver.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsIDocCharset.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsIDocumentCharsetInfo.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsIMetaCharsetService.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsIStringCharsetDetector.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsIXMLEncodingService.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsMetaCharsetCID.h
+lib/thunderbird/include/mozilla-1.5b/chardet/nsXMLEncodingCID.h
+lib/thunderbird/include/mozilla-1.5b/chrome/nsIChromeRegistry.h
+lib/thunderbird/include/mozilla-1.5b/commandhandler/nsICommandManager.h
+lib/thunderbird/include/mozilla-1.5b/commandhandler/nsICommandParams.h
+lib/thunderbird/include/mozilla-1.5b/commandhandler/nsIControllerCommand.h
+lib/thunderbird/include/mozilla-1.5b/commandhandler/nsIControllerCommandTable.h
+lib/thunderbird/include/mozilla-1.5b/commandhandler/nsIControllerContext.h
+lib/thunderbird/include/mozilla-1.5b/commandhandler/nsPICommandUpdater.h
+lib/thunderbird/include/mozilla-1.5b/composer/nsIEditingSession.h
+lib/thunderbird/include/mozilla-1.5b/content/mozISanitizingSerializer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsAtomListUtils.h
+lib/thunderbird/include/mozilla-1.5b/content/nsBidiUtils.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSAnonBoxList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSAnonBoxes.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSKeywordList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSKeywords.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSPropList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSProperty.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSProps.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSPseudoClassList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSPseudoClasses.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSPseudoElementList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSPseudoElements.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSStruct.h
+lib/thunderbird/include/mozilla-1.5b/content/nsCSSValue.h
+lib/thunderbird/include/mozilla-1.5b/content/nsChangeHint.h
+lib/thunderbird/include/mozilla-1.5b/content/nsContentCID.h
+lib/thunderbird/include/mozilla-1.5b/content/nsContentErrors.h
+lib/thunderbird/include/mozilla-1.5b/content/nsContentPolicyUtils.h
+lib/thunderbird/include/mozilla-1.5b/content/nsContentUtils.h
+lib/thunderbird/include/mozilla-1.5b/content/nsDOMCSSDeclaration.h
+lib/thunderbird/include/mozilla-1.5b/content/nsHTMLAtomList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsHTMLAtoms.h
+lib/thunderbird/include/mozilla-1.5b/content/nsHTMLValue.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIAnonymousContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIAttribute.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIAttributeContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIBindingManager.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSGroupRule.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSImportRule.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSLoader.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSLoaderObserver.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSMediaRule.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSNameSpaceRule.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSOMFactory.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSParser.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSPseudoComparator.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSRule.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSStyleRule.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSStyleRuleDOMWrapper.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSStyleRuleProcessor.h
+lib/thunderbird/include/mozilla-1.5b/content/nsICSSStyleSheet.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIComputedDOMStyle.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIContentIterator.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIContentList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIContentPolicy.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIContentSerializer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIDocument.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIDocumentEncoder.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIDocumentObserver.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIDocumentTransformer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIDocumentViewer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIDragDropHandler.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIElementFactory.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIEventListenerManager.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIEventStateManager.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIFIXptr.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIForm.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIFormControl.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIFormSubmission.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIFrameLoader.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIFrameSetElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIHTMLCSSStyleSheet.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIHTMLContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIHTMLContentContainer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIHTMLDocument.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIHTMLTableCellElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIHTMLTableColElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIHTMLToTextSink.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIImageDocument.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIImageLoadingContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIInspectorCSSUtils.h
+lib/thunderbird/include/mozilla-1.5b/content/nsILink.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIMediaList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIModifyableXPointer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsINameSpace.h
+lib/thunderbird/include/mozilla-1.5b/content/nsINameSpaceManager.h
+lib/thunderbird/include/mozilla-1.5b/content/nsINodeInfo.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIOptionElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPhonetic.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrintProgress.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrintProgressParams.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrintStatusFeedback.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrivateCompositionEvent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrivateDOMEvent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrivateDOMImplementation.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrivateTextEvent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIPrivateTextRange.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIRadioControlElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIRadioGroupContainer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIRadioVisitor.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIRangeUtils.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIScriptElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIScriptEventHandler.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIScriptEventManager.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIScriptLoader.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIScriptLoaderObserver.h
+lib/thunderbird/include/mozilla-1.5b/content/nsISelectElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsISelection.h
+lib/thunderbird/include/mozilla-1.5b/content/nsISelectionController.h
+lib/thunderbird/include/mozilla-1.5b/content/nsISelectionDisplay.h
+lib/thunderbird/include/mozilla-1.5b/content/nsISelectionListener.h
+lib/thunderbird/include/mozilla-1.5b/content/nsISelectionPrivate.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIStyleRule.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIStyleRuleProcessor.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIStyleRuleSupplier.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIStyleSheet.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIStyleSheetLinkingElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIStyledContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsISyncLoadDOMService.h
+lib/thunderbird/include/mozilla-1.5b/content/nsITextAreaElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsITextContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsITextControlElement.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIWyciwygChannel.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXBLBinding.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXBLDocumentInfo.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXBLService.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXMLContent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXMLContentSink.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXPathEvaluatorInternal.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXPointer.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXSLTException.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXSLTProcessor.h
+lib/thunderbird/include/mozilla-1.5b/content/nsIXSLTProcessorObsolete.h
+lib/thunderbird/include/mozilla-1.5b/content/nsImageMapUtils.h
+lib/thunderbird/include/mozilla-1.5b/content/nsLayoutAtomList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsLayoutAtoms.h
+lib/thunderbird/include/mozilla-1.5b/content/nsMutationEvent.h
+lib/thunderbird/include/mozilla-1.5b/content/nsRuleNode.h
+lib/thunderbird/include/mozilla-1.5b/content/nsRuleWalker.h
+lib/thunderbird/include/mozilla-1.5b/content/nsStyleContext.h
+lib/thunderbird/include/mozilla-1.5b/content/nsStyleCoord.h
+lib/thunderbird/include/mozilla-1.5b/content/nsStyleStruct.h
+lib/thunderbird/include/mozilla-1.5b/content/nsStyleStructList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsStyleUtil.h
+lib/thunderbird/include/mozilla-1.5b/content/nsTextFragment.h
+lib/thunderbird/include/mozilla-1.5b/content/nsXBLAtomList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsXBLAtoms.h
+lib/thunderbird/include/mozilla-1.5b/content/nsXULAtomList.h
+lib/thunderbird/include/mozilla-1.5b/content/nsXULAtoms.h
+lib/thunderbird/include/mozilla-1.5b/dbm/cdefs.h
+lib/thunderbird/include/mozilla-1.5b/dbm/mcom_db.h
+lib/thunderbird/include/mozilla-1.5b/dbm/ncompat.h
+lib/thunderbird/include/mozilla-1.5b/dbm/nsres.h
+lib/thunderbird/include/mozilla-1.5b/dbm/winfile.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsCDefaultURIFixup.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsCDocShell.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIContentViewer.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIContentViewerEdit.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIContentViewerFile.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIDocShell.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIDocShellHistory.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIDocShellLoadInfo.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIDocShellTreeItem.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIDocShellTreeNode.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIDocShellTreeOwner.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIEditorDocShell.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIMarkupDocumentViewer.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIScrollable.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsITextScroll.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIURIFixup.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIWebNavigation.h
+lib/thunderbird/include/mozilla-1.5b/docshell/nsIWebPageDescriptor.h
+lib/thunderbird/include/mozilla-1.5b/dom/domstubs.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsDOMCID.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsDOMError.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIBaseDOMException.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOM3Document.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOM3DocumentEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOM3EventTarget.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOM3Node.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMAbstractView.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMAttr.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMBarProp.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCDATASection.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCRMFObject.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSS2Properties.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSCharsetRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSFontFaceRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSImportRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSMediaRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSPageRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSPrimitiveValue.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSRuleList.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSStyleDeclaration.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSStyleRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSStyleSheet.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSUnknownRule.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSValue.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCSSValueList.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCharacterData.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMChromeWindow.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMClassInfo.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMComment.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCompositionListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMContextMenuListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCounter.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCrypto.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMCustomEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDOMConfiguration.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDOMException.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDOMImplementation.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocument.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentCSS.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentFragment.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentRange.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentStyle.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentTraversal.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentType.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentView.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDocumentXBL.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMDragListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMElementCSSInlineStyle.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMEntity.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMEntityReference.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMEventGroup.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMEventListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMEventReceiver.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMEventTarget.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMFocusListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMFormListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLAnchorElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLAppletElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLAreaElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLBRElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLBaseElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLBaseFontElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLBodyElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLButtonElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLCollection.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLDListElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLDirectoryElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLDivElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLDocument.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLEmbedElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLFieldSetElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLFontElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLFormElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLFrameElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLFrameSetElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLHRElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLHeadElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLHeadingElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLHtmlElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLIFrameElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLImageElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLInputElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLIsIndexElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLLIElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLLabelElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLLegendElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLLinkElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLMapElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLMenuElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLMetaElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLModElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLOListElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLObjectElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLOptGroupElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLOptionElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLOptionsCollection.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLParagraphElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLParamElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLPreElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLQuoteElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLScriptElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLSelectElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLStyleElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTableCaptionElem.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTableCellElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTableColElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTableElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTableRowElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTableSectionElem.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTextAreaElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLTitleElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHTMLUListElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMHistory.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMJSWindow.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMKeyEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMKeyListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMLinkStyle.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMLoadListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMLocation.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMediaList.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMimeType.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMimeTypeArray.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMouseEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMouseListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMouseMotionListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMutationEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMMutationListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSDocument.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLAnchorElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLAreaElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLButtonElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLDocument.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLFormControlList.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLFormElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLFrameElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLHRElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLImageElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLInputElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLOptionCollectn.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLOptionElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLSelectElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHTMLTextAreaElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSHistory.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSLocation.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSRange.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSUIEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNSXBLFormControl.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNamedNodeMap.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNavigator.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNode.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNodeFilter.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNodeIterator.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNodeList.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMNotation.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMPaintListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMPkcs11.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMPlugin.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMPluginArray.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMPopupBlockedEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMProcessingInstruction.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMRGBColor.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMRange.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMRangeException.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMRect.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMScreen.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMScriptObjectFactory.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMScrollListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMStyleSheet.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMStyleSheetList.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMText.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMTextListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMTreeWalker.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMUIEvent.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMUserDataHandler.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMViewCSS.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMWindow.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMWindowCollection.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMWindowInternal.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXMLDocument.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXPathEvaluator.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXPathException.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXPathExpression.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXPathNSResolver.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXPathNamespace.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXPathResult.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULButtonElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULCheckboxElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULCommandDispatcher.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULControlElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULDescriptionElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULDocument.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULImageElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULLabelElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULLabeledControlEl.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULMenuListElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULMultSelectCntrlEl.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULPopupElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULSelectCntrlEl.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULSelectCntrlItemEl.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIDOMXULTextboxElement.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIEntropyCollector.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIFocusController.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIJSEventListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIJSNativeInitializer.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptContext.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptContextOwner.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptEventListener.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptExternalNameSet.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptGlobalObject.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptGlobalObjectOwner.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptNameSpaceManager.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptObjectOwner.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsIScriptObjectPrincipal.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsPIDOMWindow.h
+lib/thunderbird/include/mozilla-1.5b/dom/nsPIWindowRoot.h
+lib/thunderbird/include/mozilla-1.5b/downloadmanager/nsIDownloadManager.h
+lib/thunderbird/include/mozilla-1.5b/downloadmanager/nsIDownloadProgressListener.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsEditorCID.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsICiter.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIContentFilter.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIDocumentStateListener.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditActionListener.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditor.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditorIMESupport.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditorLogging.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditorMailSupport.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditorObserver.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditorSpellCheck.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIEditorStyleSheets.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIHTMLAbsPosEditor.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIHTMLEditor.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIHTMLInlineTableEditor.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIHTMLObjectResizeListener.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIHTMLObjectResizer.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIPlaintextEditor.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsITableEditor.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsIURIRefObject.h
+lib/thunderbird/include/mozilla-1.5b/editor/nsPIEditorTransaction.h
+lib/thunderbird/include/mozilla-1.5b/embed_base/nsEmbedAPI.h
+lib/thunderbird/include/mozilla-1.5b/embed_base/nsIWindowCreator.h
+lib/thunderbird/include/mozilla-1.5b/embed_base/nsIWindowCreator2.h
+lib/thunderbird/include/mozilla-1.5b/embedcomponents/nsIAppStartupNotifier.h
+lib/thunderbird/include/mozilla-1.5b/embedstring/nsEmbedString.h
+lib/thunderbird/include/mozilla-1.5b/expat/xmlparse.h
+lib/thunderbird/include/mozilla-1.5b/exthandler/nsCExternalHandlerService.h
+lib/thunderbird/include/mozilla-1.5b/exthandler/nsExternalHelperAppService.h
+lib/thunderbird/include/mozilla-1.5b/exthandler/nsExternalProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/exthandler/nsHelperAppRDF.h
+lib/thunderbird/include/mozilla-1.5b/exthandler/nsIExternalHelperAppService.h
+lib/thunderbird/include/mozilla-1.5b/exthandler/nsIExternalProtocolService.h
+lib/thunderbird/include/mozilla-1.5b/exthandler/nsOSHelperAppService.h
+lib/thunderbird/include/mozilla-1.5b/filepicker/nsIFileView.h
+lib/thunderbird/include/mozilla-1.5b/find/nsIFind.h
+lib/thunderbird/include/mozilla-1.5b/find/nsIWebBrowserFind.h
+lib/thunderbird/include/mozilla-1.5b/gfx/gfxIFormats.h
+lib/thunderbird/include/mozilla-1.5b/gfx/gfxIImageFrame.h
+lib/thunderbird/include/mozilla-1.5b/gfx/gfxtypes.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsColor.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsColorNameList.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsColorNames.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsCompressedCharMap.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsCoord.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsDeviceContext.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsFont.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsGfxCIID.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsGfxPSCID.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsGfxXPrintCID.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIBlender.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDeviceContext.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDeviceContextPS.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDeviceContextSpec.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDeviceContextSpecFactory.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDeviceContextSpecPS.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDeviceContextSpecXPrint.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDeviceContextXPrint.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIDrawingSurface.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIFontCatalogService.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIFontEnumerator.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIFontList.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIFontMetrics.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIFreeType2.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIGraphics.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIImage.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIPrintOptions.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIPrintSession.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIPrintSettings.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIPrintSettingsService.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIRegion.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIRenderingContext.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIScreen.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIScreenManager.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsIScriptableRegion.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsITheme.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsMargin.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsPoint.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsPostScriptObj.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsRect.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsRegion.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsSize.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsThemeConstants.h
+lib/thunderbird/include/mozilla-1.5b/gfx/nsTransform2D.h
+lib/thunderbird/include/mozilla-1.5b/gtkembedmoz/gtkmozembed.h
+lib/thunderbird/include/mozilla-1.5b/gtkembedmoz/gtkmozembed_internal.h
+lib/thunderbird/include/mozilla-1.5b/gtkxtbin/gtk2xtbin.h
+lib/thunderbird/include/mozilla-1.5b/gtkxtbin/gtkxtbin.h
+lib/thunderbird/include/mozilla-1.5b/helperAppDlg/nsIHelperAppLauncherDialog.h
+lib/thunderbird/include/mozilla-1.5b/history/nsIBrowserHistory.h
+lib/thunderbird/include/mozilla-1.5b/history/nsIGlobalHistory.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsHTMLTagList.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsHTMLTags.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsHTMLTokens.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIContentSink.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIDTD.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIElementObserver.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIExpatSink.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIHTMLContentSink.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIHTMLFragmentContentSink.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIParser.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIParserFilter.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIParserNode.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsIParserService.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsITokenizer.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsParserCIID.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsParserError.h
+lib/thunderbird/include/mozilla-1.5b/htmlparser/nsToken.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/ImageErrors.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/ImageLogging.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgICache.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgIContainer.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgIContainerObserver.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgIDecoder.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgIDecoderObserver.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgILoad.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgILoader.h
+lib/thunderbird/include/mozilla-1.5b/imglib2/imgIRequest.h
+lib/thunderbird/include/mozilla-1.5b/impComm4xMail/nsComm4xMail.h
+lib/thunderbird/include/mozilla-1.5b/impComm4xMail/nsComm4xMailImport.h
+lib/thunderbird/include/mozilla-1.5b/impComm4xMail/nsComm4xMailStringBundle.h
+lib/thunderbird/include/mozilla-1.5b/impComm4xMail/nsComm4xProfile.h
+lib/thunderbird/include/mozilla-1.5b/impComm4xMail/nsIComm4xProfile.h
+lib/thunderbird/include/mozilla-1.5b/impText/nsTextImport.h
+lib/thunderbird/include/mozilla-1.5b/impText/nsTextStringBundle.h
+lib/thunderbird/include/mozilla-1.5b/import/ImportOutFile.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportABDescriptor.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportAddressBooks.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportFieldMap.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportGeneric.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportMail.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportMailboxDescriptor.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportMimeEncode.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportModule.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportService.h
+lib/thunderbird/include/mozilla-1.5b/import/nsIImportSettings.h
+lib/thunderbird/include/mozilla-1.5b/import/nsImportEncodeScan.h
+lib/thunderbird/include/mozilla-1.5b/import/nsImportMimeEncode.h
+lib/thunderbird/include/mozilla-1.5b/import/nsImportScanFile.h
+lib/thunderbird/include/mozilla-1.5b/import/nsImportService.h
+lib/thunderbird/include/mozilla-1.5b/import/nsImportStringBundle.h
+lib/thunderbird/include/mozilla-1.5b/import/nsImportTranslator.h
+lib/thunderbird/include/mozilla-1.5b/intl/nsIStringBundle.h
+lib/thunderbird/include/mozilla-1.5b/intl/nsIStringBundleOverride.h
+lib/thunderbird/include/mozilla-1.5b/jar/nsIJAR.h
+lib/thunderbird/include/mozilla-1.5b/jar/nsIZipReader.h
+lib/thunderbird/include/mozilla-1.5b/jar/zipfile.h
+lib/thunderbird/include/mozilla-1.5b/jar/zipstruct.h
+lib/thunderbird/include/mozilla-1.5b/jar/zipstub.h
+lib/thunderbird/include/mozilla-1.5b/java/bool.h
+lib/thunderbird/include/mozilla-1.5b/java/interpreter.h
+lib/thunderbird/include/mozilla-1.5b/java/javaString.h
+lib/thunderbird/include/mozilla-1.5b/java/javaThreads.h
+lib/thunderbird/include/mozilla-1.5b/java/java_lang_String.h
+lib/thunderbird/include/mozilla-1.5b/java/jdk_java_lang_String.h
+lib/thunderbird/include/mozilla-1.5b/java/jmc.h
+lib/thunderbird/include/mozilla-1.5b/java/jni.h
+lib/thunderbird/include/mozilla-1.5b/java/jni_md.h
+lib/thunderbird/include/mozilla-1.5b/java/jri.h
+lib/thunderbird/include/mozilla-1.5b/java/jri_md.h
+lib/thunderbird/include/mozilla-1.5b/java/jriext.h
+lib/thunderbird/include/mozilla-1.5b/java/jritypes.h
+lib/thunderbird/include/mozilla-1.5b/java/nspr_md.h
+lib/thunderbird/include/mozilla-1.5b/java/oobj.h
+lib/thunderbird/include/mozilla-1.5b/java/sysmacros_md.h
+lib/thunderbird/include/mozilla-1.5b/java/tree.h
+lib/thunderbird/include/mozilla-1.5b/java/typedefs.h
+lib/thunderbird/include/mozilla-1.5b/java/typedefs_md.h
+lib/thunderbird/include/mozilla-1.5b/java/zip.h
+lib/thunderbird/include/mozilla-1.5b/js/fdlibm.h
+lib/thunderbird/include/mozilla-1.5b/js/js.msg
+lib/thunderbird/include/mozilla-1.5b/js/jsapi.h
+lib/thunderbird/include/mozilla-1.5b/js/jsarena.h
+lib/thunderbird/include/mozilla-1.5b/js/jsarray.h
+lib/thunderbird/include/mozilla-1.5b/js/jsatom.h
+lib/thunderbird/include/mozilla-1.5b/js/jsautocfg.h
+lib/thunderbird/include/mozilla-1.5b/js/jsbit.h
+lib/thunderbird/include/mozilla-1.5b/js/jsbool.h
+lib/thunderbird/include/mozilla-1.5b/js/jsclist.h
+lib/thunderbird/include/mozilla-1.5b/js/jscntxt.h
+lib/thunderbird/include/mozilla-1.5b/js/jscompat.h
+lib/thunderbird/include/mozilla-1.5b/js/jsconfig.h
+lib/thunderbird/include/mozilla-1.5b/js/jsdate.h
+lib/thunderbird/include/mozilla-1.5b/js/jsdbgapi.h
+lib/thunderbird/include/mozilla-1.5b/js/jsdhash.h
+lib/thunderbird/include/mozilla-1.5b/js/jsemit.h
+lib/thunderbird/include/mozilla-1.5b/js/jsfun.h
+lib/thunderbird/include/mozilla-1.5b/js/jsgc.h
+lib/thunderbird/include/mozilla-1.5b/js/jshash.h
+lib/thunderbird/include/mozilla-1.5b/js/jsinterp.h
+lib/thunderbird/include/mozilla-1.5b/js/jslock.h
+lib/thunderbird/include/mozilla-1.5b/js/jslong.h
+lib/thunderbird/include/mozilla-1.5b/js/jsmath.h
+lib/thunderbird/include/mozilla-1.5b/js/jsnum.h
+lib/thunderbird/include/mozilla-1.5b/js/jsobj.h
+lib/thunderbird/include/mozilla-1.5b/js/jsopcode.h
+lib/thunderbird/include/mozilla-1.5b/js/jsopcode.tbl
+lib/thunderbird/include/mozilla-1.5b/js/jsosdep.h
+lib/thunderbird/include/mozilla-1.5b/js/jsotypes.h
+lib/thunderbird/include/mozilla-1.5b/js/jsparse.h
+lib/thunderbird/include/mozilla-1.5b/js/jsprf.h
+lib/thunderbird/include/mozilla-1.5b/js/jsprvtd.h
+lib/thunderbird/include/mozilla-1.5b/js/jspubtd.h
+lib/thunderbird/include/mozilla-1.5b/js/jsregexp.h
+lib/thunderbird/include/mozilla-1.5b/js/jsscan.h
+lib/thunderbird/include/mozilla-1.5b/js/jsscope.h
+lib/thunderbird/include/mozilla-1.5b/js/jsscript.h
+lib/thunderbird/include/mozilla-1.5b/js/jsstddef.h
+lib/thunderbird/include/mozilla-1.5b/js/jsstr.h
+lib/thunderbird/include/mozilla-1.5b/js/jstypes.h
+lib/thunderbird/include/mozilla-1.5b/js/jsutil.h
+lib/thunderbird/include/mozilla-1.5b/js/jsxdrapi.h
+lib/thunderbird/include/mozilla-1.5b/jsconsole/nsIJSConsoleService.h
+lib/thunderbird/include/mozilla-1.5b/jsdebug/jsdIDebuggerService.h
+lib/thunderbird/include/mozilla-1.5b/jsdebug/jsdebug.h
+lib/thunderbird/include/mozilla-1.5b/jsurl/nsIEvaluateStringProxy.h
+lib/thunderbird/include/mozilla-1.5b/jsurl/nsJSProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsBidi.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsBidiFrames.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsBidiPresUtils.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsCompatibility.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsFrameList.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsFrameTraversal.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGrid.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGridCell.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGridLayout2.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGridRow.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGridRowGroupLayout.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGridRowLayout.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGridRowLeafFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsGridRowLeafLayout.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsHTMLParts.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsHTMLReflowMetrics.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsHTMLReflowState.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIAutoCopy.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIBoxLayoutManager.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIBoxPaintManager.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIBrowserBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsICSSFrameConstructor.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsICanvasFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsICaret.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsICheckboxControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIChromeEventHandler.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIComboboxControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIEditorBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFocusTracker.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFormControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFormProcessor.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFormSubmitObserver.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFrameDebug.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFrameFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFrameManager.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFrameSelection.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFrameTraversal.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIFrameUtil.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIGridPart.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIHTMLStyleSheet.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIIFrameBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIImageControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIImageFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIImageMap.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsILayoutDebugger.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsILayoutHistoryState.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsILineIterator.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIListBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIListControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIMenuBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIMenuFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIMutableStyleContext.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIObjectFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPageSequenceFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPercentHeightObserver.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPopupBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPopupSetFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPresContext.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPresShell.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPresState.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPrintContext.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIPrintPreviewContext.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIRadioControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIReflowCallback.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIScrollBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIScrollableFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIScrollableViewProvider.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIScrollbarMediator.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsISelectControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsISelectionImageService.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIStatefulFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIStyleFrameConstruction.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsIStyleSet.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsITableCellLayout.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsITableLayout.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsITextControlFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsITreeBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsITreeContentView.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsITreeSelection.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsITreeView.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsLayoutCID.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsLayoutErrors.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsLayoutUtils.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsPIBoxObject.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsReflowType.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsStyleChangeList.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsStyleConsts.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsTextTransformer.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsTreeBodyFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsTreeColFrame.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsTreeContentView.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsTreeSelection.h
+lib/thunderbird/include/mozilla-1.5b/layout/nsTreeUtils.h
+lib/thunderbird/include/mozilla-1.5b/ldap/disptmpl.h
+lib/thunderbird/include/mozilla-1.5b/ldap/iutil.h
+lib/thunderbird/include/mozilla-1.5b/ldap/lber.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldap-deprecated.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldap-extension.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldap-platform.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldap-standard.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldap-to-be-deprecated.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldap.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldap_ssl.h
+lib/thunderbird/include/mozilla-1.5b/ldap/ldappr.h
+lib/thunderbird/include/mozilla-1.5b/ldap/srchpref.h
+lib/thunderbird/include/mozilla-1.5b/libreg/NSReg.h
+lib/thunderbird/include/mozilla-1.5b/libreg/VerReg.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsCollation.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsCollationCID.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsDateTimeFormatCID.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsICollation.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIDateTimeFormat.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIFontPackageHandler.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIFontPackageProxy.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIFontPackageService.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsILanguageAtom.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsILanguageAtomService.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsILocale.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsILocaleService.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIMacLocale.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIOS2Locale.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIPosixLocale.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIScriptableDateFormat.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsIWin32Locale.h
+lib/thunderbird/include/mozilla-1.5b/locale/nsLocaleCID.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsIBinarySearchIterator.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsIBreakState.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsILineBreaker.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsILineBreakerFactory.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsILinearIterator.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsISemanticUnitScanner.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsIWordBreaker.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsIWordBreakerFactory.h
+lib/thunderbird/include/mozilla-1.5b/lwbrk/nsLWBrkCIID.h
+lib/thunderbird/include/mozilla-1.5b/mailnews/MailNewsTypes.h
+lib/thunderbird/include/mozilla-1.5b/mailnews/MailNewsTypes2.h
+lib/thunderbird/include/mozilla-1.5b/mailview/nsIMsgMailView.h
+lib/thunderbird/include/mozilla-1.5b/mailview/nsIMsgMailViewList.h
+lib/thunderbird/include/mozilla-1.5b/mailview/nsMsgMailViewList.h
+lib/thunderbird/include/mozilla-1.5b/mailview/nsMsgMailViewsCID.h
+lib/thunderbird/include/mozilla-1.5b/mime/comi18n.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimecont.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimecth.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimehdrs.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimei.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimeleaf.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimemsig.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimemult.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimeobj.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimepbuf.h
+lib/thunderbird/include/mozilla-1.5b/mime/mimetext.h
+lib/thunderbird/include/mozilla-1.5b/mime/modlmime.h
+lib/thunderbird/include/mozilla-1.5b/mime/modmimee.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMimeContentTypeHandler.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMimeConverter.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMimeEmitter.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMimeHeaders.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMimeMiscStatus.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMimeObjectClassAccess.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMimeStreamConverter.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsIMsgHeaderParser.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMailHeaders.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMimeContentTypeHandler.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMimeConverter.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMimeHeaders.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMimeObjectClassAccess.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMimeStringResources.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMsgHeaderParser.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsMsgMimeCID.h
+lib/thunderbird/include/mozilla-1.5b/mime/nsStreamConverter.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsEmitterUtils.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsMimeBaseEmitter.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsMimeEmitterCID.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsMimeHtmlEmitter.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsMimePlainEmitter.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsMimeRawEmitter.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsMimeRebuffer.h
+lib/thunderbird/include/mozilla-1.5b/mimeemitter/nsMimeXmlEmitter.h
+lib/thunderbird/include/mozilla-1.5b/mimetype/nsIMIMEHeaderParam.h
+lib/thunderbird/include/mozilla-1.5b/mimetype/nsIMIMEInfo.h
+lib/thunderbird/include/mozilla-1.5b/mimetype/nsIMIMEService.h
+lib/thunderbird/include/mozilla-1.5b/mimetype/nsMimeTypes.h
+lib/thunderbird/include/mozilla-1.5b/mork/mdb.h
+lib/thunderbird/include/mozilla-1.5b/mork/nsIMdbFactoryFactory.h
+lib/thunderbird/include/mozilla-1.5b/mork/nsMorkCID.h
+lib/thunderbird/include/mozilla-1.5b/mozilla-config.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPBERValue.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPConnection.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPErrors.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPMessage.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPMessageListener.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPOperation.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPServer.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPService.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsILDAPURL.h
+lib/thunderbird/include/mozilla-1.5b/mozldap/nsLDAP.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/msgCore.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsCopyMessageStreamListener.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsICopyMessageListener.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsICopyMsgStreamListener.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIFolderListener.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIIncomingServerListener.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMessenger.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMessengerMigrator.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMessengerOSIntegration.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMessengerWindowService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgAccount.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgAccountManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgBiffManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgCopyService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgCopyServiceListener.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgDBView.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFilter.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFilterHitNotify.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFilterList.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFilterPlugin.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFilterService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFolderCache.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFolderCacheElement.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgFolderCompactor.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgGroupRecord.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgHdr.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgHost.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgIdentity.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgMailNewsUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgMailSession.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgMdnGenerator.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgMessageService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgOfflineManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgPrintEngine.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgProgress.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgProtocolInfo.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgPurgeService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgRDFDataSource.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchAdapter.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchNotify.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchScopeTerm.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchSession.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchTerm.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchValidityManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchValidityTable.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSearchValue.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgSignature.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgStatusFeedback.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgStringService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgThread.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgVCard.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIMsgWindow.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsISpamSettings.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsISubscribableServer.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIUrlListener.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsIUrlListenerManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMessenger.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMessengerBootstrap.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMessengerContentHandler.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMessengerMigrator.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgAccount.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgAccountManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgAccountManagerDS.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgBaseCID.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgBiffManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgBodyHandler.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgContentPolicy.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgCopyService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgFilterCore.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgFilterDataSource.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgFilterDelegateFactory.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgFilterService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgFolderCache.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgFolderDataSource.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgFolderFlags.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgHeaderMasks.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgLocalFolderHdrs.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgMailSession.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgMessageFlags.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgPrintEngine.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgProgress.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgPurgeService.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgRDFDataSource.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgRDFUtils.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgResultElement.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgSearchAdapter.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgSearchArray.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgSearchBoolExpression.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgSearchCore.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgSearchScopeTerm.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgSearchSession.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgSearchTerm.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgServiceProvider.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgStatusFeedback.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsMsgWindow.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsStatusBarBiffManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsSubscribableServer.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsSubscribeDataSource.h
+lib/thunderbird/include/mozilla-1.5b/msgbase/nsUrlListenerManager.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsAdapterEnumerator.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsLocalFolderSummarySpec.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgDBFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgGroupRecord.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgI18N.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgIdentity.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgKeyArray.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgKeySet.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgLineBuffer.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgMailNewsUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgProtocol.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgTxn.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgUtf7Utils.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsMsgUtils.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsNewsSummarySpec.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsUInt32Array.h
+lib/thunderbird/include/mozilla-1.5b/msgbaseutil/nsUint8Array.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgAttachment.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgCompFields.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgCompUtils.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgCompose.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgComposeParams.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgComposeProgressParams.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgComposeSecure.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgComposeService.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgDraft.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgQuote.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgRecipientArray.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgSend.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgSendLater.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgSendLaterListener.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgSendListener.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIMsgSendReport.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsISmtpServer.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsISmtpService.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsISmtpUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsIURLFetcher.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgAttachment.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgAttachmentHandler.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgCompCID.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgCompFields.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgCompUtils.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgCompose.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgComposeContentHandler.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgComposeParams.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgComposeProgressParams.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgComposeService.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgComposeStringBundle.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgCopy.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgCreate.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgDeliveryListener.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgEncoders.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgPrompts.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgQuote.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgRecipientArray.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgSend.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgSendLater.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgSendReport.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsMsgSimulateError.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsSmtpDataSource.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsSmtpDelegateFactory.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsSmtpProtocol.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsSmtpServer.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsSmtpService.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsSmtpUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgcompose/nsURLFetcher.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsDBFolderInfo.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsIDBChangeAnnouncer.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsIDBChangeListener.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsIDBFolderInfo.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsIMsgDatabase.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsIMsgOfflineImapOperation.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsINewsDatabase.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsImapMailDatabase.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsMailDatabase.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsMsgDBCID.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsMsgDatabase.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsMsgHdr.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsMsgThread.h
+lib/thunderbird/include/mozilla-1.5b/msgdb/nsNewsDatabase.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIIMAPHostSessionList.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapExtensionSink.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapFlagAndUidState.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapHeaderXferInfo.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapMailFolderSink.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapMessageSink.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapMiscellaneousSink.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapMockChannel.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapProtocol.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapServerSink.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapService.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIImapUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIMAPBodyShell.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIMAPGenericParser.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIMAPHostSessionList.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIMAPNamespace.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIMailboxSpec.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIMsgImapMailFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsIMsgLogonRedirector.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapCore.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapFlagAndUidState.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapMailFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapProtocol.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapProxyEvent.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapSearchResults.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapServerResponseParser.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapService.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsImapUtils.h
+lib/thunderbird/include/mozilla-1.5b/msgimap/nsMsgImapCID.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsILocalMailIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIMailboxService.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIMailboxUrl.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIMovemailIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIMovemailService.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIMsgLocalMailFolder.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIMsgParseMailMsgState.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsINoIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsINoneService.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIPop3IncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIPop3Service.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIPop3Sink.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsIPop3URL.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsLocalMailFolder.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsLocalStringBundle.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsMailboxProtocol.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsMailboxService.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsMailboxUrl.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsMovemailIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsMovemailService.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsMsgLocalCID.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsNoIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsNoneService.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsParseMailbox.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsPop3IncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsPop3Protocol.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsPop3Service.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsPop3Sink.h
+lib/thunderbird/include/mozilla-1.5b/msglocal/nsPop3URL.h
+lib/thunderbird/include/mozilla-1.5b/msgmdn/nsMsgMdnCID.h
+lib/thunderbird/include/mozilla-1.5b/msgmdn/nsMsgMdnGenerator.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nntpCore.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsIMsgNewsFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsIMsgOfflineNewsState.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINNTPArticleList.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINNTPNewsgroupList.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINNTPNewsgroupPost.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINNTPProtocol.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINewsDownloadDialogArgs.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINntpIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINntpService.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsINntpUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsMsgNewsCID.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNNTPArticleList.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNNTPNewsgroupList.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNNTPNewsgroupPost.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNNTPProtocol.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNewsDownloadDialogArgs.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNewsFolder.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNewsUtils.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNntpIncomingServer.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNntpService.h
+lib/thunderbird/include/mozilla-1.5b/msgnews/nsNntpUrl.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsEncryptedSMIMEURIsService.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsIEncryptedSMIMEURIsSrvc.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsIMsgSMIMECompFields.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsIMsgSMIMEHeaderSink.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsISMimeJSHelper.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsMsgComposeSecure.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsMsgSMIMECID.h
+lib/thunderbird/include/mozilla-1.5b/msgsmime/nsSMimeJSHelper.h
+lib/thunderbird/include/mozilla-1.5b/necko/ftpCore.h
+lib/thunderbird/include/mozilla-1.5b/necko/mozITXTToHTMLConv.h
+lib/thunderbird/include/mozilla-1.5b/necko/necko-config.h
+lib/thunderbird/include/mozilla-1.5b/necko/netCore.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsCPasswordManager.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsCPasswordManagerInternal.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIAboutModule.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIAsyncStreamCopier.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIAuthPrompt.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIBufferedStreams.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIByteRangeRequest.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsICachingChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsICookieService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsICryptoFIPSInfo.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIDNSListener.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIDNSService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIDataChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIDirIndex.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIDirIndexListener.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIDirectoryListing.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIDownloader.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIEncodedChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIExternalProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIFTPChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIFileChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIFileProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIFileStreams.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIFileURL.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpAuthManager.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpAuthenticator.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpChannelInternal.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpEventSink.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpHeaderVisitor.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpNotify.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIHttpProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIIDNService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIIOService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIInputStreamChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIInputStreamPump.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIJARChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIJARProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIJARURI.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsILoadGroup.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIMIMEInputStream.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIMultiPartChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsINetModRegEntry.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsINetModuleMgr.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsINetNotify.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIPasswordManager.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIPasswordManagerInternal.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIProgressEventSink.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIPrompt.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIProtocolProxyService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIProxiedProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIProxy.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIProxyAutoConfig.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIProxyInfo.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIRequest.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIRequestObserver.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIRequestObserverProxy.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIResProtocolHandler.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIResumableChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIResumableEntityID.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISOCKS4SocketInfo.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISOCKS4SocketProvider.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISOCKSSocketInfo.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISOCKSSocketProvider.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISSLSocketControl.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISSLSocketProvider.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISecretDecoderRing.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISecureBrowserUI.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISecurityEventSink.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISimpleStreamListener.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISocketProvider.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISocketProviderService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISocketTransport.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsISocketTransportService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStandardURL.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStreamConverter.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStreamConverterService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStreamListener.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStreamListenerProxy.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStreamListenerTee.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStreamLoader.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIStreamTransportService.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsITXTToHTMLConv.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsITransport.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsITransportSecurityInfo.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIURI.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIURIChecker.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIURL.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIURLParser.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIUnicharStreamLoader.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsIUploadChannel.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsNetCID.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsNetError.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsNetUtil.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsReadLine.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsURIHashKey.h
+lib/thunderbird/include/mozilla-1.5b/necko/nsUnixColorPrintf.h
+lib/thunderbird/include/mozilla-1.5b/necko2/nsIViewSourceChannel.h
+lib/thunderbird/include/mozilla-1.5b/nkcache/nsCacheService.h
+lib/thunderbird/include/mozilla-1.5b/nkcache/nsICache.h
+lib/thunderbird/include/mozilla-1.5b/nkcache/nsICacheEntryDescriptor.h
+lib/thunderbird/include/mozilla-1.5b/nkcache/nsICacheListener.h
+lib/thunderbird/include/mozilla-1.5b/nkcache/nsICacheService.h
+lib/thunderbird/include/mozilla-1.5b/nkcache/nsICacheSession.h
+lib/thunderbird/include/mozilla-1.5b/nkcache/nsICacheVisitor.h
+lib/thunderbird/include/mozilla-1.5b/nsBuildID.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_aix.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_beos.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_bsdi.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_darwin.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_dgux.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_freebsd.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_hpux.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_irix.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_linux.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_macos.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_ncr.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_nec.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_netbsd.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_nextstep.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_nspr_pthread.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_nto.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_openbsd.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_openvms.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_os2.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_os2_errors.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_osf1.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_pcos.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_pth.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_qnx.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_reliantunix.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_rhapsody.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_scoos.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_solaris.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_sony.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_sunos4.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_unix_errors.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_unixos.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_unixware.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_win16.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_win32_errors.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_win95.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/_winnt.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/prosdep.h
+lib/thunderbird/include/mozilla-1.5b/nspr/md/sunos4.h
+lib/thunderbird/include/mozilla-1.5b/nspr/nspr.h
+lib/thunderbird/include/mozilla-1.5b/nspr/obsolete/pralarm.h
+lib/thunderbird/include/mozilla-1.5b/nspr/obsolete/probslet.h
+lib/thunderbird/include/mozilla-1.5b/nspr/obsolete/protypes.h
+lib/thunderbird/include/mozilla-1.5b/nspr/obsolete/prsem.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plarena.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plarenas.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plbase64.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plerror.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plgetopt.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plhash.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plresolv.h
+lib/thunderbird/include/mozilla-1.5b/nspr/plstr.h
+lib/thunderbird/include/mozilla-1.5b/nspr/pratom.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prbit.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prclist.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prcmon.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prcountr.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prcpucfg.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prcvar.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prdtoa.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prenv.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prerr.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prerror.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prinet.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prinit.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prinrval.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prio.h
+lib/thunderbird/include/mozilla-1.5b/nspr/pripcsem.h
+lib/thunderbird/include/mozilla-1.5b/nspr/private/pprio.h
+lib/thunderbird/include/mozilla-1.5b/nspr/private/pprthred.h
+lib/thunderbird/include/mozilla-1.5b/nspr/private/prpriv.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prlink.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prlock.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prlog.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prlong.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prmem.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prmon.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prmwait.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prnetdb.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prolock.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prpdce.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prprf.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prproces.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prrng.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prrwlock.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prshm.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prshma.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prsystem.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prthread.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prtime.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prtpool.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prtrace.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prtypes.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prvrsion.h
+lib/thunderbird/include/mozilla-1.5b/nspr/prwin16.h
+lib/thunderbird/include/mozilla-1.5b/pipboot/nsIBufEntropyCollector.h
+lib/thunderbird/include/mozilla-1.5b/pipboot/nsISSLStatusProvider.h
+lib/thunderbird/include/mozilla-1.5b/pipboot/nsISecurityWarningDialogs.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIASN1Object.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIASN1PrintableItem.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIASN1Sequence.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIBadCertListener.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICMSDecoder.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICMSEncoder.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICMSMessage.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICMSMessageErrors.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICMSSecureMessage.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICRLInfo.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICRLManager.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICertPickDialogs.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICertSelect.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICertTree.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICertificateDialogs.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsICipherInfo.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIClientAuthDialogs.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIDOMCryptoDialogs.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIGenKeypairInfoDlg.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIHash.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIKeygenThread.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsINSSCertCache.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIOCSPResponder.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIPK11Token.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIPK11TokenDB.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIPKCS11Module.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIPKCS11ModuleDB.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIPKCS11Slot.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsISMimeCert.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsISSLStatus.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsITokenDialogs.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsITokenPasswordDialogs.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIUserCertPicker.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIX509Cert.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIX509CertDB.h
+lib/thunderbird/include/mozilla-1.5b/pipnss/nsIX509CertValidity.h
+lib/thunderbird/include/mozilla-1.5b/pippki/nsIASN1Tree.h
+lib/thunderbird/include/mozilla-1.5b/pippki/nsIPKIParamBlock.h
+lib/thunderbird/include/mozilla-1.5b/plugin/npapi.h
+lib/thunderbird/include/mozilla-1.5b/plugin/npupp.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsDefaultPlugin.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIClassicPluginFactory.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsICookieStorage.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIEventHandler.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIFileUtilities.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIHTTPHeaderListener.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIJRILiveConnectPIPeer.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIJRILiveConnectPlugin.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPlugin.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginDocument.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginHost.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginInputStream.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginInstance.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginInstanceOwner.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginInstancePeer.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginInstancePeer2.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginManager.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginManager2.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginStreamInfo.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginStreamListener.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginTagInfo.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIPluginTagInfo2.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIScriptablePlugin.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsIWindowlessPlugInstPeer.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsPIPluginHost.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsPIPluginInstancePeer.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsPluginError.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsPluginLogging.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsPluginNativeWindow.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsPluginsCID.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsplugin.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nsplugindefs.h
+lib/thunderbird/include/mozilla-1.5b/plugin/nspluginroot.h
+lib/thunderbird/include/mozilla-1.5b/pref/nsIPref.h
+lib/thunderbird/include/mozilla-1.5b/pref/nsIPrefBranch.h
+lib/thunderbird/include/mozilla-1.5b/pref/nsIPrefBranchInternal.h
+lib/thunderbird/include/mozilla-1.5b/pref/nsIPrefLocalizedString.h
+lib/thunderbird/include/mozilla-1.5b/pref/nsIPrefService.h
+lib/thunderbird/include/mozilla-1.5b/pref/nsIRelativeFilePref.h
+lib/thunderbird/include/mozilla-1.5b/pref/nsISecurityPref.h
+lib/thunderbird/include/mozilla-1.5b/prefetch/nsCPrefetchService.h
+lib/thunderbird/include/mozilla-1.5b/prefetch/nsIPrefetchService.h
+lib/thunderbird/include/mozilla-1.5b/prefmigr/nsIPrefMigration.h
+lib/thunderbird/include/mozilla-1.5b/prefmigr/nsIPrefMigrationProgress.h
+lib/thunderbird/include/mozilla-1.5b/prefmigr/nsPrefMigration.h
+lib/thunderbird/include/mozilla-1.5b/prefmigr/nsPrefMigrationCIDs.h
+lib/thunderbird/include/mozilla-1.5b/prefmigr/nsPrefMigrationFactory.h
+lib/thunderbird/include/mozilla-1.5b/profdirserviceprovider/nsProfileDirServiceProvider.h
+lib/thunderbird/include/mozilla-1.5b/profile/nsIProfile.h
+lib/thunderbird/include/mozilla-1.5b/profile/nsIProfileChangeStatus.h
+lib/thunderbird/include/mozilla-1.5b/profile/nsIProfileInternal.h
+lib/thunderbird/include/mozilla-1.5b/profile/nsIProfileStartupListener.h
+lib/thunderbird/include/mozilla-1.5b/progressDlg/nsIProgressDialog.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsILocalStore.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFCompositeDataSource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFContainer.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFContainerUtils.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFContentSink.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFDataSource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFDelegateFactory.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFFileSystem.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFInMemoryDataSource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFLiteral.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFNode.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFObserver.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFPropagatableDataSource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFPurgeableDataSource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFRemoteDataSource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFResource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFService.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFXMLParser.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFXMLSerializer.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFXMLSink.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsIRDFXMLSource.h
+lib/thunderbird/include/mozilla-1.5b/rdf/nsRDFCID.h
+lib/thunderbird/include/mozilla-1.5b/rdf/rdf.h
+lib/thunderbird/include/mozilla-1.5b/rdfutil/nsRDFResource.h
+lib/thunderbird/include/mozilla-1.5b/shistory/nsIHistoryEntry.h
+lib/thunderbird/include/mozilla-1.5b/shistory/nsISHContainer.h
+lib/thunderbird/include/mozilla-1.5b/shistory/nsISHEntry.h
+lib/thunderbird/include/mozilla-1.5b/shistory/nsISHTransaction.h
+lib/thunderbird/include/mozilla-1.5b/shistory/nsISHistory.h
+lib/thunderbird/include/mozilla-1.5b/shistory/nsISHistoryInternal.h
+lib/thunderbird/include/mozilla-1.5b/shistory/nsISHistoryListener.h
+lib/thunderbird/include/mozilla-1.5b/sidebar/nsISidebar.h
+lib/thunderbird/include/mozilla-1.5b/spellchecker/mozIPersonalDictionary.h
+lib/thunderbird/include/mozilla-1.5b/spellchecker/mozISpellCheckingEngine.h
+lib/thunderbird/include/mozilla-1.5b/spellchecker/mozISpellI18NManager.h
+lib/thunderbird/include/mozilla-1.5b/spellchecker/mozISpellI18NUtil.h
+lib/thunderbird/include/mozilla-1.5b/string/nsAFlatString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsASingleFragmentString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsAString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsAStringGenerator.h
+lib/thunderbird/include/mozilla-1.5b/string/nsAlgorithm.h
+lib/thunderbird/include/mozilla-1.5b/string/nsBufferHandle.h
+lib/thunderbird/include/mozilla-1.5b/string/nsBufferHandleUtils.h
+lib/thunderbird/include/mozilla-1.5b/string/nsCharTraits.h
+lib/thunderbird/include/mozilla-1.5b/string/nsDependentConcatenation.h
+lib/thunderbird/include/mozilla-1.5b/string/nsDependentString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsDependentSubstring.h
+lib/thunderbird/include/mozilla-1.5b/string/nsFragmentedString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsLiteralString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsPrintfCString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsPromiseFlatString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsReadableUtils.h
+lib/thunderbird/include/mozilla-1.5b/string/nsSharableString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsSharedBufferList.h
+lib/thunderbird/include/mozilla-1.5b/string/nsSlidingString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStr.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStrShared.h
+lib/thunderbird/include/mozilla-1.5b/string/nsString.h
+lib/thunderbird/include/mozilla-1.5b/string/nsString2.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStringDefines.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStringFragment.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStringFwd.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStringIterator.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStringIteratorUtils.h
+lib/thunderbird/include/mozilla-1.5b/string/nsStringTraits.h
+lib/thunderbird/include/mozilla-1.5b/string/nsUTF8Utils.h
+lib/thunderbird/include/mozilla-1.5b/string/nsXPIDLString.h
+lib/thunderbird/include/mozilla-1.5b/txmgr/nsITransaction.h
+lib/thunderbird/include/mozilla-1.5b/txmgr/nsITransactionList.h
+lib/thunderbird/include/mozilla-1.5b/txmgr/nsITransactionListener.h
+lib/thunderbird/include/mozilla-1.5b/txmgr/nsITransactionManager.h
+lib/thunderbird/include/mozilla-1.5b/txmgr/nsTransactionManagerCID.h
+lib/thunderbird/include/mozilla-1.5b/txtsvc/nsISpellChecker.h
+lib/thunderbird/include/mozilla-1.5b/txtsvc/nsITextService.h
+lib/thunderbird/include/mozilla-1.5b/txtsvc/nsITextServicesDocument.h
+lib/thunderbird/include/mozilla-1.5b/txtsvc/nsITextServicesFilter.h
+lib/thunderbird/include/mozilla-1.5b/txtsvc/nsTextServicesCID.h
+lib/thunderbird/include/mozilla-1.5b/ucnative/nsINativeUConvService.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsEncoderDecoderUtils.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsICharRepresentable.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsICharsetAlias.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsICharsetConverterManager.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIConverterInputStream.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsICurrentCharsetListener.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIMappingCache.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIPlatformCharset.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIScriptableUConv.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsITextToSubURI.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIUTF8ConverterService.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIUnicodeDecodeHelper.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIUnicodeDecoder.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIUnicodeEncodeHelper.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsIUnicodeEncoder.h
+lib/thunderbird/include/mozilla-1.5b/uconv/nsUConvCID.h
+lib/thunderbird/include/mozilla-1.5b/uconv/uconvutil.h
+lib/thunderbird/include/mozilla-1.5b/ucvcn/nsUCvCnCID.h
+lib/thunderbird/include/mozilla-1.5b/ucvibm/nsUCvIBMCID.h
+lib/thunderbird/include/mozilla-1.5b/ucvja/nsUCVJA2CID.h
+lib/thunderbird/include/mozilla-1.5b/ucvja/nsUCVJACID.h
+lib/thunderbird/include/mozilla-1.5b/ucvko/nsUCvKOCID.h
+lib/thunderbird/include/mozilla-1.5b/ucvlatin/nsUCvLatinCID.h
+lib/thunderbird/include/mozilla-1.5b/ucvtw/nsUCvTWCID.h
+lib/thunderbird/include/mozilla-1.5b/ucvtw2/nsUCvTW2CID.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsHankakuToZenkakuCID.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsICaseConversion.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsIEntityConverter.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsIOrderIdFormater.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsISaveAsCharset.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsITextTransform.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsIUGenCategory.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsIUGenDetailCategory.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsIUnicodeNormalizer.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsUnicharUtilCIID.h
+lib/thunderbird/include/mozilla-1.5b/unicharutil/nsUnicharUtils.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsCURILoader.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsDocLoader.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsIContentHandler.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsIDocumentLoader.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsIDownload.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsIURIContentListener.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsIURILoader.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsIWebProgress.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsIWebProgressListener.h
+lib/thunderbird/include/mozilla-1.5b/uriloader/nsURILoader.h
+lib/thunderbird/include/mozilla-1.5b/util/nsITimeRecorder.h
+lib/thunderbird/include/mozilla-1.5b/util/nsTimer.h
+lib/thunderbird/include/mozilla-1.5b/util/stopwatch.h
+lib/thunderbird/include/mozilla-1.5b/util/xp_obs.h
+lib/thunderbird/include/mozilla-1.5b/view/nsICompositeListener.h
+lib/thunderbird/include/mozilla-1.5b/view/nsIScrollPositionListener.h
+lib/thunderbird/include/mozilla-1.5b/view/nsIScrollableView.h
+lib/thunderbird/include/mozilla-1.5b/view/nsIView.h
+lib/thunderbird/include/mozilla-1.5b/view/nsIViewManager.h
+lib/thunderbird/include/mozilla-1.5b/view/nsIViewObserver.h
+lib/thunderbird/include/mozilla-1.5b/view/nsViewsCID.h
+lib/thunderbird/include/mozilla-1.5b/wallet/nsCPassword.h
+lib/thunderbird/include/mozilla-1.5b/wallet/nsIKeyedStreamGenerator.h
+lib/thunderbird/include/mozilla-1.5b/wallet/nsIPassword.h
+lib/thunderbird/include/mozilla-1.5b/wallet/nsIPasswordSink.h
+lib/thunderbird/include/mozilla-1.5b/wallet/nsIWalletService.h
+lib/thunderbird/include/mozilla-1.5b/walletviewers/nsISignonViewer.h
+lib/thunderbird/include/mozilla-1.5b/walletviewers/nsIWalletEditor.h
+lib/thunderbird/include/mozilla-1.5b/walletviewers/nsIWalletPreview.h
+lib/thunderbird/include/mozilla-1.5b/webbrowserpersist/nsCWebBrowserPersist.h
+lib/thunderbird/include/mozilla-1.5b/webbrowserpersist/nsIWebBrowserPersist.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsCTooltipTextProvider.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsCWebBrowser.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsICommandHandler.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIContextMenuListener.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIContextMenuListener2.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIEmbeddingSiteWindow.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIEmbeddingSiteWindow2.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIPrintingPrompt.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIPrintingPromptService.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsITooltipListener.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsITooltipTextProvider.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIWebBrowser.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIWebBrowserChrome.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIWebBrowserChromeFocus.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIWebBrowserFocus.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIWebBrowserPrint.h
+lib/thunderbird/include/mozilla-1.5b/webbrwsr/nsIWebBrowserSetup.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsIClipboardCommands.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsIContentViewerContainer.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsIDocStreamLoaderFactory.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsIDocumentLoaderFactory.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsILinkHandler.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsIRefreshURI.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsIWebShell.h
+lib/thunderbird/include/mozilla-1.5b/webshell/nsIWebShellServices.h
+lib/thunderbird/include/mozilla-1.5b/widget/mozcontainer.h
+lib/thunderbird/include/mozilla-1.5b/widget/mozdrawingarea.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsEvent.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsGUIEvent.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIAppShell.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIBaseWindow.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIBidiKeyboard.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIButton.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsICheckButton.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIClipboard.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIClipboardDragDropHookList.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIClipboardDragDropHooks.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIClipboardHelper.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIClipboardOwner.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIDragService.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIDragSession.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIDragSessionGTK.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIDragSessionMac.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIDragSessionXlib.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIEventListener.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIFilePicker.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIFormatConverter.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIFullScreen.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIKBStateControl.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsILabel.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsILookAndFeel.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIMenu.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIMenuBar.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIMenuItem.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIMenuListener.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIMenuRollup.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIMouseListener.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsINativeScrollbar.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIPluginWidget.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIRollupListener.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsISound.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsITextWidget.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIToolkit.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsITransferable.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIWidget.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIXRemoteClient.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsIXRemoteWidgetHelper.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsStringUtil.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsWidgetSupport.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsWidgetsCID.h
+lib/thunderbird/include/mozilla-1.5b/widget/nsXRemoteClientCID.h
+lib/thunderbird/include/mozilla-1.5b/windowwatcher/nsIAuthPromptWrapper.h
+lib/thunderbird/include/mozilla-1.5b/windowwatcher/nsIDialogParamBlock.h
+lib/thunderbird/include/mozilla-1.5b/windowwatcher/nsIPromptService.h
+lib/thunderbird/include/mozilla-1.5b/windowwatcher/nsIWindowWatcher.h
+lib/thunderbird/include/mozilla-1.5b/windowwatcher/nsPIPromptService.h
+lib/thunderbird/include/mozilla-1.5b/windowwatcher/nsPIWindowWatcher.h
+lib/thunderbird/include/mozilla-1.5b/xlibrgb/xlibrgb.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsAgg.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsAppDirectoryServiceDefs.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsArray.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsArrayEnumerator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsAtomService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsAutoLock.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsAutoPtr.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsBaseHashtable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCOMArray.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCOMPtr.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCRT.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCWeakReference.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCategoryManagerUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCheapSets.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsClassHashtable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCom.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsComObsolete.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsComponentManagerObsolete.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsComponentManagerUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsCppSharedAllocator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDataHashtable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDebug.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDebugImpl.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDeque.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDirectoryService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDirectoryServiceDefs.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDirectoryServiceUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsDoubleHashtable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsEnumeratorUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsError.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsEscape.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsEventQueueUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsFastLoadPtr.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsFastLoadService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsFixedSizeAllocator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsGenericFactory.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsHashKeys.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsHashSets.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsHashtable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIAllocator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIArray.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIAsyncInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIAsyncOutputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIAtom.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIAtomService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIBinaryInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIBinaryOutputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIByteArrayInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIByteBuffer.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsICategoryManager.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIClassInfo.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsICollection.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIComponentLoader.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIComponentLoaderManager.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIComponentManager.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIComponentManagerObsolete.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIComponentRegistrar.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIConsoleListener.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIConsoleMessage.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIConsoleService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsID.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIDebug.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIDirectoryService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIEnumerator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIErrorService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIEventQueue.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIEventQueueService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIException.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIExceptionService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIFactory.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIFastLoadFileControl.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIFastLoadService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIFile.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIGenericFactory.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIID.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIInputStreamTee.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIInterfaceInfo.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIInterfaceInfoManager.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIInterfaceRequestor.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIInterfaceRequestorUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsILineInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsILocalFile.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIMemory.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIModule.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIMultiplexInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsINativeComponentLoader.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIObjectInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIObjectOutputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIObserver.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIObserverService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIOutputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIPersistentProperties2.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIPipe.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIProcess.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIProgrammingLanguage.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIProperties.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIPropertyBag.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIProxyCreateInstance.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIProxyObjectManager.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIRecyclingAllocator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIRunnable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIScriptableInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISeekableStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISerializable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIServiceManager.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIServiceManagerObsolete.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIServiceManagerUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISimpleEnumerator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIStorageStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIStreamBufferAccess.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIStringEnumerator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIStringService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIStringStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupports.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupportsArray.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupportsBase.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupportsImpl.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupportsIterators.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupportsObsolete.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupportsPrimitives.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsISupportsUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIThread.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIThreadPool.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsITimelineService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsITimer.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsITimerInternal.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsITimerManager.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsITraceRefcnt.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIUnicharBuffer.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIUnicharInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIVariant.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIWeakReference.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIWeakReferenceUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsIXPTLoader.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsInt64.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsInterfaceHashtable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsLinebreakConverter.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsLocalFile.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsLocalFileUnix.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsMemory.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsMultiplexInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsNativeCharsetUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsNativeComponentLoader.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsObserverService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsObsoleteModuleLoading.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsProcess.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsProxiedService.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsProxyEvent.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsProxyRelease.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsQuickSort.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsRecyclingAllocator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsScriptableInputStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStaticAtom.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStaticComponent.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStaticNameTable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStorageStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStreamUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStringEnumerator.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStringIO.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsStringStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsSupportsArray.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsSupportsPrimitives.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsTHashtable.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsTextFormatter.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsTime.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsTraceRefcnt.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsTraceRefcntImpl.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsUnitConversion.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsValueArray.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsVariant.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsVector.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsVoidArray.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsWeakPtr.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsWeakReference.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsXPCOM.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsXPCOMCID.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsXPCOMGlue.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nscore.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/nsrootidl.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/pldhash.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/plevent.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/plvector.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/xcDll.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/xpcom-config.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/xpt_arena.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/xpt_struct.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/xpt_xdr.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/xptcall.h
+lib/thunderbird/include/mozilla-1.5b/xpcom/xptcstubsdecl.inc
+lib/thunderbird/include/mozilla-1.5b/xpcom/xptcstubsdef.inc
+lib/thunderbird/include/mozilla-1.5b/xpcom/xptinfo.h
+lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete/nsFileSpec.h
+lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete/nsFileStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete/nsIFileSpec.h
+lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete/nsIFileStream.h
+lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete/nsIRegistry.h
+lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete/nsIRegistryUtils.h
+lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete/nsSpecialSystemDirectory.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/XPCIDispatch.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/mozIJSSubScriptLoader.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIJSContextStack.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIJSRuntimeService.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIScriptError.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIScriptableInterfaces.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIXPCScriptNotify.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIXPCScriptable.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIXPCSecurityManager.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/nsIXPConnect.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/xpc_map_end.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/xpccomponents.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/xpcexception.h
+lib/thunderbird/include/mozilla-1.5b/xpconnect/xpcjsid.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/InstallCleanupDefines.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsIDOMInstallTriggerGlobal.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsIDOMInstallVersion.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsISoftwareUpdate.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsIXPIDialogService.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsIXPINotifier.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsIXPIProgressDialog.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsPICertNotification.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsPIXPIProxy.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsPIXPIStubHook.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsSoftwareUpdateIIDs.h
+lib/thunderbird/include/mozilla-1.5b/xpinstall/nsXPITriggerInfo.h
+lib/thunderbird/include/mozilla-1.5b/xprintutil/xprintutil.h
+lib/thunderbird/include/mozilla-1.5b/xremoteservice/nsIXRemoteService.h
+lib/thunderbird/include/mozilla-1.5b/xul/nsIXULContent.h
+lib/thunderbird/include/mozilla-1.5b/xul/nsIXULPopupListener.h
+lib/thunderbird/include/mozilla-1.5b/xulapp/nsXULAppAPI.h
+lib/thunderbird/include/mozilla-1.5b/xuldoc/nsIController.h
+lib/thunderbird/include/mozilla-1.5b/xuldoc/nsIControllers.h
+lib/thunderbird/include/mozilla-1.5b/xuldoc/nsIXULContentSink.h
+lib/thunderbird/include/mozilla-1.5b/xuldoc/nsIXULDocument.h
+lib/thunderbird/include/mozilla-1.5b/xuldoc/nsIXULPrototypeCache.h
+lib/thunderbird/include/mozilla-1.5b/xuldoc/nsIXULPrototypeDocument.h
+lib/thunderbird/include/mozilla-1.5b/xultmpl/nsIXULBuilderListener.h
+lib/thunderbird/include/mozilla-1.5b/xultmpl/nsIXULSortService.h
+lib/thunderbird/include/mozilla-1.5b/xultmpl/nsIXULTemplateBuilder.h
+lib/thunderbird/lib/mozilla-1.5b/TestGtkEmbed
+lib/thunderbird/lib/mozilla-1.5b/chrome/US.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/chromelist.txt
+lib/thunderbird/lib/mozilla-1.5b/chrome/classic.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/comm.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/en-US.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/en-win.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/icons/default/abcardWindow.ico
+lib/thunderbird/lib/mozilla-1.5b/chrome/icons/default/addressbookWindow.ico
+lib/thunderbird/lib/mozilla-1.5b/chrome/icons/default/default.xpm
+lib/thunderbird/lib/mozilla-1.5b/chrome/icons/default/messengerWindow.ico
+lib/thunderbird/lib/mozilla-1.5b/chrome/icons/default/msgcomposeWindow.ico
+lib/thunderbird/lib/mozilla-1.5b/chrome/installed-chrome.txt
+lib/thunderbird/lib/mozilla-1.5b/chrome/messenger.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/modern.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/pipnss.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/pippki.jar
+lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit.jar
+lib/thunderbird/lib/mozilla-1.5b/components/accessibility-atk.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/accessibility.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/addrbook.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/appshell.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/autocomplete.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/bookmarks.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/caps.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/chardet.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/chrome.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/commandhandler.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/composer.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/content_base.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/content_html.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/content_htmldoc.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/content_xmldoc.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/content_xslt.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/docshell.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_base.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_core.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_css.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_events.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_html.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_range.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_stylesheets.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_traversal.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_views.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_xbl.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_xpath.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/dom_xul.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/downloadmanager.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/editor.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/embed_base.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/exthandler.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/filepicker.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/find.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/gfx.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/helperAppDlg.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/history.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/htmlparser.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/imglib2.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/impComm4xMail.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/import.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/intl.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/jar.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/jsconsole-clhandler.js
+lib/thunderbird/lib/mozilla-1.5b/components/jsconsole.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/jsdservice.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/jsurl.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/layout_base.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/layout_xul.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/layout_xul_tree.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/libaccessibility.so
+lib/thunderbird/lib/mozilla-1.5b/components/libappcomps.so
+lib/thunderbird/lib/mozilla-1.5b/components/libcaps.so
+lib/thunderbird/lib/mozilla-1.5b/components/libchrome.so
+lib/thunderbird/lib/mozilla-1.5b/components/libcomposer.so
+lib/thunderbird/lib/mozilla-1.5b/components/libdocshell.so
+lib/thunderbird/lib/mozilla-1.5b/components/libeditor.so
+lib/thunderbird/lib/mozilla-1.5b/components/libembed_lite.so
+lib/thunderbird/lib/mozilla-1.5b/components/libembedcomponents.so
+lib/thunderbird/lib/mozilla-1.5b/components/libfileview.so
+lib/thunderbird/lib/mozilla-1.5b/components/libgfx_gtk.so
+lib/thunderbird/lib/mozilla-1.5b/components/libgfxps.so
+lib/thunderbird/lib/mozilla-1.5b/components/libgfxxprint.so
+lib/thunderbird/lib/mozilla-1.5b/components/libgklayout.so
+lib/thunderbird/lib/mozilla-1.5b/components/libgkplugin.so
+lib/thunderbird/lib/mozilla-1.5b/components/libhtmlpars.so
+lib/thunderbird/lib/mozilla-1.5b/components/libi18n.so
+lib/thunderbird/lib/mozilla-1.5b/components/libimglib2.so
+lib/thunderbird/lib/mozilla-1.5b/components/libimport.so
+lib/thunderbird/lib/mozilla-1.5b/components/libjar50.so
+lib/thunderbird/lib/mozilla-1.5b/components/libjsd.so
+lib/thunderbird/lib/mozilla-1.5b/components/libjsdom.so
+lib/thunderbird/lib/mozilla-1.5b/components/libmail.so
+lib/thunderbird/lib/mozilla-1.5b/components/libmork.so
+lib/thunderbird/lib/mozilla-1.5b/components/libmozfind.so
+lib/thunderbird/lib/mozilla-1.5b/components/libmozldap.so
+lib/thunderbird/lib/mozilla-1.5b/components/libmsgsmime.so
+lib/thunderbird/lib/mozilla-1.5b/components/libmyspell.so
+lib/thunderbird/lib/mozilla-1.5b/components/libnecko.so
+lib/thunderbird/lib/mozilla-1.5b/components/libnecko2.so
+lib/thunderbird/lib/mozilla-1.5b/components/libnsappshell.so
+lib/thunderbird/lib/mozilla-1.5b/components/libnsprefm.so
+lib/thunderbird/lib/mozilla-1.5b/components/libpipboot.so
+lib/thunderbird/lib/mozilla-1.5b/components/libpipnss.so
+lib/thunderbird/lib/mozilla-1.5b/components/libpippki.so
+lib/thunderbird/lib/mozilla-1.5b/components/libpref.so
+lib/thunderbird/lib/mozilla-1.5b/components/libprofile.so
+lib/thunderbird/lib/mozilla-1.5b/components/librdf.so
+lib/thunderbird/lib/mozilla-1.5b/components/libspellchecker.so
+lib/thunderbird/lib/mozilla-1.5b/components/libtxmgr.so
+lib/thunderbird/lib/mozilla-1.5b/components/libuconv.so
+lib/thunderbird/lib/mozilla-1.5b/components/libwallet.so
+lib/thunderbird/lib/mozilla-1.5b/components/libwalletviewers.so
+lib/thunderbird/lib/mozilla-1.5b/components/libwebbrwsr.so
+lib/thunderbird/lib/mozilla-1.5b/components/libwidget_gtk2.so
+lib/thunderbird/lib/mozilla-1.5b/components/libxpcom_compat_c.so
+lib/thunderbird/lib/mozilla-1.5b/components/libxpconnect.so
+lib/thunderbird/lib/mozilla-1.5b/components/libxpinstall.so
+lib/thunderbird/lib/mozilla-1.5b/components/libxremote_client.so
+lib/thunderbird/lib/mozilla-1.5b/components/libxremoteservice.so
+lib/thunderbird/lib/mozilla-1.5b/components/locale.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/lwbrk.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/mailnews.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/mailview.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/mdn-service.js
+lib/thunderbird/lib/mozilla-1.5b/components/mime.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/mimetype.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/mozbrwsr.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/mozfind.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/mozldap.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msgbase.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msgcompose.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msgdb.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msgimap.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msglocal.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msgnews.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msgsearch.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/msgsmime.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/myspell/en-US.aff
+lib/thunderbird/lib/mozilla-1.5b/components/myspell/en-US.dic
+lib/thunderbird/lib/mozilla-1.5b/components/necko.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_about.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_cache.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_cookie.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_data.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_dns.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_file.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_ftp.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_http.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_jar.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_res.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_socket.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_strconv.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/necko_viewsource.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/nsCloseAllWindows.js
+lib/thunderbird/lib/mozilla-1.5b/components/nsDownloadProgressListener.js
+lib/thunderbird/lib/mozilla-1.5b/components/nsFilePicker.js
+lib/thunderbird/lib/mozilla-1.5b/components/nsHelperAppDlg.js
+lib/thunderbird/lib/mozilla-1.5b/components/nsLDAPPrefsService.js
+lib/thunderbird/lib/mozilla-1.5b/components/nsProgressDialog.js
+lib/thunderbird/lib/mozilla-1.5b/components/nsProxyAutoConfig.js
+lib/thunderbird/lib/mozilla-1.5b/components/pipboot.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/pipnss.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/pippki.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/plugin.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/pref.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/prefetch.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/prefmigr.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/profile.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/progressDlg.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/proxyObjInst.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/rdf.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/shistory.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/sidebar.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/signonviewer.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/smime-service.js
+lib/thunderbird/lib/mozilla-1.5b/components/spellchecker.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/timebomb.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/txmgr.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/txtsvc.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/ucnative.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/uconv.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/unicharutil.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/uriloader.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/util.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/wallet.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/walleteditor.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/walletpreview.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/webBrowser_core.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/webbrowserpersist.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/webshell_idls.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/widget.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/windowds.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/windowwatcher.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpcom_base.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpcom_components.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpcom_ds.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpcom_io.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpcom_obsolete.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpcom_threads.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpcom_xpti.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpconnect.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xpinstall.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xremoteservice.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xuldoc.xpt
+lib/thunderbird/lib/mozilla-1.5b/components/xultmpl.xpt
+lib/thunderbird/lib/mozilla-1.5b/defaults/messenger/US/mailViews.dat
+lib/thunderbird/lib/mozilla-1.5b/defaults/messenger/mailViews.dat
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/all.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/editor.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/mailnews.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/mdn.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/security-prefs.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/smime.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/unix.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/pref/xpinstall.js
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/bookmarks.html
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/chrome/userChrome-example.css
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/chrome/userContent-example.css
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/localstore.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/mimeTypes.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/panels.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/search.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/bookmarks.html
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/chrome/userChrome-example.css
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/chrome/userContent-example.css
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/localstore.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/mimeTypes.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/panels.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/profile/search.rdf
+lib/thunderbird/lib/mozilla-1.5b/defaults/wallet/DistinguishedSchema.tbl
+lib/thunderbird/lib/mozilla-1.5b/defaults/wallet/FieldSchema.tbl
+lib/thunderbird/lib/mozilla-1.5b/defaults/wallet/PositionalSchema.tbl
+lib/thunderbird/lib/mozilla-1.5b/defaults/wallet/SchemaConcat.tbl
+lib/thunderbird/lib/mozilla-1.5b/defaults/wallet/SchemaStrings.tbl
+lib/thunderbird/lib/mozilla-1.5b/defaults/wallet/StateSchema.tbl
+lib/thunderbird/lib/mozilla-1.5b/defaults/wallet/VcardSchema.tbl
+lib/thunderbird/lib/mozilla-1.5b/libgkgfx.so
+lib/thunderbird/lib/mozilla-1.5b/libgtkembedmoz.so
+lib/thunderbird/lib/mozilla-1.5b/libgtkxtbin.so
+lib/thunderbird/lib/mozilla-1.5b/libldap50.so
+lib/thunderbird/lib/mozilla-1.5b/libmozjs.so
+lib/thunderbird/lib/mozilla-1.5b/libnspr4.so
+lib/thunderbird/lib/mozilla-1.5b/libnss3.so
+lib/thunderbird/lib/mozilla-1.5b/libnssckbi.so
+lib/thunderbird/lib/mozilla-1.5b/libnullplugin.so
+lib/thunderbird/lib/mozilla-1.5b/libplc4.so
+lib/thunderbird/lib/mozilla-1.5b/libplds4.so
+lib/thunderbird/lib/mozilla-1.5b/libprldap50.so
+lib/thunderbird/lib/mozilla-1.5b/libsmime3.so
+lib/thunderbird/lib/mozilla-1.5b/libsoftokn3.chk
+lib/thunderbird/lib/mozilla-1.5b/libsoftokn3.so
+lib/thunderbird/lib/mozilla-1.5b/libssl3.so
+lib/thunderbird/lib/mozilla-1.5b/libxlibrgb.so
+lib/thunderbird/lib/mozilla-1.5b/libxpcom.so
+lib/thunderbird/lib/mozilla-1.5b/libxpcom_compat.so
+lib/thunderbird/lib/mozilla-1.5b/libxpistub.so
+lib/thunderbird/lib/mozilla-1.5b/mozilla-xremote-client
+lib/thunderbird/lib/mozilla-1.5b/plugins/libnullplugin.so
+lib/thunderbird/lib/mozilla-1.5b/regchrome
+lib/thunderbird/lib/mozilla-1.5b/regxpcom
+lib/thunderbird/lib/mozilla-1.5b/res/EditorOverride.css
+lib/thunderbird/lib/mozilla-1.5b/res/arrow.gif
+lib/thunderbird/lib/mozilla-1.5b/res/arrowd.gif
+lib/thunderbird/lib/mozilla-1.5b/res/broken-image.gif
+lib/thunderbird/lib/mozilla-1.5b/res/builtin/htmlBindings.xml
+lib/thunderbird/lib/mozilla-1.5b/res/builtin/platformHTMLBindings.xml
+lib/thunderbird/lib/mozilla-1.5b/res/charsetData.properties
+lib/thunderbird/lib/mozilla-1.5b/res/charsetalias.properties
+lib/thunderbird/lib/mozilla-1.5b/res/cmessage.txt
+lib/thunderbird/lib/mozilla-1.5b/res/dtd/xhtml11.dtd
+lib/thunderbird/lib/mozilla-1.5b/res/entityTables/html40Latin1.properties
+lib/thunderbird/lib/mozilla-1.5b/res/entityTables/html40Special.properties
+lib/thunderbird/lib/mozilla-1.5b/res/entityTables/html40Symbols.properties
+lib/thunderbird/lib/mozilla-1.5b/res/entityTables/htmlEntityVersions.properties
+lib/thunderbird/lib/mozilla-1.5b/res/entityTables/transliterate.properties
+lib/thunderbird/lib/mozilla-1.5b/res/fonts/fontEncoding.properties
+lib/thunderbird/lib/mozilla-1.5b/res/forms.css
+lib/thunderbird/lib/mozilla-1.5b/res/grabber.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html.css
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-audio.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-binary.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-find.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-image.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-menu.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-movie.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-sound.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-telnet.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-text.gif
+lib/thunderbird/lib/mozilla-1.5b/res/html/gopher-unknown.gif
+lib/thunderbird/lib/mozilla-1.5b/res/langGroups.properties
+lib/thunderbird/lib/mozilla-1.5b/res/language.properties
+lib/thunderbird/lib/mozilla-1.5b/res/loading-image.gif
+lib/thunderbird/lib/mozilla-1.5b/res/platform-forms.css
+lib/thunderbird/lib/mozilla-1.5b/res/quirk.css
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/article.gif
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/document.gif
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-1.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-2.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-3.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-4.css
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-4.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-5.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-6.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-7.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/dom-test-8.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/folder-closed.gif
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/folder-open.gif
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/ignore-test.xul
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/loading.gif
+lib/thunderbird/lib/mozilla-1.5b/res/rdf/xpidl-test-1.xul
+lib/thunderbird/lib/mozilla-1.5b/res/sample.unixpsfonts.properties
+lib/thunderbird/lib/mozilla-1.5b/res/samples/Anieyes.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/aform.css
+lib/thunderbird/lib/mozilla-1.5b/res/samples/beeptest.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/bform.css
+lib/thunderbird/lib/mozilla-1.5b/res/samples/bg.jpg
+lib/thunderbird/lib/mozilla-1.5b/res/samples/cform.css
+lib/thunderbird/lib/mozilla-1.5b/res/samples/checkboxTest.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/colorpicker.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/demoform.css
+lib/thunderbird/lib/mozilla-1.5b/res/samples/dexopenchrome.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/dexparamdialog.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/dexparamdialog.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/find.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/gear1.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/hidetoolicon.css
+lib/thunderbird/lib/mozilla-1.5b/res/samples/hidetoolicon.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/image_props.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/mozform.css
+lib/thunderbird/lib/mozilla-1.5b/res/samples/printsetup.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/raptor.jpg
+lib/thunderbird/lib/mozilla-1.5b/res/samples/rock_gra.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/sampleimages/bongo.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/sampleimages/down.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/sampleimages/left.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/sampleimages/right.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/sampleimages/up.gif
+lib/thunderbird/lib/mozilla-1.5b/res/samples/scrollbarTest1.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/scrollbarTest2.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/sliderTest1.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/soundtest.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/tab.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test.wav
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test0.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test1.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test10.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test11.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test12.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test13.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test14.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test15.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test16.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test2.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test3.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test4.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test5.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test6.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test7.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test8-1.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test8.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test8dom.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test8sca.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test8siz.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test8tab.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test9.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test9a.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test9b.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test_ed.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test_form.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test_gfx.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test_lbox.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test_pr.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/test_weight.html
+lib/thunderbird/lib/mozilla-1.5b/res/samples/toolbarTest1.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/treeTest1.css
+lib/thunderbird/lib/mozilla-1.5b/res/samples/treeTest1.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/widgets.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/xpmenu.xul
+lib/thunderbird/lib/mozilla-1.5b/res/samples/xulTest.css
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-column-after-active.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-column-after-hover.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-column-after.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-column-before-active.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-column-before-hover.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-column-before.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-row-after-active.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-row-after-hover.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-row-after.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-row-before-active.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-row-before-hover.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-add-row-before.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-remove-column-active.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-remove-column-hover.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-remove-column.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-remove-row-active.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-remove-row-hover.gif
+lib/thunderbird/lib/mozilla-1.5b/res/table-remove-row.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anim.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims00.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims01.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims02.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims03.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims04.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims05.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims06.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims07.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims08.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims09.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims10.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims11.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims12.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims13.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims14.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims15.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims16.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims17.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims18.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims19.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims20.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims21.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims22.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims23.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims24.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims25.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims26.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims27.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims28.gif
+lib/thunderbird/lib/mozilla-1.5b/res/throbber/anims29.gif
+lib/thunderbird/lib/mozilla-1.5b/res/ua.css
+lib/thunderbird/lib/mozilla-1.5b/res/unixcharset.properties
+lib/thunderbird/lib/mozilla-1.5b/res/viewer.properties
+lib/thunderbird/lib/mozilla-1.5b/res/viewsource.css
+lib/thunderbird/lib/mozilla-1.5b/run-mozilla.sh
+lib/thunderbird/lib/mozilla-1.5b/thunderbird-bin
+lib/thunderbird/lib/mozilla-1.5b/timebombgen
+lib/thunderbird/lib/mozilla-1.5b/xpcshell
+lib/thunderbird/lib/mozilla-1.5b/xpicleanup
+lib/thunderbird/lib/mozilla-1.5b/xpidl
+lib/thunderbird/lib/mozilla-1.5b/xpt_dump
+lib/thunderbird/lib/mozilla-1.5b/xpt_link
+lib/thunderbird/lib/pkgconfig/mozilla-gtkmozembed.pc
+lib/thunderbird/lib/pkgconfig/mozilla-js.pc
+lib/thunderbird/lib/pkgconfig/mozilla-nspr.pc
+lib/thunderbird/lib/pkgconfig/mozilla-nss.pc
+lib/thunderbird/lib/pkgconfig/mozilla-plugin.pc
+lib/thunderbird/lib/pkgconfig/mozilla-xpcom.pc
+lib/thunderbird/share/aclocal/nspr.m4
+lib/thunderbird/share/idl/mozilla-1.5b/MailNewsTypes2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/XPCIDispatch.idl
+lib/thunderbird/share/idl/mozilla-1.5b/domstubs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/gfxIFormats.idl
+lib/thunderbird/share/idl/mozilla-1.5b/gfxIImageFrame.idl
+lib/thunderbird/share/idl/mozilla-1.5b/gfxtypes.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgICache.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgIContainer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgIContainerObserver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgIDecoder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgIDecoderObserver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgILoad.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgILoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/imgIRequest.idl
+lib/thunderbird/share/idl/mozilla-1.5b/jsdIDebuggerService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/mozIJSSubScriptLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/mozIPersonalDictionary.idl
+lib/thunderbird/share/idl/mozilla-1.5b/mozISpellCheckingEngine.idl
+lib/thunderbird/share/idl/mozilla-1.5b/mozISpellI18NManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/mozISpellI18NUtil.idl
+lib/thunderbird/share/idl/mozilla-1.5b/mozITXTToHTMLConv.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsCDefaultURIFixup.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsCDocShell.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsCExternalHandlerService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsCURILoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsCWebBrowser.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsCWebBrowserPersist.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIASN1Object.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIASN1PrintableItem.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIASN1Sequence.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIASN1Tree.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbAddressCollecter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbAutoCompleteSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbBase.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbBooleanExpression.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbCard.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbDirFactory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbDirFactoryService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbDirectory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbDirectoryQuery.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbDirectoryQueryProxy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbDirectorySearch.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbLDAPAutoCompFormatter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbLDAPReplicationData.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbLDAPReplicationQuery.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbLDAPReplicationService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbMDBCard.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbMDBDirectory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbUpgrader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAbView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAboutModule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessNode.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibilityService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessible.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleAction.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleCaret.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleEditableText.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleHyperLink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleHyperText.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleProvider.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleRetrieval.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleSelectable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleTable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleText.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAccessibleValue.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAddbookUrl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAddrBookSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAddrDBAnnouncer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAddrDBListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAddrDatabase.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAddressBook.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAggregatePrincipal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAppShell.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAppShellService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIArray.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAsyncInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAsyncOutputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAsyncStreamCopier.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAtom.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAtomService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAuthPrompt.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAuthPromptWrapper.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAutoCompleteListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAutoCompleteResults.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIAutoCompleteSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBadCertListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBaseWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBidiKeyboard.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBinaryInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBinaryOutputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBookmarksService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBoxLayoutManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBoxPaintManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBrowserBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBrowserHistory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBrowserInstance.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBufEntropyCollector.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIBufferedStreams.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIByteArrayInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIByteRangeRequest.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICMSDecoder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICMSEncoder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICMSMessage.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICMSMessageErrors.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICMSSecureMessage.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICRLInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICRLManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICache.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICacheEntryDescriptor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICacheListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICacheService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICacheSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICacheVisitor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICachingChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICategoryManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICertPickDialogs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICertSelect.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICertTree.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICertificateDialogs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICertificatePrincipal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICharsetConverterManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICharsetResolver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIChromeEventHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIChromeRegistry.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICipherInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICiter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClassInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClassicPluginFactory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClientAuthDialogs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClipboard.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClipboardCommands.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClipboardDragDropHookList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClipboardDragDropHooks.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClipboardHelper.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIClipboardOwner.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICloseAllWindows.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICmdLineHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICmdLineService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICodebasePrincipal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICollection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIComm4xProfile.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICommandHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICommandManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICommandParams.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIComponentLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIComponentLoaderManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIComponentManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIComponentManagerObsolete.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIComponentRegistrar.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIConsoleListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIConsoleMessage.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIConsoleService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContentFilter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContentHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContentPolicy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContentViewer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContentViewerContainer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContentViewerEdit.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContentViewerFile.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContextMenuListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIContextMenuListener2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIController.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIControllerCommand.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIControllerCommandTable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIControllerContext.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIControllers.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICookieService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICookieStorage.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICopyMessageListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICopyMsgStreamListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICryptoFIPSInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsICurrentCharsetListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDBChangeAnnouncer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDBChangeListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDBFolderInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDNSListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDNSService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOM3Document.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOM3DocumentEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOM3EventTarget.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOM3Node.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMAbstractView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMAttr.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMBarProp.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCDATASection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCRMFObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSS2Properties.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSCharsetRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSFontFaceRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSImportRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSMediaRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSPageRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSPrimitiveValue.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSRuleList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSStyleDeclaration.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSStyleRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSStyleSheet.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSUnknownRule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSValue.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCSSValueList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCharacterData.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMChromeWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMComment.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCounter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCrypto.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCryptoDialogs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMCustomEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDOMConfiguration.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDOMException.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDOMImplementation.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentCSS.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentFragment.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentRange.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentStyle.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentTraversal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentType.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMDocumentXBL.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMElementCSSInlineStyle.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMEntity.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMEntityReference.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMEventGroup.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMEventListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMEventTarget.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLAnchorElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLAppletElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLAreaElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLBRElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLBaseElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLBaseFontElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLBodyElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLButtonElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLCollection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLDListElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLDirectoryElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLDivElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLEmbedElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLFieldSetElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLFontElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLFormElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLFrameElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLFrameSetElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLHRElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLHeadElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLHeadingElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLHtmlElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLIFrameElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLImageElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLInputElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLIsIndexElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLLIElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLLabelElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLLegendElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLLinkElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLMapElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLMenuElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLMetaElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLModElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLOListElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLObjectElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLOptGroupElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLOptionElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLOptionsCollection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLParagraphElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLParamElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLPreElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLQuoteElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLScriptElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLSelectElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLStyleElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTableCaptionElem.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTableCellElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTableColElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTableElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTableRowElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTableSectionElem.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTextAreaElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLTitleElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHTMLUListElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMHistory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMJSWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMKeyEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMLinkStyle.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMLocation.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMMediaList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMMimeType.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMMimeTypeArray.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMMouseEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMMutationEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLAnchorElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLAreaElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLButtonElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLFormControlList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLFormElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLFrameElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLHRElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLImageElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLInputElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLOptionCollectn.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLOptionElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLSelectElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHTMLTextAreaElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSHistory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSLocation.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSRange.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSUIEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNSXBLFormControl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNamedNodeMap.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNavigator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNode.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNodeFilter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNodeIterator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNodeList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMNotation.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMPkcs11.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMPlugin.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMPluginArray.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMPopupBlockedEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMProcessingInstruction.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMRGBColor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMRange.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMRangeException.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMRect.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMScreen.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMStyleSheet.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMStyleSheetList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMText.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMTreeWalker.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMUIEvent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMUserDataHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMViewCSS.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMWindowCollection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMWindowInternal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXMLDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXPathEvaluator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXPathException.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXPathExpression.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXPathNSResolver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXPathNamespace.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXPathResult.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULButtonElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULCheckboxElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULCommandDispatcher.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULControlElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULDescriptionElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULImageElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULLabelElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULLabeledControlEl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULMenuListElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULMultSelectCntrlEl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULPopupElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULSelectCntrlEl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULSelectCntrlItemEl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDOMXULTextboxElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDataChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDebug.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDialogParamBlock.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDirIndex.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDirIndexListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDirectoryListing.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDirectoryService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocCharset.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocShell.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocShellHistory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocShellLoadInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocShellTreeItem.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocShellTreeNode.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocShellTreeOwner.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocumentCharsetInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocumentLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocumentLoaderFactory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDocumentStateListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDownload.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDownloadManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDownloadProgressListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDownloader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDragDropHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDragService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIDragSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditActionListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditingSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorDocShell.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorIMESupport.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorLogging.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorMailSupport.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorObserver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorSpellCheck.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEditorStyleSheets.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEmbeddingSiteWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEmbeddingSiteWindow2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEncodedChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEncryptedSMIMEURIsSrvc.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEntityConverter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEntropyCollector.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEnumerator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIErrorService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEvaluateStringProxy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEventHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEventQueue.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIEventQueueService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIException.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIExceptionService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIExpatSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIExternalHelperAppService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIExternalProtocolHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIExternalProtocolService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFIXptr.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFTPChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFactory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFastLoadFileControl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFastLoadService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFile.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFileChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFilePicker.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFileProtocolHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFileSpec.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFileStreams.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFileURL.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFileUtilities.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFileView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFind.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFindService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFolder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFolderListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFontCatalogService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFontEnumerator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFontList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFontPackageHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFontPackageProxy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFontPackageService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFormatConverter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFreeType2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIFullScreen.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIGenKeypairInfoDlg.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIGlobalHistory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIGraphics.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHTMLAbsPosEditor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHTMLEditor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHTMLInlineTableEditor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHTMLObjectResizeListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHTMLObjectResizer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHTTPHeaderListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHash.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHelperAppLauncherDialog.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHistoryEntry.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpAuthManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpAuthenticator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpChannelInternal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpEventSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpHeaderVisitor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpNotify.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIHttpProtocolHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIIDNService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIIFrameBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIIOService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImageDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImageLoadingContent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapFlagAndUidState.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapHeaderXferInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapIncomingServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapMailFolderSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapMessageSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapMockChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapProtocol.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapServerSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImapUrl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportABDescriptor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportAddressBooks.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportFieldMap.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportGeneric.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportMail.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportMailboxDescriptor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportMimeEncode.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportModule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIImportSettings.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIIncomingServerListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIInputStreamChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIInputStreamPump.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIInputStreamTee.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIInterfaceInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIInterfaceInfoManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIInterfaceRequestor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJAR.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJARChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJARProtocolHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJARURI.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJRILiveConnectPIPeer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJRILiveConnectPlugin.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJSConsoleService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJSContextStack.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIJSRuntimeService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIKeyedStreamGenerator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIKeygenThread.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPAutoCompFormatter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPAutoCompleteSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPBERValue.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPConnection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPErrors.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPMessage.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPMessageListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPOperation.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPPrefsService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILDAPURL.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILanguageAtom.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILanguageAtomService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILineInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIListBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILoadGroup.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILocalFile.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILocalMailIncomingServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILocale.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsILocaleService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMIMEHeaderParam.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMIMEInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMIMEInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMIMEService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMailboxService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMailboxSpec.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMailboxUrl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMarkupDocumentViewer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMemory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMenuBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMenuRollup.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMessenger.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMessengerMigrator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMessengerOSIntegration.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMessengerWindowService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMimeEmitter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMimeHeaders.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMimeMiscStatus.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMimeStreamConverter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIModifyableXPointer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIModule.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMovemailIncomingServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMovemailService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgAccount.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgAccountManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgAttachment.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgBiffManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgCompFields.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgCompUtils.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgCompose.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgComposeParams.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgComposeProgressParams.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgComposeSecure.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgComposeService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgCopyService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgCopyServiceListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgDBView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgDatabase.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgDraft.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFilter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFilterHitNotify.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFilterList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFilterPlugin.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFilterService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFolder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFolderCache.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFolderCacheElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgFolderCompactor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgGroupRecord.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgHdr.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgHeaderParser.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgHost.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgIdentity.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgImapMailFolder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgIncomingServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgLocalMailFolder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgLogonRedirector.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgMailNewsUrl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgMailSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgMailView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgMailViewList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgMdnGenerator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgMessageService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgNewsFolder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgOfflineImapOperation.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgOfflineManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgOfflineNewsState.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgParseMailMsgState.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgPrintEngine.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgProgress.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgProtocolInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgPurgeService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgQuote.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgRDFDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgRecipientArray.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSMIMECompFields.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSMIMEHeaderSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchAdapter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchNotify.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchScopeTerm.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchTerm.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchValidityManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchValidityTable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSearchValue.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSend.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSendLater.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSendLaterListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSendListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSendReport.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgSignature.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgStatusFeedback.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgStringService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgThread.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgVCard.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMsgWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMultiPartChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIMultiplexInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINNTPArticleList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINNTPNewsgroupList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINNTPNewsgroupPost.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINNTPProtocol.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINSSCertCache.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINativeAppSupport.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINativeComponentLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINativeScrollbar.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINativeUConvService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINetModRegEntry.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINetModuleMgr.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINetNotify.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINewsDatabase.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINewsDownloadDialogArgs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINntpIncomingServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINntpService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINntpUrl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINoIncomingServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsINoneService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIOCSPResponder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIObjectInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIObjectOutputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIObserver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIObserverService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIOutputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPK11Token.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPK11TokenDB.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPKCS11Module.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPKCS11ModuleDB.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPKCS11Slot.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPKIParamBlock.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPassword.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPasswordManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPasswordManagerInternal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPasswordSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPersistentProperties2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPhonetic.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPipe.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPlaintextEditor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPlugin.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginHost.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginInstance.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginInstanceOwner.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginInstancePeer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginInstancePeer2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginManager2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginStreamInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginStreamListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginTagInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPluginTagInfo2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPop3IncomingServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPop3Service.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPop3Sink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPop3URL.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPopupBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPopupWindowManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPref.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrefBranch.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrefBranchInternal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrefLocalizedString.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrefMigration.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrefMigrationProgress.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrefService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrefetchService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrincipal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintOptions.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintProgress.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintProgressParams.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintSession.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintSettings.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintSettingsService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintStatusFeedback.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintingPrompt.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrintingPromptService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProcess.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProfile.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProfileChangeStatus.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProfileInternal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProfileStartupListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProgrammingLanguage.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProgressDialog.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProgressEventSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPrompt.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPromptService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProperties.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIPropertyBag.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProtocolHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProtocolProxyService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProxiedProtocolHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProxy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProxyAutoConfig.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProxyCreateInstance.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProxyInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIProxyObjectManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFCompositeDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFContainer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFContainerUtils.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFDelegateFactory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFInMemoryDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFLiteral.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFNode.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFObserver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFPropagatableDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFPurgeableDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFRemoteDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFResource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFXMLParser.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFXMLSerializer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFXMLSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRDFXMLSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRecyclingAllocator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRefreshURI.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRegistry.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRelativeFilePref.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRequest.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRequestObserver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRequestObserverProxy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIResProtocolHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIResumableChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIResumableEntityID.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRollupListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIRunnable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISHContainer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISHEntry.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISHTransaction.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISHistory.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISHistoryInternal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISHistoryListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISMimeCert.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISMimeJSHelper.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISOCKS4SocketInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISOCKS4SocketProvider.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISOCKSSocketInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISOCKSSocketProvider.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISSLSocketControl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISSLSocketProvider.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISSLStatus.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISSLStatusProvider.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISaveAsCharset.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScreen.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScreenManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptContextOwner.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptError.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptEventHandler.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptEventManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptGlobalObjectOwner.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptLoaderObserver.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptSecurityManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptableDateFormat.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptableInputStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptableInterfaces.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptablePlugin.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptableRegion.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScriptableUConv.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScrollBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIScrollable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISearchContext.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISecretDecoderRing.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISecureBrowserUI.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISecurityCheckedComponent.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISecurityEventSink.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISecurityPref.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISecurityWarningDialogs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISeekableStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISelectElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISelection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISelectionController.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISelectionDisplay.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISelectionImageService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISelectionListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISelectionPrivate.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISemanticUnitScanner.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISerializable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIServiceManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISidebar.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISignatureVerifier.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISignonViewer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISimpleEnumerator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISimpleStreamListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISmtpServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISmtpService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISmtpUrl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISocketProvider.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISocketProviderService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISocketTransport.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISocketTransportService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISound.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISpamSettings.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStandardURL.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStorageStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamBufferAccess.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamConverter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamConverterService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamListenerProxy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamListenerTee.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStreamTransportService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStringBundle.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStringBundleOverride.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStringEnumerator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStringService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIStringStream.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISubscribableServer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISupports.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISupportsArray.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISupportsIterators.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISupportsPrimitives.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsISyncLoadDOMService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITXTToHTMLConv.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITableEditor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITextAreaElement.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITextScroll.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITextServicesFilter.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITextToSubURI.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIThread.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIThreadPool.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITimeBomb.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITimeRecorder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITimelineService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITimer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITimerInternal.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITimerManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITimingService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITokenDialogs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITokenPasswordDialogs.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIToolkit.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITooltipListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITooltipTextProvider.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITraceRefcnt.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITransaction.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITransactionList.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITransactionListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITransactionManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITransferable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITransport.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITransportSecurityInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITreeBoxObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITreeContentView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITreeSelection.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsITreeView.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURI.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURIChecker.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURIContentListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURIFixup.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURILoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURIRefObject.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURL.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURLFetcher.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIURLParser.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUTF8ConverterService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUnicharStreamLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUnicodeNormalizer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUploadChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUrlListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUrlListenerManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUserCertPicker.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIUserInfo.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIVariant.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIViewSourceChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWalletEditor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWalletPreview.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWalletService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWeakReference.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowser.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowserChrome.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowserChromeFocus.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowserFind.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowserFocus.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowserPersist.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowserPrint.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebBrowserSetup.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebNavigation.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebPageDescriptor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebProgress.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWebProgressListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWindowCreator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWindowCreator2.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWindowDataSource.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWindowMediator.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWindowMediatorListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWindowWatcher.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWindowlessPlugInstPeer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIWyciwygChannel.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIX509Cert.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIX509CertDB.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIX509CertValidity.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPCScriptNotify.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPCScriptable.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPCSecurityManager.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPConnect.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPIDialogService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPINotifier.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPIProgressDialog.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPTLoader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXPointer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXRemoteClient.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXRemoteService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXSLTException.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXSLTProcessor.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXSLTProcessorObsolete.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXULBrowserWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXULBuilderListener.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXULSortService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXULTemplateBuilder.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIXULWindow.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsIZipReader.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsMsgFilterCore.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsMsgSearchCore.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIAccessNode.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIAccessible.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIAccessibleDocument.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPICertNotification.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPICommandUpdater.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIEditorTransaction.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIPluginHost.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIPluginInstancePeer.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIPromptService.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIWindowWatcher.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIXPIProxy.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsPIXPIStubHook.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nspluginroot.idl
+lib/thunderbird/share/idl/mozilla-1.5b/nsrootidl.idl
+lib/thunderbird/share/idl/mozilla-1.5b/xpccomponents.idl
+lib/thunderbird/share/idl/mozilla-1.5b/xpcexception.idl
+lib/thunderbird/share/idl/mozilla-1.5b/xpcjsid.idl
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/communicator-region/wallet || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/editor-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/global-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/messenger-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/navigator-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/alerts || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/bookmarks || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/brand || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/directory || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/pref || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/profile || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/related || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/search || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/sidebar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/taskbar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/xpinstall || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/editor/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/arrow || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/checkbox || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/console || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/filepicker || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/menu || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/progressmeter || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/radio || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/scrollbar/slider || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/splitter || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/toolbar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/tree || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/addressbook/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/messengercompose || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/smime/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/mozapps/downloads || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/mozapps/pref || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/navigator/btn1 || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/navigator/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/alerts || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/directory || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/downloadmanager || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/history || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/pref || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/profile || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/related || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/search || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/sidebar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/timebomb || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/wallet || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/xml || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/xpinstall || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/editor-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/editor/images || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/help || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/mozldap || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/navigator || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/navigator-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/navigator-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/necko || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/wallet || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/xbl-marquee || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/content/embed || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/locale/en-US/embed || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/skin/classic/embed || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/directory || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/dom || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/downloadmanager || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/history || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/layout || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/pref || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/profile || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/search || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/security || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/sidebar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/timebomb || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/wallet || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/xml || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/xpinstall || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/editor || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/global || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger-mdn || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger-smime || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger/addressbook || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger/messengercompose || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/mozapps/downloads || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/mozldap || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/navigator || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/necko || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/pipnss || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/pippki || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/wallet || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US/communicator-platform/pref || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US/global-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US/navigator-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US/communicator-platform/pref || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US/global-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US/navigator-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/communicator-platform/pref || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/global-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/messenger-mapi || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/navigator-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/editor/images || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-mdn || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-smime || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-views || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger/addressbook || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger/messengercompose || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/alerts || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/bookmarks || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/brand || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/directory || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/profile || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/related || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/search || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/sidebar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/taskbar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/toolbar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/xpinstall || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/editor/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/arrow || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/button || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/checkbox || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/console || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/filepicker || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/menu || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/menulist || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/progressmeter || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/radio || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/scrollbar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/splitter || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/toolbar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/tree || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/addressbook/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/messengercompose/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/smime/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/navigator/btn1 || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/navigator/icons || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/navigator/toolbar || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/pipnss/content/pipnss || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/pippki/content/pippki || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/communicator || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global-platform || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global-region || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global/bindings || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global/widgets || true
+@exec /bin/mkdir -p %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/mozapps/downloads || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/mozapps/downloads || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global/widgets || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global/bindings || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/communicator || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/pippki/content/pippki || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/pipnss/content/pipnss || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/navigator/toolbar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/navigator/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/navigator/btn1 || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/smime/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/messengercompose/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/addressbook/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/tree || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/toolbar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/splitter || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/scrollbar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/radio || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/progressmeter || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/menulist || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/menu || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/filepicker || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/console || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/checkbox || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/button || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global/arrow || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/editor/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/xpinstall || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/toolbar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/taskbar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/sidebar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/search || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/related || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/profile || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/directory || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/brand || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/bookmarks || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator/alerts || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger/messengercompose || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger/addressbook || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-views || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-smime || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger-mdn || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/editor/images || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/navigator-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/messenger-mapi || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/global-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/communicator-platform/pref || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US/navigator-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US/global-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US/communicator-platform/pref || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US/navigator-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US/global-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US/communicator-platform/pref || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/wallet || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/pippki || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/pipnss || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/necko || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/navigator || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/mozldap || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/mozapps/downloads || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger/messengercompose || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger/addressbook || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger-smime || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger-mdn || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/global || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/editor || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/xpinstall || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/xml || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/wallet || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/timebomb || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/sidebar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/security || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/search || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/profile || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/pref || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/layout || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/history || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/downloadmanager || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/dom || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator/directory || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/skin/classic/embed || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/locale/en-US/embed || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/content/embed || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/xbl-marquee || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/wallet || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/necko || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/navigator-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/navigator-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/navigator || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/mozldap || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/help || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/editor/images || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/editor-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/xpinstall || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/xml || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/wallet || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/timebomb || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/sidebar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/search || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/related || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/profile || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/pref || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/history || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/downloadmanager || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/directory || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator/alerts || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator-platform || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/navigator/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/navigator/btn1 || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/mozapps/pref || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/mozapps/downloads || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/smime/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/messengercompose || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/addressbook/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/tree || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/toolbar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/splitter || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/scrollbar/slider || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/radio || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/progressmeter || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/menu || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/filepicker || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/console || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/checkbox || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/arrow || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/editor/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/xpinstall || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/taskbar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/sidebar || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/search || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/related || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/profile || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/pref || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/icons || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/directory || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/brand || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/bookmarks || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator/alerts || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/navigator-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/messenger-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/global-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/editor-region || true
+@unexec /bin/rmdir %D/lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/communicator-region/wallet || true
+@dirrm lib/thunderbird/share/idl/mozilla-1.5b
+@dirrm lib/thunderbird/share/idl
+@dirrm lib/thunderbird/share/aclocal
+@dirrm lib/thunderbird/share
+@dirrm lib/thunderbird/lib/pkgconfig
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/throbber
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/samples/sampleimages
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/samples
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/rdf
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/html
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/fonts
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/entityTables
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/dtd
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res/builtin
+@dirrm lib/thunderbird/lib/mozilla-1.5b/res
+@dirrm lib/thunderbird/lib/mozilla-1.5b/plugins
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/wallet
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/profile/chrome
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US/chrome
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/profile/US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/profile
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/pref
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/messenger/US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults/messenger
+@dirrm lib/thunderbird/lib/mozilla-1.5b/defaults
+@dirrm lib/thunderbird/lib/mozilla-1.5b/components/myspell
+@dirrm lib/thunderbird/lib/mozilla-1.5b/components
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/mozapps
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content/global
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit/content
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/toolkit
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/pippki/content
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/pippki
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/pipnss/content
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/pipnss
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/navigator
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/smime
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/messengercompose
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger/addressbook
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/messenger
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/global
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/editor
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern/communicator
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin/modern
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern/skin
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/modern
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/messenger
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content/editor
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/messenger/content
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/messenger
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/icons/default
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/icons
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US/communicator-platform
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale/en-US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-win/locale
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-win
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US/communicator-platform
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale/en-US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix/locale
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-unix
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US/communicator-platform
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale/en-US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac/locale
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-mac
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/mozapps
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/messenger
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US/communicator
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale/en-US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-US/locale
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/en-US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/skin/classic
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/skin
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/locale/en-US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/locale
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample/content
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/embed-sample
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/editor
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content/communicator
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/comm/content
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/comm
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/navigator
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/mozapps
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/smime
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger/addressbook
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/messenger
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global/scrollbar
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/global
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/editor
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic/communicator
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin/classic
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic/skin
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/classic
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US/communicator-region
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale/US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/US/locale
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome/US
+@dirrm lib/thunderbird/lib/mozilla-1.5b/chrome
+@dirrm lib/thunderbird/lib/mozilla-1.5b
+@dirrm lib/thunderbird/lib
+@dirrm lib/thunderbird/include/mozilla-1.5b/xultmpl
+@dirrm lib/thunderbird/include/mozilla-1.5b/xuldoc
+@dirrm lib/thunderbird/include/mozilla-1.5b/xulapp
+@dirrm lib/thunderbird/include/mozilla-1.5b/xul
+@dirrm lib/thunderbird/include/mozilla-1.5b/xremoteservice
+@dirrm lib/thunderbird/include/mozilla-1.5b/xprintutil
+@dirrm lib/thunderbird/include/mozilla-1.5b/xpinstall
+@dirrm lib/thunderbird/include/mozilla-1.5b/xpconnect
+@dirrm lib/thunderbird/include/mozilla-1.5b/xpcom_obsolete
+@dirrm lib/thunderbird/include/mozilla-1.5b/xpcom
+@dirrm lib/thunderbird/include/mozilla-1.5b/xlibrgb
+@dirrm lib/thunderbird/include/mozilla-1.5b/windowwatcher
+@dirrm lib/thunderbird/include/mozilla-1.5b/widget
+@dirrm lib/thunderbird/include/mozilla-1.5b/webshell
+@dirrm lib/thunderbird/include/mozilla-1.5b/webbrwsr
+@dirrm lib/thunderbird/include/mozilla-1.5b/webbrowserpersist
+@dirrm lib/thunderbird/include/mozilla-1.5b/walletviewers
+@dirrm lib/thunderbird/include/mozilla-1.5b/wallet
+@dirrm lib/thunderbird/include/mozilla-1.5b/view
+@dirrm lib/thunderbird/include/mozilla-1.5b/util
+@dirrm lib/thunderbird/include/mozilla-1.5b/uriloader
+@dirrm lib/thunderbird/include/mozilla-1.5b/unicharutil
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucvtw2
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucvtw
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucvlatin
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucvko
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucvja
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucvibm
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucvcn
+@dirrm lib/thunderbird/include/mozilla-1.5b/uconv
+@dirrm lib/thunderbird/include/mozilla-1.5b/ucnative
+@dirrm lib/thunderbird/include/mozilla-1.5b/txtsvc
+@dirrm lib/thunderbird/include/mozilla-1.5b/txmgr
+@dirrm lib/thunderbird/include/mozilla-1.5b/string
+@dirrm lib/thunderbird/include/mozilla-1.5b/spellchecker
+@dirrm lib/thunderbird/include/mozilla-1.5b/sidebar
+@dirrm lib/thunderbird/include/mozilla-1.5b/shistory
+@dirrm lib/thunderbird/include/mozilla-1.5b/rdfutil
+@dirrm lib/thunderbird/include/mozilla-1.5b/rdf
+@dirrm lib/thunderbird/include/mozilla-1.5b/progressDlg
+@dirrm lib/thunderbird/include/mozilla-1.5b/profile
+@dirrm lib/thunderbird/include/mozilla-1.5b/profdirserviceprovider
+@dirrm lib/thunderbird/include/mozilla-1.5b/prefmigr
+@dirrm lib/thunderbird/include/mozilla-1.5b/prefetch
+@dirrm lib/thunderbird/include/mozilla-1.5b/pref
+@dirrm lib/thunderbird/include/mozilla-1.5b/plugin
+@dirrm lib/thunderbird/include/mozilla-1.5b/pippki
+@dirrm lib/thunderbird/include/mozilla-1.5b/pipnss
+@dirrm lib/thunderbird/include/mozilla-1.5b/pipboot
+@dirrm lib/thunderbird/include/mozilla-1.5b/nspr/private
+@dirrm lib/thunderbird/include/mozilla-1.5b/nspr/obsolete
+@dirrm lib/thunderbird/include/mozilla-1.5b/nspr/md
+@dirrm lib/thunderbird/include/mozilla-1.5b/nspr
+@dirrm lib/thunderbird/include/mozilla-1.5b/nkcache
+@dirrm lib/thunderbird/include/mozilla-1.5b/necko2
+@dirrm lib/thunderbird/include/mozilla-1.5b/necko
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgsmime
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgnews
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgmdn
+@dirrm lib/thunderbird/include/mozilla-1.5b/msglocal
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgimap
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgdb
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgcompose
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgbaseutil
+@dirrm lib/thunderbird/include/mozilla-1.5b/msgbase
+@dirrm lib/thunderbird/include/mozilla-1.5b/mozldap
+@dirrm lib/thunderbird/include/mozilla-1.5b/mork
+@dirrm lib/thunderbird/include/mozilla-1.5b/mimetype
+@dirrm lib/thunderbird/include/mozilla-1.5b/mimeemitter
+@dirrm lib/thunderbird/include/mozilla-1.5b/mime
+@dirrm lib/thunderbird/include/mozilla-1.5b/mailview
+@dirrm lib/thunderbird/include/mozilla-1.5b/mailnews
+@dirrm lib/thunderbird/include/mozilla-1.5b/lwbrk
+@dirrm lib/thunderbird/include/mozilla-1.5b/locale
+@dirrm lib/thunderbird/include/mozilla-1.5b/libreg
+@dirrm lib/thunderbird/include/mozilla-1.5b/ldap
+@dirrm lib/thunderbird/include/mozilla-1.5b/layout
+@dirrm lib/thunderbird/include/mozilla-1.5b/jsurl
+@dirrm lib/thunderbird/include/mozilla-1.5b/jsdebug
+@dirrm lib/thunderbird/include/mozilla-1.5b/jsconsole
+@dirrm lib/thunderbird/include/mozilla-1.5b/js
+@dirrm lib/thunderbird/include/mozilla-1.5b/java
+@dirrm lib/thunderbird/include/mozilla-1.5b/jar
+@dirrm lib/thunderbird/include/mozilla-1.5b/intl
+@dirrm lib/thunderbird/include/mozilla-1.5b/import
+@dirrm lib/thunderbird/include/mozilla-1.5b/impText
+@dirrm lib/thunderbird/include/mozilla-1.5b/impComm4xMail
+@dirrm lib/thunderbird/include/mozilla-1.5b/imglib2
+@dirrm lib/thunderbird/include/mozilla-1.5b/htmlparser
+@dirrm lib/thunderbird/include/mozilla-1.5b/history
+@dirrm lib/thunderbird/include/mozilla-1.5b/helperAppDlg
+@dirrm lib/thunderbird/include/mozilla-1.5b/gtkxtbin
+@dirrm lib/thunderbird/include/mozilla-1.5b/gtkembedmoz
+@dirrm lib/thunderbird/include/mozilla-1.5b/gfx
+@dirrm lib/thunderbird/include/mozilla-1.5b/find
+@dirrm lib/thunderbird/include/mozilla-1.5b/filepicker
+@dirrm lib/thunderbird/include/mozilla-1.5b/exthandler
+@dirrm lib/thunderbird/include/mozilla-1.5b/expat
+@dirrm lib/thunderbird/include/mozilla-1.5b/embedstring
+@dirrm lib/thunderbird/include/mozilla-1.5b/embedcomponents
+@dirrm lib/thunderbird/include/mozilla-1.5b/embed_base
+@dirrm lib/thunderbird/include/mozilla-1.5b/editor
+@dirrm lib/thunderbird/include/mozilla-1.5b/downloadmanager
+@dirrm lib/thunderbird/include/mozilla-1.5b/dom
+@dirrm lib/thunderbird/include/mozilla-1.5b/docshell
+@dirrm lib/thunderbird/include/mozilla-1.5b/dbm
+@dirrm lib/thunderbird/include/mozilla-1.5b/content
+@dirrm lib/thunderbird/include/mozilla-1.5b/composer
+@dirrm lib/thunderbird/include/mozilla-1.5b/commandhandler
+@dirrm lib/thunderbird/include/mozilla-1.5b/chrome
+@dirrm lib/thunderbird/include/mozilla-1.5b/chardet
+@dirrm lib/thunderbird/include/mozilla-1.5b/caps
+@dirrm lib/thunderbird/include/mozilla-1.5b/browser
+@dirrm lib/thunderbird/include/mozilla-1.5b/bayesflt
+@dirrm lib/thunderbird/include/mozilla-1.5b/appshell
+@dirrm lib/thunderbird/include/mozilla-1.5b/appcomps
+@dirrm lib/thunderbird/include/mozilla-1.5b/addrbook
+@dirrm lib/thunderbird/include/mozilla-1.5b/accessibility
+@dirrm lib/thunderbird/include/mozilla-1.5b
+@dirrm lib/thunderbird/include
+@dirrm lib/thunderbird/bin
+@dirrm lib/thunderbird