Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 11 Apr 2003 17:58:55 -0500 (CDT)
From:      "Scot W. Hetzel" <hetzels@westbend.net>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        simond@irrelevant.org
Subject:   ports/50840: mail/squirrelmail - Port Docs in wrong location
Message-ID:  <200304112258.h3BMwtt7034715@WBIw009.westbend.net>
Resent-Message-ID: <200304112300.h3BN0Rlw056832@freefall.freebsd.org>

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

>Number:         50840
>Category:       ports
>Synopsis:       mail/squirrelmail - Port Docs in wrong location
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Apr 11 16:00:27 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     Scot W. Hetzel
>Release:        FreeBSD 4.8-RC i386
>Organization:
West Bend Internet
>Environment:
System: FreeBSD WBIw009.westbend.net 4.8-RC FreeBSD 4.8-RC #1: Tue Apr 1 01:01:19 CST 2003 root@WBIw009.westbend.net:/usr/obj/usr/src/src4/sys/GENERIC-SMP i386


>Description:
	Installation of mail/squirrelmail places the ports documentation
	in PREFIX/squirrelmail, and you are not able to not install the
	documentation with NOPORTDOCS.

>How-To-Repeat:
	Install the port, and see that all of the documentation is in
	PREFIX/squirrelmail directory.

>Fix:
	The attached fix moves the documentation to PREFIX/share/doc/squirrelmail
	and makes it so that the documentation won't be installed when NOPORTDOCS
	is defined.

	I also moved the location of squirrelmail from PREFIX/squirrelmail to
	PREFIX/www/squirrelmail.  This way it doesn't clutterup PREFIX with
	another directory.

Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/mail/squirrelmail/Makefile,v
retrieving revision 1.11
diff -u -r1.11 Makefile
--- Makefile	5 Apr 2003 01:54:19 -0000	1.11
+++ Makefile	11 Apr 2003 22:34:12 -0000
@@ -23,14 +23,32 @@
 USE_BZIP2=	yes
 NO_BUILD=	yes
 
+PLIST_SUB+=	PORTVERSION=${PORTVERSION}
+
+DOCS=	AUTHORS COPYING ChangeLog INSTALL README ReleaseNotes-${PORTVERSION} UPGRADE
+
+post-extract:
+	@${MV} ${WRKSRC}/ReleaseNotes ${WRKSRC}/ReleaseNotes-${PORTVERSION}
+
 pre-install:
 	@${ECHO} "Your umask should be lax while installing this. Like, 022 or something."
 	@${SH} pkg-install ${PKGNAME} PRE-INSTALL
 
 do-install:
-	${MKDIR} ${PREFIX}/squirrelmail
-	${CP} -R ${WRKSRC}/* ${PREFIX}/squirrelmail
-	${CHOWN} -R www:www ${PREFIX}/squirrelmail/data
+	${MKDIR} -p ${PREFIX}/www/squirrelmail
+	${CP} -R ${WRKSRC}/* ${PREFIX}/www/squirrelmail
+.for file in ${DOCS}
+	@${RM} ${PREFIX}/www/squirrelmail/${file}
+.endfor
+	@${RM} -rf ${PREFIX}/www/squirrelmail/doc
+	${CHOWN} -R www:www ${PREFIX}/www/squirrelmail/data
+.if !defined(NOPORTDOCS)
+	@${MKDIR} ${DOCSDIR}
+.for file in ${DOCS}
+	@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
+.endfor
+	${CP} -R ${WRKSRC}/doc/* ${DOCSDIR}
+.endif
 
 post-install:
 	@${SED} -e 's,%%PREFIX%%,${PREFIX},g' ${PKGMESSAGE}
Index: pkg-message
===================================================================
RCS file: /home/ncvs/ports/mail/squirrelmail/pkg-message,v
retrieving revision 1.5
diff -u -r1.5 pkg-message
--- pkg-message	16 Sep 2002 06:23:50 -0000	1.5
+++ pkg-message	11 Apr 2003 21:55:46 -0000
@@ -1,8 +1,8 @@
 
 You now need to add an alias to apache's httpd.conf pointing to
-%%PREFIX%%/squirrelmail/ in order to access SquirrelMail from your
-web browser, or create a VirtualHost with DocumentRoot set to that
-directory.
+%%PREFIX%%/www/squirrelmail/ in order to access SquirrelMail from
+your web browser, or create a VirtualHost with DocumentRoot set
+to that directory.
 
 For SquirrelMail to work properly you will need to make sure the
 following option is set in your php.ini file:
@@ -13,6 +13,6 @@
 session.auto_start = 1
 
 In order to do your administrative configuration you need to 
-cd %%PREFIX%%/squirrelmail && ./configure
+cd %%PREFIX%%/www/squirrelmail && ./configure
 SquirrelMail will not work until this has been done.
 
Index: pkg-plist
===================================================================
RCS file: /home/ncvs/ports/mail/squirrelmail/pkg-plist,v
retrieving revision 1.9
diff -u -r1.9 pkg-plist
--- pkg-plist	5 Apr 2003 01:54:19 -0000	1.9
+++ pkg-plist	11 Apr 2003 22:30:38 -0000
@@ -1,758 +1,758 @@
-squirrelmail/AUTHORS
-squirrelmail/COPYING
-squirrelmail/ChangeLog
-squirrelmail/INSTALL
-squirrelmail/README
-squirrelmail/ReleaseNotes
-squirrelmail/UPGRADE
-squirrelmail/class/deliver/Deliver.class.php
-squirrelmail/class/deliver/Deliver_IMAP.class.php
-squirrelmail/class/deliver/Deliver_SMTP.class.php
-squirrelmail/class/deliver/Deliver_SendMail.class.php
-squirrelmail/class/deliver/index.php
-squirrelmail/class/helper/VCard.class.php
-squirrelmail/class/html.class.php
-squirrelmail/class/index.php
-squirrelmail/class/mime.class.php
-squirrelmail/class/mime/AddressStructure.class.php
-squirrelmail/class/mime/ContentType.class.php
-squirrelmail/class/mime/Disposition.class.php
-squirrelmail/class/mime/Language.class.php
-squirrelmail/class/mime/Message.class.php
-squirrelmail/class/mime/MessageHeader.class.php
-squirrelmail/class/mime/Rfc822Header.class.php
-squirrelmail/class/mime/SMimeMessage.class.php
-squirrelmail/class/mime/index.php
-squirrelmail/config/conf.pl
-squirrelmail/config/config_default.php
-squirrelmail/config/config_local.php
-squirrelmail/config/index.php
-squirrelmail/configure
-squirrelmail/contrib/RPM/config.php.redhat
-squirrelmail/contrib/RPM/squirrelmail.conf
-squirrelmail/contrib/RPM/squirrelmail.cron
-squirrelmail/contrib/RPM/squirrelmail.spec
-squirrelmail/data/.htaccess
-squirrelmail/data/default_pref
-squirrelmail/data/index.php
-squirrelmail/doc/README.russian_apache
-squirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.0.txt
-squirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.1.txt
-squirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.2.txt
-squirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.3.txt
-squirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.4.txt
-squirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.5
-squirrelmail/doc/ReleaseNotes/1.2/Notes-1.2.6.txt
-squirrelmail/doc/ReleaseNotes/1.3/Notes-1.3.0.txt
-squirrelmail/doc/ReleaseNotes/1.3/Notes-1.3.1.txt
-squirrelmail/doc/ReleaseNotes/1.3/Notes-1.3.2.txt
-squirrelmail/doc/addressbook.txt
-squirrelmail/doc/authentication.txt
-squirrelmail/doc/compose.txt
-squirrelmail/doc/db-backend.txt
-squirrelmail/doc/ie_ssl.txt
-squirrelmail/doc/index.html
-squirrelmail/doc/mime.txt
-squirrelmail/doc/plugin.txt
-squirrelmail/doc/rfc_documents.txt
-squirrelmail/doc/themes.txt
-squirrelmail/doc/translating.txt
-squirrelmail/doc/translating_help.txt
-squirrelmail/doc/tree.txt
-squirrelmail/functions/abook_database.php
-squirrelmail/functions/abook_global_file.php
-squirrelmail/functions/abook_ldap_server.php
-squirrelmail/functions/abook_local_file.php
-squirrelmail/functions/addressbook.php
-squirrelmail/functions/attachment_common.php
-squirrelmail/functions/auth.php
-squirrelmail/functions/constants.php
-squirrelmail/functions/date.php
-squirrelmail/functions/db_prefs.php
-squirrelmail/functions/display_messages.php
-squirrelmail/functions/file_prefs.php
-squirrelmail/functions/gettext.php
-squirrelmail/functions/global.php
-squirrelmail/functions/html.php
-squirrelmail/functions/i18n.php
-squirrelmail/functions/imap.php
-squirrelmail/functions/imap_general.php
-squirrelmail/functions/imap_mailbox.php
-squirrelmail/functions/imap_messages.php
-squirrelmail/functions/imap_parse.php
-squirrelmail/functions/imap_search.php
-squirrelmail/functions/imap_utf7_local.php
-squirrelmail/functions/index.php
-squirrelmail/functions/mailbox_display.php
-squirrelmail/functions/mime.php
-squirrelmail/functions/options.php
-squirrelmail/functions/page_header.php
-squirrelmail/functions/plugin.php
-squirrelmail/functions/prefs.php
-squirrelmail/functions/strings.php
-squirrelmail/functions/tree.php
-squirrelmail/functions/url_parser.php
-squirrelmail/help/bg_BG/FAQ.hlp
-squirrelmail/help/bg_BG/addresses.hlp
-squirrelmail/help/bg_BG/basic.hlp
-squirrelmail/help/bg_BG/compose.hlp
-squirrelmail/help/bg_BG/folders.hlp
-squirrelmail/help/bg_BG/main_folder.hlp
-squirrelmail/help/bg_BG/options.hlp
-squirrelmail/help/bg_BG/read_mail.hlp
-squirrelmail/help/bg_BG/search.hlp
-squirrelmail/help/ca_ES/FAQ.hlp
-squirrelmail/help/ca_ES/addresses.hlp
-squirrelmail/help/ca_ES/basic.hlp
-squirrelmail/help/ca_ES/compose.hlp
-squirrelmail/help/ca_ES/folders.hlp
-squirrelmail/help/ca_ES/main_folder.hlp
-squirrelmail/help/ca_ES/options.hlp
-squirrelmail/help/ca_ES/read_mail.hlp
-squirrelmail/help/ca_ES/search.hlp
-squirrelmail/help/cs_CZ/FAQ.hlp
-squirrelmail/help/cs_CZ/addresses.hlp
-squirrelmail/help/cs_CZ/basic.hlp
-squirrelmail/help/cs_CZ/compose.hlp
-squirrelmail/help/cs_CZ/folders.hlp
-squirrelmail/help/cs_CZ/main_folder.hlp
-squirrelmail/help/cs_CZ/options.hlp
-squirrelmail/help/cs_CZ/read_mail.hlp
-squirrelmail/help/cs_CZ/search.hlp
-squirrelmail/help/da_DK/FAQ.hlp
-squirrelmail/help/da_DK/addresses.hlp
-squirrelmail/help/da_DK/basic.hlp
-squirrelmail/help/da_DK/compose.hlp
-squirrelmail/help/da_DK/folders.hlp
-squirrelmail/help/da_DK/main_folder.hlp
-squirrelmail/help/da_DK/options.hlp
-squirrelmail/help/da_DK/read_mail.hlp
-squirrelmail/help/da_DK/search.hlp
-squirrelmail/help/de_DE/FAQ.hlp
-squirrelmail/help/de_DE/addresses.hlp
-squirrelmail/help/de_DE/basic.hlp
-squirrelmail/help/de_DE/compose.hlp
-squirrelmail/help/de_DE/folders.hlp
-squirrelmail/help/de_DE/main_folder.hlp
-squirrelmail/help/de_DE/options.hlp
-squirrelmail/help/de_DE/read_mail.hlp
-squirrelmail/help/de_DE/search.hlp
-squirrelmail/help/en_US/FAQ.hlp
-squirrelmail/help/en_US/addresses.hlp
-squirrelmail/help/en_US/basic.hlp
-squirrelmail/help/en_US/compose.hlp
-squirrelmail/help/en_US/folders.hlp
-squirrelmail/help/en_US/main_folder.hlp
-squirrelmail/help/en_US/options.hlp
-squirrelmail/help/en_US/read_mail.hlp
-squirrelmail/help/en_US/search.hlp
-squirrelmail/help/es_ES/FAQ.hlp
-squirrelmail/help/es_ES/addresses.hlp
-squirrelmail/help/es_ES/basic.hlp
-squirrelmail/help/es_ES/compose.hlp
-squirrelmail/help/es_ES/folders.hlp
-squirrelmail/help/es_ES/main_folder.hlp
-squirrelmail/help/es_ES/options.hlp
-squirrelmail/help/es_ES/read_mail.hlp
-squirrelmail/help/es_ES/search.hlp
-squirrelmail/help/fi_FI/FAQ.hlp
-squirrelmail/help/fi_FI/addresses.hlp
-squirrelmail/help/fi_FI/basic.hlp
-squirrelmail/help/fi_FI/compose.hlp
-squirrelmail/help/fi_FI/folders.hlp
-squirrelmail/help/fi_FI/main_folder.hlp
-squirrelmail/help/fi_FI/options.hlp
-squirrelmail/help/fi_FI/read_mail.hlp
-squirrelmail/help/fi_FI/search.hlp
-squirrelmail/help/fr_FR/FAQ.hlp
-squirrelmail/help/fr_FR/addresses.hlp
-squirrelmail/help/fr_FR/basic.hlp
-squirrelmail/help/fr_FR/compose.hlp
-squirrelmail/help/fr_FR/folders.hlp
-squirrelmail/help/fr_FR/main_folder.hlp
-squirrelmail/help/fr_FR/options.hlp
-squirrelmail/help/fr_FR/read_mail.hlp
-squirrelmail/help/fr_FR/search.hlp
-squirrelmail/help/id_ID/FAQ.hlp
-squirrelmail/help/id_ID/addresses.hlp
-squirrelmail/help/id_ID/basic.hlp
-squirrelmail/help/id_ID/compose.hlp
-squirrelmail/help/id_ID/folders.hlp
-squirrelmail/help/id_ID/main_folder.hlp
-squirrelmail/help/id_ID/options.hlp
-squirrelmail/help/id_ID/read_mail.hlp
-squirrelmail/help/id_ID/search.hlp
-squirrelmail/help/index.php
-squirrelmail/help/it_IT/FAQ.hlp
-squirrelmail/help/it_IT/addresses.hlp
-squirrelmail/help/it_IT/basic.hlp
-squirrelmail/help/it_IT/compose.hlp
-squirrelmail/help/it_IT/folders.hlp
-squirrelmail/help/it_IT/main_folder.hlp
-squirrelmail/help/it_IT/options.hlp
-squirrelmail/help/it_IT/read_mail.hlp
-squirrelmail/help/it_IT/search.hlp
-squirrelmail/help/ja_JP/FAQ.hlp
-squirrelmail/help/ja_JP/addresses.hlp
-squirrelmail/help/ja_JP/basic.hlp
-squirrelmail/help/ja_JP/compose.hlp
-squirrelmail/help/ja_JP/folders.hlp
-squirrelmail/help/ja_JP/main_folder.hlp
-squirrelmail/help/ja_JP/options.hlp
-squirrelmail/help/ja_JP/read_mail.hlp
-squirrelmail/help/ja_JP/search.hlp
-squirrelmail/help/ko_KR/FAQ.hlp
-squirrelmail/help/ko_KR/addresses.hlp
-squirrelmail/help/ko_KR/basic.hlp
-squirrelmail/help/ko_KR/compose.hlp
-squirrelmail/help/ko_KR/folders.hlp
-squirrelmail/help/ko_KR/main_folder.hlp
-squirrelmail/help/ko_KR/options.hlp
-squirrelmail/help/ko_KR/read_mail.hlp
-squirrelmail/help/ko_KR/search.hlp
-squirrelmail/help/lt_LT/FAQ.hlp
-squirrelmail/help/lt_LT/addresses.hlp
-squirrelmail/help/lt_LT/basic.hlp
-squirrelmail/help/lt_LT/compose.hlp
-squirrelmail/help/lt_LT/folders.hlp
-squirrelmail/help/lt_LT/main_folder.hlp
-squirrelmail/help/lt_LT/options.hlp
-squirrelmail/help/lt_LT/read_mail.hlp
-squirrelmail/help/lt_LT/search.hlp
-squirrelmail/help/nl_NL/FAQ.hlp
-squirrelmail/help/nl_NL/addresses.hlp
-squirrelmail/help/nl_NL/basic.hlp
-squirrelmail/help/nl_NL/compose.hlp
-squirrelmail/help/nl_NL/folders.hlp
-squirrelmail/help/nl_NL/main_folder.hlp
-squirrelmail/help/nl_NL/options.hlp
-squirrelmail/help/nl_NL/read_mail.hlp
-squirrelmail/help/nl_NL/search.hlp
-squirrelmail/help/pl_PL/FAQ.hlp
-squirrelmail/help/pl_PL/addresses.hlp
-squirrelmail/help/pl_PL/basic.hlp
-squirrelmail/help/pl_PL/compose.hlp
-squirrelmail/help/pl_PL/folders.hlp
-squirrelmail/help/pl_PL/main_folder.hlp
-squirrelmail/help/pl_PL/options.hlp
-squirrelmail/help/pl_PL/read_mail.hlp
-squirrelmail/help/pl_PL/search.hlp
-squirrelmail/help/pt_BR/FAQ.hlp
-squirrelmail/help/pt_BR/addresses.hlp
-squirrelmail/help/pt_BR/basic.hlp
-squirrelmail/help/pt_BR/compose.hlp
-squirrelmail/help/pt_BR/folders.hlp
-squirrelmail/help/pt_BR/main_folder.hlp
-squirrelmail/help/pt_BR/options.hlp
-squirrelmail/help/pt_BR/read_mail.hlp
-squirrelmail/help/pt_BR/search.hlp
-squirrelmail/help/pt_PT/FAQ.hlp
-squirrelmail/help/pt_PT/addresses.hlp
-squirrelmail/help/pt_PT/basic.hlp
-squirrelmail/help/pt_PT/compose.hlp
-squirrelmail/help/pt_PT/folders.hlp
-squirrelmail/help/pt_PT/main_folder.hlp
-squirrelmail/help/pt_PT/options.hlp
-squirrelmail/help/pt_PT/read_mail.hlp
-squirrelmail/help/pt_PT/search.hlp
-squirrelmail/help/ru_RU/FAQ.hlp
-squirrelmail/help/ru_RU/addresses.hlp
-squirrelmail/help/ru_RU/basic.hlp
-squirrelmail/help/ru_RU/compose.hlp
-squirrelmail/help/ru_RU/folders.hlp
-squirrelmail/help/ru_RU/main_folder.hlp
-squirrelmail/help/ru_RU/options.hlp
-squirrelmail/help/ru_RU/read_mail.hlp
-squirrelmail/help/ru_RU/search.hlp
-squirrelmail/help/sl_SI/FAQ.hlp
-squirrelmail/help/sl_SI/addresses.hlp
-squirrelmail/help/sl_SI/basic.hlp
-squirrelmail/help/sl_SI/compose.hlp
-squirrelmail/help/sl_SI/folders.hlp
-squirrelmail/help/sl_SI/main_folder.hlp
-squirrelmail/help/sl_SI/options.hlp
-squirrelmail/help/sl_SI/read_mail.hlp
-squirrelmail/help/sl_SI/search.hlp
-squirrelmail/help/sr_YU/FAQ.hlp
-squirrelmail/help/sr_YU/addresses.hlp
-squirrelmail/help/sr_YU/basic.hlp 
-squirrelmail/help/sr_YU/compose.hlp
-squirrelmail/help/sr_YU/folders.hlp
-squirrelmail/help/sr_YU/main_folder.hlp
-squirrelmail/help/sr_YU/options.hlp
-squirrelmail/help/sr_YU/read_mail.hlp
-squirrelmail/help/sr_YU/search.hlp
-squirrelmail/help/sv_SE/FAQ.hlp
-squirrelmail/help/sv_SE/addresses.hlp
-squirrelmail/help/sv_SE/basic.hlp
-squirrelmail/help/sv_SE/compose.hlp
-squirrelmail/help/sv_SE/folders.hlp
-squirrelmail/help/sv_SE/main_folder.hlp
-squirrelmail/help/sv_SE/options.hlp
-squirrelmail/help/sv_SE/read_mail.hlp
-squirrelmail/help/sv_SE/search.hlp
-squirrelmail/help/th_TH/FAQ.hlp
-squirrelmail/help/th_TH/addresses.hlp
-squirrelmail/help/th_TH/basic.hlp
-squirrelmail/help/th_TH/compose.hlp
-squirrelmail/help/th_TH/folders.hlp
-squirrelmail/help/th_TH/main_folder.hlp
-squirrelmail/help/th_TH/options.hlp
-squirrelmail/help/th_TH/read_mail.hlp
-squirrelmail/help/th_TH/search.hlp
-squirrelmail/images/down_pointer.png
-squirrelmail/images/index.php
-squirrelmail/images/minus.gif
-squirrelmail/images/plus.gif
-squirrelmail/images/sec_remove_da_DK.png
-squirrelmail/images/sec_remove_eng.png
-squirrelmail/images/sec_remove_es_ES.png
-squirrelmail/images/sec_remove_fr_FR.png
-squirrelmail/images/sec_remove_id_ID.png
-squirrelmail/images/sec_remove_ja_JP.png
-squirrelmail/images/sec_remove_ko_KR.png
-squirrelmail/images/sec_remove_lt_LT.png
-squirrelmail/images/sec_remove_ru.png
-squirrelmail/images/sec_remove_sl_SI.png
-squirrelmail/images/sec_remove_sr_YU.png
-squirrelmail/images/sm_logo.png
-squirrelmail/images/sort_none.png
-squirrelmail/images/up_pointer.png
-squirrelmail/include/index.php
-squirrelmail/include/load_prefs.php
-squirrelmail/include/options/display.php
-squirrelmail/include/options/folder.php
-squirrelmail/include/options/index.php
-squirrelmail/include/options/personal.php
-squirrelmail/include/validate.php
-squirrelmail/index.php
-squirrelmail/locale/ar/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/ar/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/bg_BG/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/bg_BG/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/ca_ES/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/ca_ES/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/cs_CZ/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/cs_CZ/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/da_DK/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/da_DK/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/de_DE/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/de_DE/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/el_GR/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/el_GR/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/es_ES/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/es_ES/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/et_EE/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/et_EE/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/fi_FI/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/fi_FI/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/fr_FR/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/fr_FR/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/he_HE/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/he_IL/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/he_IL/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/hr_HR/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/hr_HR/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/hu_HU/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/hu_HU/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/id_ID/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/id_ID/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/index.php
-squirrelmail/locale/is_IS/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/is_IS/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/it_IT/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/it_IT/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/ja_JP/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/ja_JP/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/ko_KR/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/ko_KR/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/lt_LT/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/lt_LT/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/nl_NL/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/nl_NL/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/nn_NO/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/nn_NO/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/no_NO/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/no_NO/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/pl_PL/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/pl_PL/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/pt_BR/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/pt_BR/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/pt_PT/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/pt_PT/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/ro_RO/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/ro_RO/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/ru_RU/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/ru_RU/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/sk_SK/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/sk_SK/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/sl_SI/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/sl_SI/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/sr_YU/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/sr_YU/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/sv_SE/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/sv_SE/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/th_TH/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/th_TH/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/timezones.cfg
-squirrelmail/locale/tr_TR/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/tr_TR/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/uk_UA/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/uk_UA/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/vi_VN/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/vi_VN/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/zh_CN/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/zh_CN/LC_MESSAGES/squirrelmail.po
-squirrelmail/locale/zh_TW/LC_MESSAGES/squirrelmail.mo
-squirrelmail/locale/zh_TW/LC_MESSAGES/squirrelmail.po
-squirrelmail/plugins/README.plugins
-squirrelmail/plugins/abook_take/README
-squirrelmail/plugins/abook_take/setup.php
-squirrelmail/plugins/abook_take/take.php
-squirrelmail/plugins/administrator/INSTALL
-squirrelmail/plugins/administrator/auth.php
-squirrelmail/plugins/administrator/defines.php
-squirrelmail/plugins/administrator/index.php
-squirrelmail/plugins/administrator/options.php
-squirrelmail/plugins/administrator/setup.php
-squirrelmail/plugins/bug_report/INSTALL
-squirrelmail/plugins/bug_report/README
-squirrelmail/plugins/bug_report/bug_report.php
-squirrelmail/plugins/bug_report/index.php
-squirrelmail/plugins/bug_report/setup.php
-squirrelmail/plugins/calendar/README
-squirrelmail/plugins/calendar/calendar.php
-squirrelmail/plugins/calendar/calendar_data.php
-squirrelmail/plugins/calendar/day.php
-squirrelmail/plugins/calendar/event_create.php
-squirrelmail/plugins/calendar/event_delete.php
-squirrelmail/plugins/calendar/event_edit.php
-squirrelmail/plugins/calendar/functions.php
-squirrelmail/plugins/calendar/index.php
-squirrelmail/plugins/calendar/setup.php
-squirrelmail/plugins/delete_move_next/README
-squirrelmail/plugins/delete_move_next/index.php
-squirrelmail/plugins/delete_move_next/setup.php
-squirrelmail/plugins/filters/CHANGES
-squirrelmail/plugins/filters/README
-squirrelmail/plugins/filters/bulkquery/INSTALL
-squirrelmail/plugins/filters/bulkquery/Makefile
-squirrelmail/plugins/filters/bulkquery/README
-squirrelmail/plugins/filters/bulkquery/bq.in
-squirrelmail/plugins/filters/bulkquery/bq.out
-squirrelmail/plugins/filters/bulkquery/bulkquery.c
-squirrelmail/plugins/filters/filters.php
-squirrelmail/plugins/filters/index.php
-squirrelmail/plugins/filters/options.php
-squirrelmail/plugins/filters/setup.php
-squirrelmail/plugins/filters/spamoptions.php
-squirrelmail/plugins/fortune/INSTALL
-squirrelmail/plugins/fortune/setup.php
-squirrelmail/plugins/index.php
-squirrelmail/plugins/info/README
-squirrelmail/plugins/info/functions.php
-squirrelmail/plugins/info/options.php
-squirrelmail/plugins/info/setup.php
-squirrelmail/plugins/listcommands/README
-squirrelmail/plugins/listcommands/index.php
-squirrelmail/plugins/listcommands/mailout.php
-squirrelmail/plugins/listcommands/setup.php
-squirrelmail/plugins/mail_fetch/README
-squirrelmail/plugins/mail_fetch/class.POP3.php
-squirrelmail/plugins/mail_fetch/fetch.php
-squirrelmail/plugins/mail_fetch/functions.php
-squirrelmail/plugins/mail_fetch/index.php
-squirrelmail/plugins/mail_fetch/options.php
-squirrelmail/plugins/mail_fetch/setup.php
-squirrelmail/plugins/make_archive.pl
-squirrelmail/plugins/message_details/message_details_bottom.php
-squirrelmail/plugins/message_details/message_details_main.php
-squirrelmail/plugins/message_details/message_details_top.php
-squirrelmail/plugins/message_details/setup.php
-squirrelmail/plugins/newmail/HISTORY
-squirrelmail/plugins/newmail/README
-squirrelmail/plugins/newmail/index.php
-squirrelmail/plugins/newmail/newmail.php
-squirrelmail/plugins/newmail/newmail_opt.php
-squirrelmail/plugins/newmail/setup.php
-squirrelmail/plugins/newmail/sounds/FanFair.wav
-squirrelmail/plugins/newmail/sounds/Friends.wav
-squirrelmail/plugins/newmail/sounds/MontyPython.wav
-squirrelmail/plugins/newmail/sounds/Notify.wav
-squirrelmail/plugins/newmail/testsound.php
-squirrelmail/plugins/sent_subfolders/index.php
-squirrelmail/plugins/sent_subfolders/setup.php
-squirrelmail/plugins/spamcop/README
-squirrelmail/plugins/spamcop/index.php
-squirrelmail/plugins/spamcop/options.php
-squirrelmail/plugins/spamcop/setup.php
-squirrelmail/plugins/spamcop/spamcop.php
-squirrelmail/plugins/squirrelspell/INSTALL
-squirrelmail/plugins/squirrelspell/doc/CRYPTO
-squirrelmail/plugins/squirrelspell/doc/ChangeLog
-squirrelmail/plugins/squirrelspell/doc/PRIVACY
-squirrelmail/plugins/squirrelspell/doc/README
-squirrelmail/plugins/squirrelspell/doc/UPGRADING
-squirrelmail/plugins/squirrelspell/doc/index.php
-squirrelmail/plugins/squirrelspell/index.php
-squirrelmail/plugins/squirrelspell/js/WHATISTHIS
-squirrelmail/plugins/squirrelspell/js/check_me.js
-squirrelmail/plugins/squirrelspell/js/crypto_settings.js
-squirrelmail/plugins/squirrelspell/js/decrypt_error.js
-squirrelmail/plugins/squirrelspell/js/index.php
-squirrelmail/plugins/squirrelspell/js/init.js
-squirrelmail/plugins/squirrelspell/modules/.htaccess
-squirrelmail/plugins/squirrelspell/modules/WHATISTHIS
-squirrelmail/plugins/squirrelspell/modules/check_me.mod
-squirrelmail/plugins/squirrelspell/modules/crypto.mod
-squirrelmail/plugins/squirrelspell/modules/crypto_badkey.mod
-squirrelmail/plugins/squirrelspell/modules/edit_dic.mod
-squirrelmail/plugins/squirrelspell/modules/enc_setup.mod
-squirrelmail/plugins/squirrelspell/modules/forget_me.mod
-squirrelmail/plugins/squirrelspell/modules/forget_me_not.mod
-squirrelmail/plugins/squirrelspell/modules/index.php
-squirrelmail/plugins/squirrelspell/modules/init.mod
-squirrelmail/plugins/squirrelspell/modules/lang_change.mod
-squirrelmail/plugins/squirrelspell/modules/lang_setup.mod
-squirrelmail/plugins/squirrelspell/modules/options_main.mod
-squirrelmail/plugins/squirrelspell/setup.php
-squirrelmail/plugins/squirrelspell/sqspell_config.php
-squirrelmail/plugins/squirrelspell/sqspell_functions.php
-squirrelmail/plugins/squirrelspell/sqspell_interface.php
-squirrelmail/plugins/squirrelspell/sqspell_options.php
-squirrelmail/plugins/translate/INSTALL
-squirrelmail/plugins/translate/README
-squirrelmail/plugins/translate/index.php
-squirrelmail/plugins/translate/options.php
-squirrelmail/plugins/translate/setup.php
-squirrelmail/po/charsetconvert.pl
-squirrelmail/po/compilepo
-squirrelmail/po/independent_strings.txt
-squirrelmail/po/index.php
-squirrelmail/po/mergepo
-squirrelmail/po/squirrelmail.po
-squirrelmail/po/xgetpo
-squirrelmail/src/addrbook_popup.php
-squirrelmail/src/addrbook_search.php
-squirrelmail/src/addrbook_search_html.php
-squirrelmail/src/addressbook.php
-squirrelmail/src/compose.php
-squirrelmail/src/delete_message.php
-squirrelmail/src/download.php
-squirrelmail/src/empty_trash.php
-squirrelmail/src/folders.php
-squirrelmail/src/folders_create.php
-squirrelmail/src/folders_delete.php
-squirrelmail/src/folders_rename_do.php
-squirrelmail/src/folders_rename_getname.php
-squirrelmail/src/folders_subscribe.php
-squirrelmail/src/help.php
-squirrelmail/src/image.php
-squirrelmail/src/index.php
-squirrelmail/src/left_main.php
-squirrelmail/src/login.php
-squirrelmail/src/move_messages.php
-squirrelmail/src/options.php
-squirrelmail/src/options_highlight.php
-squirrelmail/src/options_identities.php
-squirrelmail/src/options_order.php
-squirrelmail/src/printer_friendly_bottom.php
-squirrelmail/src/printer_friendly_main.php
-squirrelmail/src/printer_friendly_top.php
-squirrelmail/src/read_body.php
-squirrelmail/src/redirect.php
-squirrelmail/src/right_main.php
-squirrelmail/src/search.php
-squirrelmail/src/signout.php
-squirrelmail/src/vcard.php
-squirrelmail/src/view_header.php
-squirrelmail/src/view_text.php
-squirrelmail/src/webmail.php
-squirrelmail/themes/README.themes
-squirrelmail/themes/alien_glow.php
-squirrelmail/themes/black_bean_burrito_theme.php
-squirrelmail/themes/blue_grey_theme.php
-squirrelmail/themes/bluesnews_theme.php
-squirrelmail/themes/bluesteel_theme.php
-squirrelmail/themes/christmas.php
-squirrelmail/themes/css/sans-08.css
-squirrelmail/themes/css/sans-10.css
-squirrelmail/themes/css/sans-12.css
-squirrelmail/themes/css/serif-10.css
-squirrelmail/themes/css/serif-12.css
-squirrelmail/themes/dark_green.php
-squirrelmail/themes/dark_grey_theme.php
-squirrelmail/themes/darkness.php
-squirrelmail/themes/deepocean2_theme.php
-squirrelmail/themes/deepocean_theme.php
-squirrelmail/themes/default_theme.php
-squirrelmail/themes/dompie_theme.php
-squirrelmail/themes/forest_theme.php
-squirrelmail/themes/greenhouse_effect.php
-squirrelmail/themes/high_contrast_theme.php
-squirrelmail/themes/ice_theme.php
-squirrelmail/themes/in_the_pink.php
-squirrelmail/themes/index.php
-squirrelmail/themes/kind_of_blue.php
-squirrelmail/themes/maize_theme.php
-squirrelmail/themes/methodical_theme.php
-squirrelmail/themes/midnight.php
-squirrelmail/themes/monostochastic.php
-squirrelmail/themes/penguin.php
-squirrelmail/themes/plain_blue_theme.php
-squirrelmail/themes/purple_theme.php
-squirrelmail/themes/random.php
-squirrelmail/themes/sandstorm_theme.php
-squirrelmail/themes/seaspray_theme.php
-squirrelmail/themes/servery_theme.php
-squirrelmail/themes/shades_of_grey.php
-squirrelmail/themes/slashdot_theme.php
-squirrelmail/themes/spice_of_life.php
-squirrelmail/themes/spice_of_life_dark.php
-squirrelmail/themes/spice_of_life_lite.php
-@dirrm squirrelmail/themes/css
-@dirrm squirrelmail/themes
-@dirrm squirrelmail/src
-@dirrm squirrelmail/po
-@dirrm squirrelmail/plugins/translate
-@dirrm squirrelmail/plugins/squirrelspell/modules
-@dirrm squirrelmail/plugins/squirrelspell/js
-@dirrm squirrelmail/plugins/squirrelspell/doc
-@dirrm squirrelmail/plugins/squirrelspell
-@dirrm squirrelmail/plugins/spamcop
-@dirrm squirrelmail/plugins/sent_subfolders
-@dirrm squirrelmail/plugins/newmail/sounds
-@dirrm squirrelmail/plugins/newmail
-@dirrm squirrelmail/plugins/message_details
-@dirrm squirrelmail/plugins/mail_fetch
-@dirrm squirrelmail/plugins/listcommands
-@dirrm squirrelmail/plugins/info
-@dirrm squirrelmail/plugins/fortune
-@dirrm squirrelmail/plugins/filters/bulkquery
-@dirrm squirrelmail/plugins/filters
-@dirrm squirrelmail/plugins/delete_move_next
-@dirrm squirrelmail/plugins/calendar
-@dirrm squirrelmail/plugins/bug_report
-@dirrm squirrelmail/plugins/administrator
-@dirrm squirrelmail/plugins/abook_take
-@dirrm squirrelmail/plugins
-@dirrm squirrelmail/locale/zh_TW/LC_MESSAGES
-@dirrm squirrelmail/locale/zh_TW
-@dirrm squirrelmail/locale/zh_CN/LC_MESSAGES
-@dirrm squirrelmail/locale/zh_CN
-@dirrm squirrelmail/locale/vi_VN/LC_MESSAGES
-@dirrm squirrelmail/locale/vi_VN
-@dirrm squirrelmail/locale/uk_UA/LC_MESSAGES
-@dirrm squirrelmail/locale/uk_UA
-@dirrm squirrelmail/locale/tr_TR/LC_MESSAGES
-@dirrm squirrelmail/locale/tr_TR
-@dirrm squirrelmail/locale/th_TH/LC_MESSAGES
-@dirrm squirrelmail/locale/th_TH
-@dirrm squirrelmail/locale/sv_SE/LC_MESSAGES
-@dirrm squirrelmail/locale/sv_SE
-@dirrm squirrelmail/locale/sr_YU/LC_MESSAGES
-@dirrm squirrelmail/locale/sr_YU
-@dirrm squirrelmail/locale/sl_SI/LC_MESSAGES
-@dirrm squirrelmail/locale/sl_SI
-@dirrm squirrelmail/locale/sk_SK/LC_MESSAGES
-@dirrm squirrelmail/locale/sk_SK
-@dirrm squirrelmail/locale/ru_RU/LC_MESSAGES
-@dirrm squirrelmail/locale/ru_RU
-@dirrm squirrelmail/locale/ro_RO/LC_MESSAGES
-@dirrm squirrelmail/locale/ro_RO
-@dirrm squirrelmail/locale/pt_PT/LC_MESSAGES
-@dirrm squirrelmail/locale/pt_PT
-@dirrm squirrelmail/locale/pt_BR/LC_MESSAGES
-@dirrm squirrelmail/locale/pt_BR
-@dirrm squirrelmail/locale/pl_PL/LC_MESSAGES
-@dirrm squirrelmail/locale/pl_PL
-@dirrm squirrelmail/locale/no_NO/LC_MESSAGES
-@dirrm squirrelmail/locale/no_NO
-@dirrm squirrelmail/locale/nn_NO/LC_MESSAGES
-@dirrm squirrelmail/locale/nn_NO
-@dirrm squirrelmail/locale/nl_NL/LC_MESSAGES
-@dirrm squirrelmail/locale/nl_NL
-@dirrm squirrelmail/locale/lt_LT/LC_MESSAGES
-@dirrm squirrelmail/locale/lt_LT
-@dirrm squirrelmail/locale/ko_KR/LC_MESSAGES
-@dirrm squirrelmail/locale/ko_KR
-@dirrm squirrelmail/locale/ja_JP/LC_MESSAGES
-@dirrm squirrelmail/locale/ja_JP
-@dirrm squirrelmail/locale/it_IT/LC_MESSAGES
-@dirrm squirrelmail/locale/it_IT
-@dirrm squirrelmail/locale/is_IS/LC_MESSAGES
-@dirrm squirrelmail/locale/is_IS
-@dirrm squirrelmail/locale/id_ID/LC_MESSAGES
-@dirrm squirrelmail/locale/id_ID
-@dirrm squirrelmail/locale/hu_HU/LC_MESSAGES
-@dirrm squirrelmail/locale/hu_HU
-@dirrm squirrelmail/locale/hr_HR/LC_MESSAGES
-@dirrm squirrelmail/locale/hr_HR
-@dirrm squirrelmail/locale/he_IL/LC_MESSAGES
-@dirrm squirrelmail/locale/he_IL
-@dirrm squirrelmail/locale/he_HE/LC_MESSAGES
-@dirrm squirrelmail/locale/he_HE
-@dirrm squirrelmail/locale/fr_FR/LC_MESSAGES
-@dirrm squirrelmail/locale/fr_FR
-@dirrm squirrelmail/locale/fi_FI/LC_MESSAGES
-@dirrm squirrelmail/locale/fi_FI
-@dirrm squirrelmail/locale/et_EE/LC_MESSAGES
-@dirrm squirrelmail/locale/et_EE
-@dirrm squirrelmail/locale/es_ES/LC_MESSAGES
-@dirrm squirrelmail/locale/es_ES
-@dirrm squirrelmail/locale/el_GR/LC_MESSAGES
-@dirrm squirrelmail/locale/el_GR
-@dirrm squirrelmail/locale/de_DE/LC_MESSAGES
-@dirrm squirrelmail/locale/de_DE
-@dirrm squirrelmail/locale/da_DK/LC_MESSAGES
-@dirrm squirrelmail/locale/da_DK
-@dirrm squirrelmail/locale/cs_CZ/LC_MESSAGES
-@dirrm squirrelmail/locale/cs_CZ
-@dirrm squirrelmail/locale/ca_ES/LC_MESSAGES
-@dirrm squirrelmail/locale/ca_ES
-@dirrm squirrelmail/locale/bg_BG/LC_MESSAGES
-@dirrm squirrelmail/locale/bg_BG
-@dirrm squirrelmail/locale/ar/LC_MESSAGES
-@dirrm squirrelmail/locale/ar
-@dirrm squirrelmail/locale
-@dirrm squirrelmail/include/options
-@dirrm squirrelmail/include
-@dirrm squirrelmail/images
-@dirrm squirrelmail/help/th_TH
-@dirrm squirrelmail/help/sv_SE
-@dirrm squirrelmail/help/sr_YU
-@dirrm squirrelmail/help/sl_SI
-@dirrm squirrelmail/help/ru_RU
-@dirrm squirrelmail/help/pt_PT
-@dirrm squirrelmail/help/pt_BR
-@dirrm squirrelmail/help/pl_PL
-@dirrm squirrelmail/help/nl_NL
-@dirrm squirrelmail/help/lt_LT
-@dirrm squirrelmail/help/ko_KR
-@dirrm squirrelmail/help/ja_JP
-@dirrm squirrelmail/help/it_IT
-@dirrm squirrelmail/help/id_ID
-@dirrm squirrelmail/help/fr_FR
-@dirrm squirrelmail/help/fi_FI
-@dirrm squirrelmail/help/es_ES
-@dirrm squirrelmail/help/en_US
-@dirrm squirrelmail/help/de_DE
-@dirrm squirrelmail/help/da_DK
-@dirrm squirrelmail/help/cs_CZ
-@dirrm squirrelmail/help/ca_ES
-@dirrm squirrelmail/help/bg_BG
-@dirrm squirrelmail/help
-@dirrm squirrelmail/functions
-@dirrm squirrelmail/doc/ReleaseNotes/1.3
-@dirrm squirrelmail/doc/ReleaseNotes/1.2
-@dirrm squirrelmail/doc/ReleaseNotes
-@dirrm squirrelmail/doc
-@dirrm squirrelmail/data
-@dirrm squirrelmail/contrib/RPM
-@dirrm squirrelmail/contrib
-@dirrm squirrelmail/config
-@dirrm squirrelmail/class/mime
-@dirrm squirrelmail/class/helper
-@dirrm squirrelmail/class/deliver
-@dirrm squirrelmail/class
-@dirrm squirrelmail
+%%PORTDOCS%%share/doc/squirrelmail/AUTHORS
+%%PORTDOCS%%share/doc/squirrelmail/COPYING
+%%PORTDOCS%%share/doc/squirrelmail/ChangeLog
+%%PORTDOCS%%share/doc/squirrelmail/INSTALL
+%%PORTDOCS%%share/doc/squirrelmail/README
+%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes-%%PORTVERSION%%
+%%PORTDOCS%%share/doc/squirrelmail/UPGRADE
+%%PORTDOCS%%share/doc/squirrelmail/README.russian_apache
+%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.2/Notes-1.2.0.txt
+%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.2/Notes-1.2.1.txt
+%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.2/Notes-1.2.2.txt
+%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.2/Notes-1.2.3.txt
+%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.2/Notes-1.2.4.txt
+%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.2/Notes-1.2.5
+%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.2/Notes-1.2.6.txt
+%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.3/Notes-1.3.0.txt
+%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.3/Notes-1.3.1.txt
+%%PORTDOCS%%share/doc/squirrelmail/ReleaseNotes/1.3/Notes-1.3.2.txt
+%%PORTDOCS%%share/doc/squirrelmail/addressbook.txt
+%%PORTDOCS%%share/doc/squirrelmail/authentication.txt
+%%PORTDOCS%%share/doc/squirrelmail/compose.txt
+%%PORTDOCS%%share/doc/squirrelmail/db-backend.txt
+%%PORTDOCS%%share/doc/squirrelmail/ie_ssl.txt
+%%PORTDOCS%%share/doc/squirrelmail/index.html
+%%PORTDOCS%%share/doc/squirrelmail/mime.txt
+%%PORTDOCS%%share/doc/squirrelmail/plugin.txt
+%%PORTDOCS%%share/doc/squirrelmail/rfc_documents.txt
+%%PORTDOCS%%share/doc/squirrelmail/themes.txt
+%%PORTDOCS%%share/doc/squirrelmail/translating.txt
+%%PORTDOCS%%share/doc/squirrelmail/translating_help.txt
+%%PORTDOCS%%share/doc/squirrelmail/tree.txt
+www/squirrelmail/class/deliver/Deliver.class.php
+www/squirrelmail/class/deliver/Deliver_IMAP.class.php
+www/squirrelmail/class/deliver/Deliver_SMTP.class.php
+www/squirrelmail/class/deliver/Deliver_SendMail.class.php
+www/squirrelmail/class/deliver/index.php
+www/squirrelmail/class/helper/VCard.class.php
+www/squirrelmail/class/html.class.php
+www/squirrelmail/class/index.php
+www/squirrelmail/class/mime.class.php
+www/squirrelmail/class/mime/AddressStructure.class.php
+www/squirrelmail/class/mime/ContentType.class.php
+www/squirrelmail/class/mime/Disposition.class.php
+www/squirrelmail/class/mime/Language.class.php
+www/squirrelmail/class/mime/Message.class.php
+www/squirrelmail/class/mime/MessageHeader.class.php
+www/squirrelmail/class/mime/Rfc822Header.class.php
+www/squirrelmail/class/mime/SMimeMessage.class.php
+www/squirrelmail/class/mime/index.php
+www/squirrelmail/config/conf.pl
+www/squirrelmail/config/config_default.php
+www/squirrelmail/config/config_local.php
+www/squirrelmail/config/index.php
+www/squirrelmail/configure
+www/squirrelmail/contrib/RPM/config.php.redhat
+www/squirrelmail/contrib/RPM/squirrelmail.conf
+www/squirrelmail/contrib/RPM/squirrelmail.cron
+www/squirrelmail/contrib/RPM/squirrelmail.spec
+www/squirrelmail/data/.htaccess
+www/squirrelmail/data/default_pref
+www/squirrelmail/data/index.php
+www/squirrelmail/functions/abook_database.php
+www/squirrelmail/functions/abook_global_file.php
+www/squirrelmail/functions/abook_ldap_server.php
+www/squirrelmail/functions/abook_local_file.php
+www/squirrelmail/functions/addressbook.php
+www/squirrelmail/functions/attachment_common.php
+www/squirrelmail/functions/auth.php
+www/squirrelmail/functions/constants.php
+www/squirrelmail/functions/date.php
+www/squirrelmail/functions/db_prefs.php
+www/squirrelmail/functions/display_messages.php
+www/squirrelmail/functions/file_prefs.php
+www/squirrelmail/functions/gettext.php
+www/squirrelmail/functions/global.php
+www/squirrelmail/functions/html.php
+www/squirrelmail/functions/i18n.php
+www/squirrelmail/functions/imap.php
+www/squirrelmail/functions/imap_general.php
+www/squirrelmail/functions/imap_mailbox.php
+www/squirrelmail/functions/imap_messages.php
+www/squirrelmail/functions/imap_parse.php
+www/squirrelmail/functions/imap_search.php
+www/squirrelmail/functions/imap_utf7_local.php
+www/squirrelmail/functions/index.php
+www/squirrelmail/functions/mailbox_display.php
+www/squirrelmail/functions/mime.php
+www/squirrelmail/functions/options.php
+www/squirrelmail/functions/page_header.php
+www/squirrelmail/functions/plugin.php
+www/squirrelmail/functions/prefs.php
+www/squirrelmail/functions/strings.php
+www/squirrelmail/functions/tree.php
+www/squirrelmail/functions/url_parser.php
+www/squirrelmail/help/bg_BG/FAQ.hlp
+www/squirrelmail/help/bg_BG/addresses.hlp
+www/squirrelmail/help/bg_BG/basic.hlp
+www/squirrelmail/help/bg_BG/compose.hlp
+www/squirrelmail/help/bg_BG/folders.hlp
+www/squirrelmail/help/bg_BG/main_folder.hlp
+www/squirrelmail/help/bg_BG/options.hlp
+www/squirrelmail/help/bg_BG/read_mail.hlp
+www/squirrelmail/help/bg_BG/search.hlp
+www/squirrelmail/help/ca_ES/FAQ.hlp
+www/squirrelmail/help/ca_ES/addresses.hlp
+www/squirrelmail/help/ca_ES/basic.hlp
+www/squirrelmail/help/ca_ES/compose.hlp
+www/squirrelmail/help/ca_ES/folders.hlp
+www/squirrelmail/help/ca_ES/main_folder.hlp
+www/squirrelmail/help/ca_ES/options.hlp
+www/squirrelmail/help/ca_ES/read_mail.hlp
+www/squirrelmail/help/ca_ES/search.hlp
+www/squirrelmail/help/cs_CZ/FAQ.hlp
+www/squirrelmail/help/cs_CZ/addresses.hlp
+www/squirrelmail/help/cs_CZ/basic.hlp
+www/squirrelmail/help/cs_CZ/compose.hlp
+www/squirrelmail/help/cs_CZ/folders.hlp
+www/squirrelmail/help/cs_CZ/main_folder.hlp
+www/squirrelmail/help/cs_CZ/options.hlp
+www/squirrelmail/help/cs_CZ/read_mail.hlp
+www/squirrelmail/help/cs_CZ/search.hlp
+www/squirrelmail/help/da_DK/FAQ.hlp
+www/squirrelmail/help/da_DK/addresses.hlp
+www/squirrelmail/help/da_DK/basic.hlp
+www/squirrelmail/help/da_DK/compose.hlp
+www/squirrelmail/help/da_DK/folders.hlp
+www/squirrelmail/help/da_DK/main_folder.hlp
+www/squirrelmail/help/da_DK/options.hlp
+www/squirrelmail/help/da_DK/read_mail.hlp
+www/squirrelmail/help/da_DK/search.hlp
+www/squirrelmail/help/de_DE/FAQ.hlp
+www/squirrelmail/help/de_DE/addresses.hlp
+www/squirrelmail/help/de_DE/basic.hlp
+www/squirrelmail/help/de_DE/compose.hlp
+www/squirrelmail/help/de_DE/folders.hlp
+www/squirrelmail/help/de_DE/main_folder.hlp
+www/squirrelmail/help/de_DE/options.hlp
+www/squirrelmail/help/de_DE/read_mail.hlp
+www/squirrelmail/help/de_DE/search.hlp
+www/squirrelmail/help/en_US/FAQ.hlp
+www/squirrelmail/help/en_US/addresses.hlp
+www/squirrelmail/help/en_US/basic.hlp
+www/squirrelmail/help/en_US/compose.hlp
+www/squirrelmail/help/en_US/folders.hlp
+www/squirrelmail/help/en_US/main_folder.hlp
+www/squirrelmail/help/en_US/options.hlp
+www/squirrelmail/help/en_US/read_mail.hlp
+www/squirrelmail/help/en_US/search.hlp
+www/squirrelmail/help/es_ES/FAQ.hlp
+www/squirrelmail/help/es_ES/addresses.hlp
+www/squirrelmail/help/es_ES/basic.hlp
+www/squirrelmail/help/es_ES/compose.hlp
+www/squirrelmail/help/es_ES/folders.hlp
+www/squirrelmail/help/es_ES/main_folder.hlp
+www/squirrelmail/help/es_ES/options.hlp
+www/squirrelmail/help/es_ES/read_mail.hlp
+www/squirrelmail/help/es_ES/search.hlp
+www/squirrelmail/help/fi_FI/FAQ.hlp
+www/squirrelmail/help/fi_FI/addresses.hlp
+www/squirrelmail/help/fi_FI/basic.hlp
+www/squirrelmail/help/fi_FI/compose.hlp
+www/squirrelmail/help/fi_FI/folders.hlp
+www/squirrelmail/help/fi_FI/main_folder.hlp
+www/squirrelmail/help/fi_FI/options.hlp
+www/squirrelmail/help/fi_FI/read_mail.hlp
+www/squirrelmail/help/fi_FI/search.hlp
+www/squirrelmail/help/fr_FR/FAQ.hlp
+www/squirrelmail/help/fr_FR/addresses.hlp
+www/squirrelmail/help/fr_FR/basic.hlp
+www/squirrelmail/help/fr_FR/compose.hlp
+www/squirrelmail/help/fr_FR/folders.hlp
+www/squirrelmail/help/fr_FR/main_folder.hlp
+www/squirrelmail/help/fr_FR/options.hlp
+www/squirrelmail/help/fr_FR/read_mail.hlp
+www/squirrelmail/help/fr_FR/search.hlp
+www/squirrelmail/help/id_ID/FAQ.hlp
+www/squirrelmail/help/id_ID/addresses.hlp
+www/squirrelmail/help/id_ID/basic.hlp
+www/squirrelmail/help/id_ID/compose.hlp
+www/squirrelmail/help/id_ID/folders.hlp
+www/squirrelmail/help/id_ID/main_folder.hlp
+www/squirrelmail/help/id_ID/options.hlp
+www/squirrelmail/help/id_ID/read_mail.hlp
+www/squirrelmail/help/id_ID/search.hlp
+www/squirrelmail/help/index.php
+www/squirrelmail/help/it_IT/FAQ.hlp
+www/squirrelmail/help/it_IT/addresses.hlp
+www/squirrelmail/help/it_IT/basic.hlp
+www/squirrelmail/help/it_IT/compose.hlp
+www/squirrelmail/help/it_IT/folders.hlp
+www/squirrelmail/help/it_IT/main_folder.hlp
+www/squirrelmail/help/it_IT/options.hlp
+www/squirrelmail/help/it_IT/read_mail.hlp
+www/squirrelmail/help/it_IT/search.hlp
+www/squirrelmail/help/ja_JP/FAQ.hlp
+www/squirrelmail/help/ja_JP/addresses.hlp
+www/squirrelmail/help/ja_JP/basic.hlp
+www/squirrelmail/help/ja_JP/compose.hlp
+www/squirrelmail/help/ja_JP/folders.hlp
+www/squirrelmail/help/ja_JP/main_folder.hlp
+www/squirrelmail/help/ja_JP/options.hlp
+www/squirrelmail/help/ja_JP/read_mail.hlp
+www/squirrelmail/help/ja_JP/search.hlp
+www/squirrelmail/help/ko_KR/FAQ.hlp
+www/squirrelmail/help/ko_KR/addresses.hlp
+www/squirrelmail/help/ko_KR/basic.hlp
+www/squirrelmail/help/ko_KR/compose.hlp
+www/squirrelmail/help/ko_KR/folders.hlp
+www/squirrelmail/help/ko_KR/main_folder.hlp
+www/squirrelmail/help/ko_KR/options.hlp
+www/squirrelmail/help/ko_KR/read_mail.hlp
+www/squirrelmail/help/ko_KR/search.hlp
+www/squirrelmail/help/lt_LT/FAQ.hlp
+www/squirrelmail/help/lt_LT/addresses.hlp
+www/squirrelmail/help/lt_LT/basic.hlp
+www/squirrelmail/help/lt_LT/compose.hlp
+www/squirrelmail/help/lt_LT/folders.hlp
+www/squirrelmail/help/lt_LT/main_folder.hlp
+www/squirrelmail/help/lt_LT/options.hlp
+www/squirrelmail/help/lt_LT/read_mail.hlp
+www/squirrelmail/help/lt_LT/search.hlp
+www/squirrelmail/help/nl_NL/FAQ.hlp
+www/squirrelmail/help/nl_NL/addresses.hlp
+www/squirrelmail/help/nl_NL/basic.hlp
+www/squirrelmail/help/nl_NL/compose.hlp
+www/squirrelmail/help/nl_NL/folders.hlp
+www/squirrelmail/help/nl_NL/main_folder.hlp
+www/squirrelmail/help/nl_NL/options.hlp
+www/squirrelmail/help/nl_NL/read_mail.hlp
+www/squirrelmail/help/nl_NL/search.hlp
+www/squirrelmail/help/pl_PL/FAQ.hlp
+www/squirrelmail/help/pl_PL/addresses.hlp
+www/squirrelmail/help/pl_PL/basic.hlp
+www/squirrelmail/help/pl_PL/compose.hlp
+www/squirrelmail/help/pl_PL/folders.hlp
+www/squirrelmail/help/pl_PL/main_folder.hlp
+www/squirrelmail/help/pl_PL/options.hlp
+www/squirrelmail/help/pl_PL/read_mail.hlp
+www/squirrelmail/help/pl_PL/search.hlp
+www/squirrelmail/help/pt_BR/FAQ.hlp
+www/squirrelmail/help/pt_BR/addresses.hlp
+www/squirrelmail/help/pt_BR/basic.hlp
+www/squirrelmail/help/pt_BR/compose.hlp
+www/squirrelmail/help/pt_BR/folders.hlp
+www/squirrelmail/help/pt_BR/main_folder.hlp
+www/squirrelmail/help/pt_BR/options.hlp
+www/squirrelmail/help/pt_BR/read_mail.hlp
+www/squirrelmail/help/pt_BR/search.hlp
+www/squirrelmail/help/pt_PT/FAQ.hlp
+www/squirrelmail/help/pt_PT/addresses.hlp
+www/squirrelmail/help/pt_PT/basic.hlp
+www/squirrelmail/help/pt_PT/compose.hlp
+www/squirrelmail/help/pt_PT/folders.hlp
+www/squirrelmail/help/pt_PT/main_folder.hlp
+www/squirrelmail/help/pt_PT/options.hlp
+www/squirrelmail/help/pt_PT/read_mail.hlp
+www/squirrelmail/help/pt_PT/search.hlp
+www/squirrelmail/help/ru_RU/FAQ.hlp
+www/squirrelmail/help/ru_RU/addresses.hlp
+www/squirrelmail/help/ru_RU/basic.hlp
+www/squirrelmail/help/ru_RU/compose.hlp
+www/squirrelmail/help/ru_RU/folders.hlp
+www/squirrelmail/help/ru_RU/main_folder.hlp
+www/squirrelmail/help/ru_RU/options.hlp
+www/squirrelmail/help/ru_RU/read_mail.hlp
+www/squirrelmail/help/ru_RU/search.hlp
+www/squirrelmail/help/sl_SI/FAQ.hlp
+www/squirrelmail/help/sl_SI/addresses.hlp
+www/squirrelmail/help/sl_SI/basic.hlp
+www/squirrelmail/help/sl_SI/compose.hlp
+www/squirrelmail/help/sl_SI/folders.hlp
+www/squirrelmail/help/sl_SI/main_folder.hlp
+www/squirrelmail/help/sl_SI/options.hlp
+www/squirrelmail/help/sl_SI/read_mail.hlp
+www/squirrelmail/help/sl_SI/search.hlp
+www/squirrelmail/help/sr_YU/FAQ.hlp
+www/squirrelmail/help/sr_YU/addresses.hlp
+www/squirrelmail/help/sr_YU/basic.hlp 
+www/squirrelmail/help/sr_YU/compose.hlp
+www/squirrelmail/help/sr_YU/folders.hlp
+www/squirrelmail/help/sr_YU/main_folder.hlp
+www/squirrelmail/help/sr_YU/options.hlp
+www/squirrelmail/help/sr_YU/read_mail.hlp
+www/squirrelmail/help/sr_YU/search.hlp
+www/squirrelmail/help/sv_SE/FAQ.hlp
+www/squirrelmail/help/sv_SE/addresses.hlp
+www/squirrelmail/help/sv_SE/basic.hlp
+www/squirrelmail/help/sv_SE/compose.hlp
+www/squirrelmail/help/sv_SE/folders.hlp
+www/squirrelmail/help/sv_SE/main_folder.hlp
+www/squirrelmail/help/sv_SE/options.hlp
+www/squirrelmail/help/sv_SE/read_mail.hlp
+www/squirrelmail/help/sv_SE/search.hlp
+www/squirrelmail/help/th_TH/FAQ.hlp
+www/squirrelmail/help/th_TH/addresses.hlp
+www/squirrelmail/help/th_TH/basic.hlp
+www/squirrelmail/help/th_TH/compose.hlp
+www/squirrelmail/help/th_TH/folders.hlp
+www/squirrelmail/help/th_TH/main_folder.hlp
+www/squirrelmail/help/th_TH/options.hlp
+www/squirrelmail/help/th_TH/read_mail.hlp
+www/squirrelmail/help/th_TH/search.hlp
+www/squirrelmail/images/down_pointer.png
+www/squirrelmail/images/index.php
+www/squirrelmail/images/minus.gif
+www/squirrelmail/images/plus.gif
+www/squirrelmail/images/sec_remove_da_DK.png
+www/squirrelmail/images/sec_remove_eng.png
+www/squirrelmail/images/sec_remove_es_ES.png
+www/squirrelmail/images/sec_remove_fr_FR.png
+www/squirrelmail/images/sec_remove_id_ID.png
+www/squirrelmail/images/sec_remove_ja_JP.png
+www/squirrelmail/images/sec_remove_ko_KR.png
+www/squirrelmail/images/sec_remove_lt_LT.png
+www/squirrelmail/images/sec_remove_ru.png
+www/squirrelmail/images/sec_remove_sl_SI.png
+www/squirrelmail/images/sec_remove_sr_YU.png
+www/squirrelmail/images/sm_logo.png
+www/squirrelmail/images/sort_none.png
+www/squirrelmail/images/up_pointer.png
+www/squirrelmail/include/index.php
+www/squirrelmail/include/load_prefs.php
+www/squirrelmail/include/options/display.php
+www/squirrelmail/include/options/folder.php
+www/squirrelmail/include/options/index.php
+www/squirrelmail/include/options/personal.php
+www/squirrelmail/include/validate.php
+www/squirrelmail/index.php
+www/squirrelmail/locale/ar/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/ar/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/bg_BG/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/bg_BG/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/ca_ES/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/ca_ES/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/cs_CZ/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/cs_CZ/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/da_DK/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/da_DK/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/de_DE/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/de_DE/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/el_GR/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/el_GR/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/es_ES/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/es_ES/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/et_EE/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/et_EE/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/fi_FI/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/fi_FI/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/fr_FR/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/fr_FR/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/he_HE/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/he_IL/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/he_IL/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/hr_HR/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/hr_HR/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/hu_HU/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/hu_HU/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/id_ID/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/id_ID/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/index.php
+www/squirrelmail/locale/is_IS/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/is_IS/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/it_IT/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/it_IT/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/ja_JP/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/ja_JP/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/ko_KR/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/ko_KR/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/lt_LT/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/lt_LT/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/nl_NL/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/nl_NL/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/nn_NO/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/nn_NO/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/no_NO/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/no_NO/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/pl_PL/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/pl_PL/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/pt_BR/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/pt_BR/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/pt_PT/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/pt_PT/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/ro_RO/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/ro_RO/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/ru_RU/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/ru_RU/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/sk_SK/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/sk_SK/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/sl_SI/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/sl_SI/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/sr_YU/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/sr_YU/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/sv_SE/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/sv_SE/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/th_TH/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/th_TH/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/timezones.cfg
+www/squirrelmail/locale/tr_TR/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/tr_TR/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/uk_UA/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/uk_UA/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/vi_VN/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/vi_VN/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/zh_CN/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/zh_CN/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/locale/zh_TW/LC_MESSAGES/squirrelmail.mo
+www/squirrelmail/locale/zh_TW/LC_MESSAGES/squirrelmail.po
+www/squirrelmail/plugins/README.plugins
+www/squirrelmail/plugins/abook_take/README
+www/squirrelmail/plugins/abook_take/setup.php
+www/squirrelmail/plugins/abook_take/take.php
+www/squirrelmail/plugins/administrator/INSTALL
+www/squirrelmail/plugins/administrator/auth.php
+www/squirrelmail/plugins/administrator/defines.php
+www/squirrelmail/plugins/administrator/index.php
+www/squirrelmail/plugins/administrator/options.php
+www/squirrelmail/plugins/administrator/setup.php
+www/squirrelmail/plugins/bug_report/INSTALL
+www/squirrelmail/plugins/bug_report/README
+www/squirrelmail/plugins/bug_report/bug_report.php
+www/squirrelmail/plugins/bug_report/index.php
+www/squirrelmail/plugins/bug_report/setup.php
+www/squirrelmail/plugins/calendar/README
+www/squirrelmail/plugins/calendar/calendar.php
+www/squirrelmail/plugins/calendar/calendar_data.php
+www/squirrelmail/plugins/calendar/day.php
+www/squirrelmail/plugins/calendar/event_create.php
+www/squirrelmail/plugins/calendar/event_delete.php
+www/squirrelmail/plugins/calendar/event_edit.php
+www/squirrelmail/plugins/calendar/functions.php
+www/squirrelmail/plugins/calendar/index.php
+www/squirrelmail/plugins/calendar/setup.php
+www/squirrelmail/plugins/delete_move_next/README
+www/squirrelmail/plugins/delete_move_next/index.php
+www/squirrelmail/plugins/delete_move_next/setup.php
+www/squirrelmail/plugins/filters/CHANGES
+www/squirrelmail/plugins/filters/README
+www/squirrelmail/plugins/filters/bulkquery/INSTALL
+www/squirrelmail/plugins/filters/bulkquery/Makefile
+www/squirrelmail/plugins/filters/bulkquery/README
+www/squirrelmail/plugins/filters/bulkquery/bq.in
+www/squirrelmail/plugins/filters/bulkquery/bq.out
+www/squirrelmail/plugins/filters/bulkquery/bulkquery.c
+www/squirrelmail/plugins/filters/filters.php
+www/squirrelmail/plugins/filters/index.php
+www/squirrelmail/plugins/filters/options.php
+www/squirrelmail/plugins/filters/setup.php
+www/squirrelmail/plugins/filters/spamoptions.php
+www/squirrelmail/plugins/fortune/INSTALL
+www/squirrelmail/plugins/fortune/setup.php
+www/squirrelmail/plugins/index.php
+www/squirrelmail/plugins/info/README
+www/squirrelmail/plugins/info/functions.php
+www/squirrelmail/plugins/info/options.php
+www/squirrelmail/plugins/info/setup.php
+www/squirrelmail/plugins/listcommands/README
+www/squirrelmail/plugins/listcommands/index.php
+www/squirrelmail/plugins/listcommands/mailout.php
+www/squirrelmail/plugins/listcommands/setup.php
+www/squirrelmail/plugins/mail_fetch/README
+www/squirrelmail/plugins/mail_fetch/class.POP3.php
+www/squirrelmail/plugins/mail_fetch/fetch.php
+www/squirrelmail/plugins/mail_fetch/functions.php
+www/squirrelmail/plugins/mail_fetch/index.php
+www/squirrelmail/plugins/mail_fetch/options.php
+www/squirrelmail/plugins/mail_fetch/setup.php
+www/squirrelmail/plugins/make_archive.pl
+www/squirrelmail/plugins/message_details/message_details_bottom.php
+www/squirrelmail/plugins/message_details/message_details_main.php
+www/squirrelmail/plugins/message_details/message_details_top.php
+www/squirrelmail/plugins/message_details/setup.php
+www/squirrelmail/plugins/newmail/HISTORY
+www/squirrelmail/plugins/newmail/README
+www/squirrelmail/plugins/newmail/index.php
+www/squirrelmail/plugins/newmail/newmail.php
+www/squirrelmail/plugins/newmail/newmail_opt.php
+www/squirrelmail/plugins/newmail/setup.php
+www/squirrelmail/plugins/newmail/sounds/FanFair.wav
+www/squirrelmail/plugins/newmail/sounds/Friends.wav
+www/squirrelmail/plugins/newmail/sounds/MontyPython.wav
+www/squirrelmail/plugins/newmail/sounds/Notify.wav
+www/squirrelmail/plugins/newmail/testsound.php
+www/squirrelmail/plugins/sent_subfolders/index.php
+www/squirrelmail/plugins/sent_subfolders/setup.php
+www/squirrelmail/plugins/spamcop/README
+www/squirrelmail/plugins/spamcop/index.php
+www/squirrelmail/plugins/spamcop/options.php
+www/squirrelmail/plugins/spamcop/setup.php
+www/squirrelmail/plugins/spamcop/spamcop.php
+www/squirrelmail/plugins/squirrelspell/INSTALL
+www/squirrelmail/plugins/squirrelspell/doc/CRYPTO
+www/squirrelmail/plugins/squirrelspell/doc/ChangeLog
+www/squirrelmail/plugins/squirrelspell/doc/PRIVACY
+www/squirrelmail/plugins/squirrelspell/doc/README
+www/squirrelmail/plugins/squirrelspell/doc/UPGRADING
+www/squirrelmail/plugins/squirrelspell/doc/index.php
+www/squirrelmail/plugins/squirrelspell/index.php
+www/squirrelmail/plugins/squirrelspell/js/WHATISTHIS
+www/squirrelmail/plugins/squirrelspell/js/check_me.js
+www/squirrelmail/plugins/squirrelspell/js/crypto_settings.js
+www/squirrelmail/plugins/squirrelspell/js/decrypt_error.js
+www/squirrelmail/plugins/squirrelspell/js/index.php
+www/squirrelmail/plugins/squirrelspell/js/init.js
+www/squirrelmail/plugins/squirrelspell/modules/.htaccess
+www/squirrelmail/plugins/squirrelspell/modules/WHATISTHIS
+www/squirrelmail/plugins/squirrelspell/modules/check_me.mod
+www/squirrelmail/plugins/squirrelspell/modules/crypto.mod
+www/squirrelmail/plugins/squirrelspell/modules/crypto_badkey.mod
+www/squirrelmail/plugins/squirrelspell/modules/edit_dic.mod
+www/squirrelmail/plugins/squirrelspell/modules/enc_setup.mod
+www/squirrelmail/plugins/squirrelspell/modules/forget_me.mod
+www/squirrelmail/plugins/squirrelspell/modules/forget_me_not.mod
+www/squirrelmail/plugins/squirrelspell/modules/index.php
+www/squirrelmail/plugins/squirrelspell/modules/init.mod
+www/squirrelmail/plugins/squirrelspell/modules/lang_change.mod
+www/squirrelmail/plugins/squirrelspell/modules/lang_setup.mod
+www/squirrelmail/plugins/squirrelspell/modules/options_main.mod
+www/squirrelmail/plugins/squirrelspell/setup.php
+www/squirrelmail/plugins/squirrelspell/sqspell_config.php
+www/squirrelmail/plugins/squirrelspell/sqspell_functions.php
+www/squirrelmail/plugins/squirrelspell/sqspell_interface.php
+www/squirrelmail/plugins/squirrelspell/sqspell_options.php
+www/squirrelmail/plugins/translate/INSTALL
+www/squirrelmail/plugins/translate/README
+www/squirrelmail/plugins/translate/index.php
+www/squirrelmail/plugins/translate/options.php
+www/squirrelmail/plugins/translate/setup.php
+www/squirrelmail/po/charsetconvert.pl
+www/squirrelmail/po/compilepo
+www/squirrelmail/po/independent_strings.txt
+www/squirrelmail/po/index.php
+www/squirrelmail/po/mergepo
+www/squirrelmail/po/squirrelmail.po
+www/squirrelmail/po/xgetpo
+www/squirrelmail/src/addrbook_popup.php
+www/squirrelmail/src/addrbook_search.php
+www/squirrelmail/src/addrbook_search_html.php
+www/squirrelmail/src/addressbook.php
+www/squirrelmail/src/compose.php
+www/squirrelmail/src/delete_message.php
+www/squirrelmail/src/download.php
+www/squirrelmail/src/empty_trash.php
+www/squirrelmail/src/folders.php
+www/squirrelmail/src/folders_create.php
+www/squirrelmail/src/folders_delete.php
+www/squirrelmail/src/folders_rename_do.php
+www/squirrelmail/src/folders_rename_getname.php
+www/squirrelmail/src/folders_subscribe.php
+www/squirrelmail/src/help.php
+www/squirrelmail/src/image.php
+www/squirrelmail/src/index.php
+www/squirrelmail/src/left_main.php
+www/squirrelmail/src/login.php
+www/squirrelmail/src/move_messages.php
+www/squirrelmail/src/options.php
+www/squirrelmail/src/options_highlight.php
+www/squirrelmail/src/options_identities.php
+www/squirrelmail/src/options_order.php
+www/squirrelmail/src/printer_friendly_bottom.php
+www/squirrelmail/src/printer_friendly_main.php
+www/squirrelmail/src/printer_friendly_top.php
+www/squirrelmail/src/read_body.php
+www/squirrelmail/src/redirect.php
+www/squirrelmail/src/right_main.php
+www/squirrelmail/src/search.php
+www/squirrelmail/src/signout.php
+www/squirrelmail/src/vcard.php
+www/squirrelmail/src/view_header.php
+www/squirrelmail/src/view_text.php
+www/squirrelmail/src/webmail.php
+www/squirrelmail/themes/README.themes
+www/squirrelmail/themes/alien_glow.php
+www/squirrelmail/themes/black_bean_burrito_theme.php
+www/squirrelmail/themes/blue_grey_theme.php
+www/squirrelmail/themes/bluesnews_theme.php
+www/squirrelmail/themes/bluesteel_theme.php
+www/squirrelmail/themes/christmas.php
+www/squirrelmail/themes/css/sans-08.css
+www/squirrelmail/themes/css/sans-10.css
+www/squirrelmail/themes/css/sans-12.css
+www/squirrelmail/themes/css/serif-10.css
+www/squirrelmail/themes/css/serif-12.css
+www/squirrelmail/themes/dark_green.php
+www/squirrelmail/themes/dark_grey_theme.php
+www/squirrelmail/themes/darkness.php
+www/squirrelmail/themes/deepocean2_theme.php
+www/squirrelmail/themes/deepocean_theme.php
+www/squirrelmail/themes/default_theme.php
+www/squirrelmail/themes/dompie_theme.php
+www/squirrelmail/themes/forest_theme.php
+www/squirrelmail/themes/greenhouse_effect.php
+www/squirrelmail/themes/high_contrast_theme.php
+www/squirrelmail/themes/ice_theme.php
+www/squirrelmail/themes/in_the_pink.php
+www/squirrelmail/themes/index.php
+www/squirrelmail/themes/kind_of_blue.php
+www/squirrelmail/themes/maize_theme.php
+www/squirrelmail/themes/methodical_theme.php
+www/squirrelmail/themes/midnight.php
+www/squirrelmail/themes/monostochastic.php
+www/squirrelmail/themes/penguin.php
+www/squirrelmail/themes/plain_blue_theme.php
+www/squirrelmail/themes/purple_theme.php
+www/squirrelmail/themes/random.php
+www/squirrelmail/themes/sandstorm_theme.php
+www/squirrelmail/themes/seaspray_theme.php
+www/squirrelmail/themes/servery_theme.php
+www/squirrelmail/themes/shades_of_grey.php
+www/squirrelmail/themes/slashdot_theme.php
+www/squirrelmail/themes/spice_of_life.php
+www/squirrelmail/themes/spice_of_life_dark.php
+www/squirrelmail/themes/spice_of_life_lite.php
+%%PORTDOCS%%@dirrm share/doc/squirrelmail/ReleaseNotes/1.3
+%%PORTDOCS%%@dirrm share/doc/squirrelmail/ReleaseNotes/1.2  
+%%PORTDOCS%%@dirrm share/doc/squirrelmail/ReleaseNotes
+%%PORTDOCS%%@dirrm share/doc/squirrelmail
+@dirrm www/squirrelmail/themes/css
+@dirrm www/squirrelmail/themes
+@dirrm www/squirrelmail/src
+@dirrm www/squirrelmail/po
+@dirrm www/squirrelmail/plugins/translate
+@dirrm www/squirrelmail/plugins/squirrelspell/modules
+@dirrm www/squirrelmail/plugins/squirrelspell/js
+@dirrm www/squirrelmail/plugins/squirrelspell/doc
+@dirrm www/squirrelmail/plugins/squirrelspell
+@dirrm www/squirrelmail/plugins/spamcop
+@dirrm www/squirrelmail/plugins/sent_subfolders
+@dirrm www/squirrelmail/plugins/newmail/sounds
+@dirrm www/squirrelmail/plugins/newmail
+@dirrm www/squirrelmail/plugins/message_details
+@dirrm www/squirrelmail/plugins/mail_fetch
+@dirrm www/squirrelmail/plugins/listcommands
+@dirrm www/squirrelmail/plugins/info
+@dirrm www/squirrelmail/plugins/fortune
+@dirrm www/squirrelmail/plugins/filters/bulkquery
+@dirrm www/squirrelmail/plugins/filters
+@dirrm www/squirrelmail/plugins/delete_move_next
+@dirrm www/squirrelmail/plugins/calendar
+@dirrm www/squirrelmail/plugins/bug_report
+@dirrm www/squirrelmail/plugins/administrator
+@dirrm www/squirrelmail/plugins/abook_take
+@dirrm www/squirrelmail/plugins
+@dirrm www/squirrelmail/locale/zh_TW/LC_MESSAGES
+@dirrm www/squirrelmail/locale/zh_TW
+@dirrm www/squirrelmail/locale/zh_CN/LC_MESSAGES
+@dirrm www/squirrelmail/locale/zh_CN
+@dirrm www/squirrelmail/locale/vi_VN/LC_MESSAGES
+@dirrm www/squirrelmail/locale/vi_VN
+@dirrm www/squirrelmail/locale/uk_UA/LC_MESSAGES
+@dirrm www/squirrelmail/locale/uk_UA
+@dirrm www/squirrelmail/locale/tr_TR/LC_MESSAGES
+@dirrm www/squirrelmail/locale/tr_TR
+@dirrm www/squirrelmail/locale/th_TH/LC_MESSAGES
+@dirrm www/squirrelmail/locale/th_TH
+@dirrm www/squirrelmail/locale/sv_SE/LC_MESSAGES
+@dirrm www/squirrelmail/locale/sv_SE
+@dirrm www/squirrelmail/locale/sr_YU/LC_MESSAGES
+@dirrm www/squirrelmail/locale/sr_YU
+@dirrm www/squirrelmail/locale/sl_SI/LC_MESSAGES
+@dirrm www/squirrelmail/locale/sl_SI
+@dirrm www/squirrelmail/locale/sk_SK/LC_MESSAGES
+@dirrm www/squirrelmail/locale/sk_SK
+@dirrm www/squirrelmail/locale/ru_RU/LC_MESSAGES
+@dirrm www/squirrelmail/locale/ru_RU
+@dirrm www/squirrelmail/locale/ro_RO/LC_MESSAGES
+@dirrm www/squirrelmail/locale/ro_RO
+@dirrm www/squirrelmail/locale/pt_PT/LC_MESSAGES
+@dirrm www/squirrelmail/locale/pt_PT
+@dirrm www/squirrelmail/locale/pt_BR/LC_MESSAGES
+@dirrm www/squirrelmail/locale/pt_BR
+@dirrm www/squirrelmail/locale/pl_PL/LC_MESSAGES
+@dirrm www/squirrelmail/locale/pl_PL
+@dirrm www/squirrelmail/locale/no_NO/LC_MESSAGES
+@dirrm www/squirrelmail/locale/no_NO
+@dirrm www/squirrelmail/locale/nn_NO/LC_MESSAGES
+@dirrm www/squirrelmail/locale/nn_NO
+@dirrm www/squirrelmail/locale/nl_NL/LC_MESSAGES
+@dirrm www/squirrelmail/locale/nl_NL
+@dirrm www/squirrelmail/locale/lt_LT/LC_MESSAGES
+@dirrm www/squirrelmail/locale/lt_LT
+@dirrm www/squirrelmail/locale/ko_KR/LC_MESSAGES
+@dirrm www/squirrelmail/locale/ko_KR
+@dirrm www/squirrelmail/locale/ja_JP/LC_MESSAGES
+@dirrm www/squirrelmail/locale/ja_JP
+@dirrm www/squirrelmail/locale/it_IT/LC_MESSAGES
+@dirrm www/squirrelmail/locale/it_IT
+@dirrm www/squirrelmail/locale/is_IS/LC_MESSAGES
+@dirrm www/squirrelmail/locale/is_IS
+@dirrm www/squirrelmail/locale/id_ID/LC_MESSAGES
+@dirrm www/squirrelmail/locale/id_ID
+@dirrm www/squirrelmail/locale/hu_HU/LC_MESSAGES
+@dirrm www/squirrelmail/locale/hu_HU
+@dirrm www/squirrelmail/locale/hr_HR/LC_MESSAGES
+@dirrm www/squirrelmail/locale/hr_HR
+@dirrm www/squirrelmail/locale/he_IL/LC_MESSAGES
+@dirrm www/squirrelmail/locale/he_IL
+@dirrm www/squirrelmail/locale/he_HE/LC_MESSAGES
+@dirrm www/squirrelmail/locale/he_HE
+@dirrm www/squirrelmail/locale/fr_FR/LC_MESSAGES
+@dirrm www/squirrelmail/locale/fr_FR
+@dirrm www/squirrelmail/locale/fi_FI/LC_MESSAGES
+@dirrm www/squirrelmail/locale/fi_FI
+@dirrm www/squirrelmail/locale/et_EE/LC_MESSAGES
+@dirrm www/squirrelmail/locale/et_EE
+@dirrm www/squirrelmail/locale/es_ES/LC_MESSAGES
+@dirrm www/squirrelmail/locale/es_ES
+@dirrm www/squirrelmail/locale/el_GR/LC_MESSAGES
+@dirrm www/squirrelmail/locale/el_GR
+@dirrm www/squirrelmail/locale/de_DE/LC_MESSAGES
+@dirrm www/squirrelmail/locale/de_DE
+@dirrm www/squirrelmail/locale/da_DK/LC_MESSAGES
+@dirrm www/squirrelmail/locale/da_DK
+@dirrm www/squirrelmail/locale/cs_CZ/LC_MESSAGES
+@dirrm www/squirrelmail/locale/cs_CZ
+@dirrm www/squirrelmail/locale/ca_ES/LC_MESSAGES
+@dirrm www/squirrelmail/locale/ca_ES
+@dirrm www/squirrelmail/locale/bg_BG/LC_MESSAGES
+@dirrm www/squirrelmail/locale/bg_BG
+@dirrm www/squirrelmail/locale/ar/LC_MESSAGES
+@dirrm www/squirrelmail/locale/ar
+@dirrm www/squirrelmail/locale
+@dirrm www/squirrelmail/include/options
+@dirrm www/squirrelmail/include
+@dirrm www/squirrelmail/images
+@dirrm www/squirrelmail/help/th_TH
+@dirrm www/squirrelmail/help/sv_SE
+@dirrm www/squirrelmail/help/sr_YU
+@dirrm www/squirrelmail/help/sl_SI
+@dirrm www/squirrelmail/help/ru_RU
+@dirrm www/squirrelmail/help/pt_PT
+@dirrm www/squirrelmail/help/pt_BR
+@dirrm www/squirrelmail/help/pl_PL
+@dirrm www/squirrelmail/help/nl_NL
+@dirrm www/squirrelmail/help/lt_LT
+@dirrm www/squirrelmail/help/ko_KR
+@dirrm www/squirrelmail/help/ja_JP
+@dirrm www/squirrelmail/help/it_IT
+@dirrm www/squirrelmail/help/id_ID
+@dirrm www/squirrelmail/help/fr_FR
+@dirrm www/squirrelmail/help/fi_FI
+@dirrm www/squirrelmail/help/es_ES
+@dirrm www/squirrelmail/help/en_US
+@dirrm www/squirrelmail/help/de_DE
+@dirrm www/squirrelmail/help/da_DK
+@dirrm www/squirrelmail/help/cs_CZ
+@dirrm www/squirrelmail/help/ca_ES
+@dirrm www/squirrelmail/help/bg_BG
+@dirrm www/squirrelmail/help
+@dirrm www/squirrelmail/functions
+@dirrm www/squirrelmail/data
+@dirrm www/squirrelmail/contrib/RPM
+@dirrm www/squirrelmail/contrib
+@dirrm www/squirrelmail/config
+@dirrm www/squirrelmail/class/mime
+@dirrm www/squirrelmail/class/helper
+@dirrm www/squirrelmail/class/deliver
+@dirrm www/squirrelmail/class
+@dirrm www/squirrelmail
>Release-Note:
>Audit-Trail:
>Unformatted:



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