summaryrefslogtreecommitdiff
path: root/mail/horde-imp
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2001-08-17 17:29:28 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2001-08-17 17:29:28 +0000
commita40e8367e330ebce82f3d7a246142fb4fc1203db (patch)
tree39a054a6eef545aaf2f764a52347785ebd64c449 /mail/horde-imp
parentadd clips (diff)
add imp
A webmail system which accesses mail over IMAP PR: 28871 Submitted by: Thierry Thomas <thierry@thomas.as>
Notes
Notes: svn path=/head/; revision=46384
Diffstat (limited to 'mail/horde-imp')
-rw-r--r--mail/horde-imp/Makefile178
-rw-r--r--mail/horde-imp/distinfo1
-rw-r--r--mail/horde-imp/pkg-comment1
-rw-r--r--mail/horde-imp/pkg-descr8
-rw-r--r--mail/horde-imp/pkg-plist887
5 files changed, 1075 insertions, 0 deletions
diff --git a/mail/horde-imp/Makefile b/mail/horde-imp/Makefile
new file mode 100644
index 000000000000..842bf748c0f9
--- /dev/null
+++ b/mail/horde-imp/Makefile
@@ -0,0 +1,178 @@
+# Ports collection makefile for: imp
+# Date created: Sun Jul 08, 2001
+# Whom: Thierry Thomas (<thierry@thomas.as>)
+# N.B.: parts of this ports come from the Horde's port by NetBSD (jlam@netbsd.org)
+#
+# $FreeBSD$
+#
+
+PORTNAME= imp
+PORTVERSION= 2.2.6
+CATEGORIES= mail www
+MASTER_SITES= ftp://ftp.horde.org/pub/imp/tarballs/
+
+MAINTAINER= thierry@thomas.as
+
+#-----------------------------------------------------------------------
+# You may define these options:
+#
+# - WITHOUT_LDAP : if you do not need OpenLDAP;
+#
+# - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree;
+#
+# - WITHOUT_IMAPSERVER : if your IMAP server runs on another machine;
+#
+# or you can select to work with one of these servers:
+#
+# - WITH_CYRUS-IMAPD : IMP will work with cyrus-imapd;
+#
+# - WITH_CYRUS : IMP will work with cyrus;
+#
+# - WITH_IMAP-UW : IMP will work with imap-uw;
+#
+# - WITH_COURIER-IMAP : IMP will work with courier-imap.
+#
+# These choice are mutually exclusive, and cyrus-imapd is the default.
+#
+#-----------------------------------------------------------------------
+
+LIB_DEPENDS= c-client4.8:${PORTSDIR}/mail/cclient
+
+.if !defined(WITHOUT_LDAP)
+LIB_DEPENDS+= ldap.1:${PORTSDIR}/net/openldap \
+ lber.1:${PORTSDIR}/net/openldap
+.endif
+
+RUN_DEPENDS+= ${LOCALBASE}/www/horde/:${PORTSDIR}/www/horde
+
+# I have no report about the support of dkimap4 by IMP,
+# but I shall be happy to add it if somebody report success with it.
+# If an IMAP server is already installed, we just record the dependence,
+# else we shall install cyrus-imapd.
+# IMAP servers are ordered according to my tastes, if several are
+# installed, we just record the first one.
+.if !defined(WITHOUT_IMAPSERVER)
+.if defined(WITH_CYRUS-IMAPD)
+RUN_DEPENDS+= ${LOCALBASE}/lib/libacap.a:${PORTSDIR}/mail/cyrus-imapd
+.elif defined(WITH_IMAP-UW)
+RUN_DEPENDS+= ${LOCALBASE}/libexec/imapd:${PORTSDIR}/mail/imap-uw
+.elif defined(WITH_CYRUS)
+RUN_DEPENDS+= ${LOCALBASE}/cyrus/:${PORTSDIR}/mail/cyrus
+.elif defined(WITH_COURIER-IMAP)
+RUN_DEPENDS+= ${LOCALBASE}/libexec/courier-imap/:${PORTSDIR}/mail/courier-imap
+.else
+RUN_DEPENDS+= ${LOCALBASE}/lib/libacap.a:${PORTSDIR}/mail/cyrus-imapd
+.endif
+.endif
+
+NO_BUILD= yes
+DOCS= COPYING README docs/CHANGES docs/CREDITS docs/DATABASE \
+ docs/HELP docs/INSTALL docs/SECURITY docs/KNOWN_BUGS \
+ docs/PACKAGES
+
+LHORDEDIR?= www/horde
+LIMPDIR?= ${LHORDEDIR}/imp
+
+PLIST_SUB= HORDEDIR=${LHORDEDIR} IMPDIR=${LIMPDIR}
+
+HORDEDIR= ${PREFIX}/${LHORDEDIR}
+IMPDIR= ${PREFIX}/${LIMPDIR}
+
+pre-everything:
+.if !defined(WITHOUT_IMAPSERVER)
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} "Press CTRL-C and define WITHOUT_IMAPSERVER"
+ @${ECHO_MSG} "if you intend to run an IMAP server on an other machine."
+ @${ECHO_MSG} ""
+.endif
+
+pre-install:
+# N.B.: database dependencies are binded with mod_php#, neither by Horde nor IMP.
+ @if ! ${LDCONFIG} -r | ${GREP} -q -e "c-client4.8"; then \
+ ${ECHO_MSG} "" ; \
+ ${ECHO_MSG} "Please configure PHP with IMAP support." ; \
+ ${ECHO_MSG} "" ; \
+ ${FALSE} ; \
+ fi
+.if !defined(WITHOUT_LDAP)
+ @if ! ${LDCONFIG} -r | ${GREP} -q -e "ldap.1"; then \
+ ${ECHO_MSG} "" ; \
+ ${ECHO_MSG} "Please configure PHP with OpenLDAP support." ; \
+ ${ECHO_MSG} "" ; \
+ ${FALSE} ; \
+ fi
+.endif
+.if !defined(WITHOUT_SUPPORTED_DB)
+ @if ! ${LDCONFIG} -r | ${GREP} -q -e "mysqlclient.10" ; then \
+ if ! ${LDCONFIG} -r | ${GREP} -q -e "pq.2" ; then \
+ if ! ${LDCONFIG} -r | ${GREP} -q -e "sybdb.0" ; then \
+ if ! ${LDCONFIG} -r | ${GREP} -q -e "ct.0" ; then \
+ ${ECHO_MSG} "" ; \
+ ${ECHO_MSG} "Please configure PHP with a database support." ; \
+ ${ECHO_MSG} "MySQL, PostgreSQL and Sybase (CTLIB or DBLIB)" ; \
+ ${ECHO_MSG} "can be used with PHP AND IMP." ; \
+ ${ECHO_MSG} "" ; \
+ ${ECHO_MSG} "(If everything will run on this machine, do not" ; \
+ ${ECHO_MSG} " forget to install the database server-side!)" ; \
+ ${ECHO_MSG} "" ; \
+ ${FALSE} ; \
+ fi ; \
+ fi ; \
+ fi ; \
+ fi
+.endif
+
+do-install:
+ ${MKDIR} ${IMPDIR}
+ ${CP} -Rp ${WRKSRC}/config ${WRKSRC}/graphics ${WRKSRC}/lib ${IMPDIR}
+ ${CP} -Rp ${WRKSRC}/locale ${WRKSRC}/scripts ${WRKSRC}/templates ${IMPDIR}
+ ${CP} -p ${WRKSRC}/*.php3 ${WRKSRC}/*.css ${IMPDIR}
+ @if [ ! -f ${IMPDIR}/config/defaults.php3 ]; then \
+ ${CP} ${IMPDIR}/config/defaults.php3.dist ${IMPDIR}/config/defaults.php3; \
+ fi
+ ${CHMOD} 777 ${IMPDIR}/config/defaults.php3
+ @if [ ! -f ${IMPDIR}/config/mime.php3 ]; then \
+ ${CP} ${IMPDIR}/config/mime.php3.dist ${IMPDIR}/config/mime.php3; \
+ fi
+ @if [ ! -f ${IMPDIR}/config/ldap.php3 ]; then \
+ ${CP} ${IMPDIR}/config/ldap.php3.dist ${IMPDIR}/config/ldap.php3; \
+ fi
+ @if [ ! -f ${IMPDIR}/config/servers.php3 ]; then \
+ ${CP} ${IMPDIR}/config/servers.php3.dist ${IMPDIR}/config/servers.php3; \
+ fi
+ ${CHMOD} 444 ${HORDEDIR}/setup.php3
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+.for FILE in ${DOCS}
+ ${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
+.endfor
+ @${ECHO} "Documentation installed in ${DOCSDIR}."
+.endif
+
+post-install:
+ @${ECHO} "******************************************************************"
+ @${ECHO} "IMP has been installed in ${IMPDIR} with your blank"
+ @${ECHO} "configuration files."
+ @${ECHO} ""
+ @${ECHO} "Please refer to the file ${DOCSDIR}/SECURITY"
+ @${ECHO} "on how to secure the IMP installation."
+ @${ECHO} "It is at least recommended that you change the default database"
+ @${ECHO} "password used by horde-phplib and imp."
+ @${ECHO} ""
+ @${ECHO} "In order to end IMP's configuration, please read the"
+ @${ECHO} "file ${DOCSDIR}/INSTALL."
+ @${ECHO} ""
+ @${ECHO} "The configuration utitility is located at"
+ @${ECHO} "<URL:http://localhost/horde/imp/setup.php3>".
+ @${ECHO} ""
+ @${ECHO} "IMP requires an IMAP server. If you want to install one on this"
+ @${ECHO} "machine, you may install the ports mail/cyrus-imapd, or"
+ @${ECHO} "mail/imap-uw, or mail/courier-imap."
+ @${ECHO} ""
+ @${ECHO} "IMP uses c-client (from the port mail/cclient), the client of"
+ @${ECHO} "IMAP-UW; you may want to reinstall it with SSL support, or"
+ @${ECHO} "if you need an SSL connection to your IMAP server, you can"
+ @${ECHO} "install the port security/stunnel."
+ @${ECHO} "******************************************************************"
+
+.include <bsd.port.mk>
diff --git a/mail/horde-imp/distinfo b/mail/horde-imp/distinfo
new file mode 100644
index 000000000000..b06bd18b862a
--- /dev/null
+++ b/mail/horde-imp/distinfo
@@ -0,0 +1 @@
+MD5 (imp-2.2.6.tar.gz) = 10c5f9b73b1894a2c6b78e46935808ea
diff --git a/mail/horde-imp/pkg-comment b/mail/horde-imp/pkg-comment
new file mode 100644
index 000000000000..46c5ace08f7e
--- /dev/null
+++ b/mail/horde-imp/pkg-comment
@@ -0,0 +1 @@
+A webmail system which accesses mail over IMAP
diff --git a/mail/horde-imp/pkg-descr b/mail/horde-imp/pkg-descr
new file mode 100644
index 000000000000..ea7fa4003ecd
--- /dev/null
+++ b/mail/horde-imp/pkg-descr
@@ -0,0 +1,8 @@
+IMP is a set of PHP scripts that implement an IMAP based webmail system.
+Assuming you have an account on a server that supports IMAP, you can use
+an installation of IMP to check your mail from anywhere that you have web
+access.
+
+WWW: http://www.horde.org/imp/
+
+- Thierry Thomas <thierry@thomas.as>.
diff --git a/mail/horde-imp/pkg-plist b/mail/horde-imp/pkg-plist
new file mode 100644
index 000000000000..3b364c943e1e
--- /dev/null
+++ b/mail/horde-imp/pkg-plist
@@ -0,0 +1,887 @@
+%%PORTDOCS%%share/doc/imp/CHANGES
+%%PORTDOCS%%share/doc/imp/COPYING
+%%PORTDOCS%%share/doc/imp/CREDITS
+%%PORTDOCS%%share/doc/imp/DATABASE
+%%PORTDOCS%%share/doc/imp/HELP
+%%PORTDOCS%%share/doc/imp/INSTALL
+%%PORTDOCS%%share/doc/imp/KNOWN_BUGS
+%%PORTDOCS%%share/doc/imp/PACKAGES
+%%PORTDOCS%%share/doc/imp/README
+%%PORTDOCS%%share/doc/imp/SECURITY
+%%IMPDIR%%/addcontact.php3
+%%IMPDIR%%/compose.php3
+%%IMPDIR%%/config/defaults.php3.dist
+%%IMPDIR%%/config/ldap.php3.dist
+%%IMPDIR%%/config/ldap.php3
+%%IMPDIR%%/config/mime.php3.dist
+%%IMPDIR%%/config/mime.php3
+%%IMPDIR%%/config/servers.php3.dist
+%%IMPDIR%%/config/servers.php3
+%%IMPDIR%%/config/MOTD.html
+%%IMPDIR%%/config/defaults.php3
+%%IMPDIR%%/config/header.txt
+%%IMPDIR%%/config/html.php3
+%%IMPDIR%%/config/imp_module_config.php3
+%%IMPDIR%%/config/lang.php3
+%%IMPDIR%%/config/mailbox.php3
+%%IMPDIR%%/config/menu.txt
+%%IMPDIR%%/config/trailer.txt
+%%IMPDIR%%/contacts.php3
+%%IMPDIR%%/contactsFrame.php3
+%%IMPDIR%%/contactsLdapFrame.php3
+%%IMPDIR%%/folders.php3
+%%IMPDIR%%/graphics/addressbook-blue.gif
+%%IMPDIR%%/graphics/addressbook-red.gif
+%%IMPDIR%%/graphics/addressbook-yellow.gif
+%%IMPDIR%%/graphics/addressbook.gif
+%%IMPDIR%%/graphics/answered.gif
+%%IMPDIR%%/graphics/attachment.gif
+%%IMPDIR%%/graphics/check.gif
+%%IMPDIR%%/graphics/compose.gif
+%%IMPDIR%%/graphics/deleted.gif
+%%IMPDIR%%/graphics/down.gif
+%%IMPDIR%%/graphics/download.gif
+%%IMPDIR%%/graphics/exclamation.gif
+%%IMPDIR%%/graphics/first-grey.gif
+%%IMPDIR%%/graphics/first.gif
+%%IMPDIR%%/graphics/folder.gif
+%%IMPDIR%%/graphics/green.gif
+%%IMPDIR%%/graphics/impsmall.gif
+%%IMPDIR%%/graphics/inbox.gif
+%%IMPDIR%%/graphics/last-grey.gif
+%%IMPDIR%%/graphics/last.gif
+%%IMPDIR%%/graphics/lhand.gif
+%%IMPDIR%%/graphics/lock.gif
+%%IMPDIR%%/graphics/login.gif
+%%IMPDIR%%/graphics/logout.gif
+%%IMPDIR%%/graphics/mime_audio.gif
+%%IMPDIR%%/graphics/mime_broken.gif
+%%IMPDIR%%/graphics/mime_compressed.gif
+%%IMPDIR%%/graphics/mime_deb.gif
+%%IMPDIR%%/graphics/mime_excel.gif
+%%IMPDIR%%/graphics/mime_html.gif
+%%IMPDIR%%/graphics/mime_image.gif
+%%IMPDIR%%/graphics/mime_imp_signature.gif
+%%IMPDIR%%/graphics/mime_mail.gif
+%%IMPDIR%%/graphics/mime_msword.gif
+%%IMPDIR%%/graphics/mime_pdf.gif
+%%IMPDIR%%/graphics/mime_php.gif
+%%IMPDIR%%/graphics/mime_text.gif
+%%IMPDIR%%/graphics/mime_unknown.gif
+%%IMPDIR%%/graphics/newmail.gif
+%%IMPDIR%%/graphics/next-grey.gif
+%%IMPDIR%%/graphics/next.gif
+%%IMPDIR%%/graphics/open_folder.gif
+%%IMPDIR%%/graphics/prefs.gif
+%%IMPDIR%%/graphics/prev-grey.gif
+%%IMPDIR%%/graphics/prev.gif
+%%IMPDIR%%/graphics/red.gif
+%%IMPDIR%%/graphics/reload.gif
+%%IMPDIR%%/graphics/rhand.gif
+%%IMPDIR%%/graphics/search.gif
+%%IMPDIR%%/graphics/sm-lg.gif
+%%IMPDIR%%/graphics/source.gif
+%%IMPDIR%%/graphics/up.gif
+%%IMPDIR%%/imp.css
+%%IMPDIR%%/index.php3
+%%IMPDIR%%/ldap.result.php3
+%%IMPDIR%%/ldap.search.php3
+%%IMPDIR%%/lib/db.dummy
+%%IMPDIR%%/lib/db.informix
+%%IMPDIR%%/lib/db.mysql
+%%IMPDIR%%/lib/db.oci8
+%%IMPDIR%%/lib/db.oracle
+%%IMPDIR%%/lib/db.pgsql
+%%IMPDIR%%/lib/db.sybase
+%%IMPDIR%%/lib/imp.lib
+%%IMPDIR%%/lib/js/browser_detect.js
+%%IMPDIR%%/lib/js/browser_detect_full.js
+%%IMPDIR%%/lib/js/msie_generic_help.js
+%%IMPDIR%%/lib/js/ns_generic_help.js
+%%IMPDIR%%/lib/js/open_compose_win.js
+%%IMPDIR%%/lib/js/open_contacts.js
+%%IMPDIR%%/lib/mimetypes.lib
+%%IMPDIR%%/lib/postconf.php3
+%%IMPDIR%%/lib/version.php
+%%IMPDIR%%/locale/ca/compose.help
+%%IMPDIR%%/locale/ca/compose.lang
+%%IMPDIR%%/locale/ca/contacts.help
+%%IMPDIR%%/locale/ca/contacts.lang
+%%IMPDIR%%/locale/ca/folders.help
+%%IMPDIR%%/locale/ca/folders.lang
+%%IMPDIR%%/locale/ca/help.lang
+%%IMPDIR%%/locale/ca/horde.lang
+%%IMPDIR%%/locale/ca/login.help
+%%IMPDIR%%/locale/ca/login.lang
+%%IMPDIR%%/locale/ca/mailbox.lang
+%%IMPDIR%%/locale/ca/menu.lang
+%%IMPDIR%%/locale/ca/message.lang
+%%IMPDIR%%/locale/ca/newuser.entro.txt
+%%IMPDIR%%/locale/ca/newuser.intro.txt
+%%IMPDIR%%/locale/ca/newuser.lang
+%%IMPDIR%%/locale/ca/newuser.start.txt
+%%IMPDIR%%/locale/ca/openwin.lang
+%%IMPDIR%%/locale/ca/passwd.lang
+%%IMPDIR%%/locale/ca/prefs.lang
+%%IMPDIR%%/locale/ca/select.lang
+%%IMPDIR%%/locale/ca/spelling.lang
+%%IMPDIR%%/locale/ca/status.lang
+%%IMPDIR%%/locale/cs/compose.help
+%%IMPDIR%%/locale/cs/compose.lang
+%%IMPDIR%%/locale/cs/contacts.help
+%%IMPDIR%%/locale/cs/contacts.lang
+%%IMPDIR%%/locale/cs/folders.help
+%%IMPDIR%%/locale/cs/folders.lang
+%%IMPDIR%%/locale/cs/help.lang
+%%IMPDIR%%/locale/cs/horde.lang
+%%IMPDIR%%/locale/cs/login.help
+%%IMPDIR%%/locale/cs/login.lang
+%%IMPDIR%%/locale/cs/mailbox.lang
+%%IMPDIR%%/locale/cs/menu.lang
+%%IMPDIR%%/locale/cs/message.lang
+%%IMPDIR%%/locale/cs/newuser.entro.txt
+%%IMPDIR%%/locale/cs/newuser.intro.txt
+%%IMPDIR%%/locale/cs/newuser.lang
+%%IMPDIR%%/locale/cs/newuser.start.txt
+%%IMPDIR%%/locale/cs/openwin.lang
+%%IMPDIR%%/locale/cs/passwd.lang
+%%IMPDIR%%/locale/cs/prefs.lang
+%%IMPDIR%%/locale/cs/select.lang
+%%IMPDIR%%/locale/cs/spelling.lang
+%%IMPDIR%%/locale/cs/status.lang
+%%IMPDIR%%/locale/da/compose.help
+%%IMPDIR%%/locale/da/compose.lang
+%%IMPDIR%%/locale/da/contacts.help
+%%IMPDIR%%/locale/da/contacts.lang
+%%IMPDIR%%/locale/da/folders.help
+%%IMPDIR%%/locale/da/folders.lang
+%%IMPDIR%%/locale/da/help.lang
+%%IMPDIR%%/locale/da/horde.lang
+%%IMPDIR%%/locale/da/login.help
+%%IMPDIR%%/locale/da/login.lang
+%%IMPDIR%%/locale/da/mailbox.lang
+%%IMPDIR%%/locale/da/menu.lang
+%%IMPDIR%%/locale/da/message.lang
+%%IMPDIR%%/locale/da/newuser.entro.txt
+%%IMPDIR%%/locale/da/newuser.intro.txt
+%%IMPDIR%%/locale/da/newuser.lang
+%%IMPDIR%%/locale/da/newuser.start.txt
+%%IMPDIR%%/locale/da/openwin.lang
+%%IMPDIR%%/locale/da/passwd.lang
+%%IMPDIR%%/locale/da/prefs.lang
+%%IMPDIR%%/locale/da/select.lang
+%%IMPDIR%%/locale/da/spelling.lang
+%%IMPDIR%%/locale/da/status.lang
+%%IMPDIR%%/locale/de/compose.help
+%%IMPDIR%%/locale/de/compose.lang
+%%IMPDIR%%/locale/de/contacts.help
+%%IMPDIR%%/locale/de/contacts.lang
+%%IMPDIR%%/locale/de/folders.help
+%%IMPDIR%%/locale/de/folders.lang
+%%IMPDIR%%/locale/de/help.lang
+%%IMPDIR%%/locale/de/horde.lang
+%%IMPDIR%%/locale/de/login.help
+%%IMPDIR%%/locale/de/login.lang
+%%IMPDIR%%/locale/de/mailbox.lang
+%%IMPDIR%%/locale/de/menu.lang
+%%IMPDIR%%/locale/de/message.lang
+%%IMPDIR%%/locale/de/newuser.entro.txt
+%%IMPDIR%%/locale/de/newuser.intro.txt
+%%IMPDIR%%/locale/de/newuser.lang
+%%IMPDIR%%/locale/de/newuser.start.txt
+%%IMPDIR%%/locale/de/openwin.lang
+%%IMPDIR%%/locale/de/passwd.lang
+%%IMPDIR%%/locale/de/prefs.lang
+%%IMPDIR%%/locale/de/select.lang
+%%IMPDIR%%/locale/de/spelling.lang
+%%IMPDIR%%/locale/de/status.lang
+%%IMPDIR%%/locale/defines/compose.help
+%%IMPDIR%%/locale/defines/contacts.help
+%%IMPDIR%%/locale/defines/folders.help
+%%IMPDIR%%/locale/defines/login.help
+%%IMPDIR%%/locale/el/compose.help
+%%IMPDIR%%/locale/el/compose.lang
+%%IMPDIR%%/locale/el/contacts.help
+%%IMPDIR%%/locale/el/contacts.lang
+%%IMPDIR%%/locale/el/folders.help
+%%IMPDIR%%/locale/el/folders.lang
+%%IMPDIR%%/locale/el/help.lang
+%%IMPDIR%%/locale/el/horde.lang
+%%IMPDIR%%/locale/el/login.help
+%%IMPDIR%%/locale/el/login.lang
+%%IMPDIR%%/locale/el/mailbox.lang
+%%IMPDIR%%/locale/el/menu.lang
+%%IMPDIR%%/locale/el/message.lang
+%%IMPDIR%%/locale/el/newuser.entro.txt
+%%IMPDIR%%/locale/el/newuser.intro.txt
+%%IMPDIR%%/locale/el/newuser.lang
+%%IMPDIR%%/locale/el/newuser.start.txt
+%%IMPDIR%%/locale/el/openwin.lang
+%%IMPDIR%%/locale/el/passwd.lang
+%%IMPDIR%%/locale/el/prefs.lang
+%%IMPDIR%%/locale/el/select.lang
+%%IMPDIR%%/locale/el/spelling.lang
+%%IMPDIR%%/locale/el/status.lang
+%%IMPDIR%%/locale/en/compose.help
+%%IMPDIR%%/locale/en/compose.lang
+%%IMPDIR%%/locale/en/contacts.help
+%%IMPDIR%%/locale/en/contacts.lang
+%%IMPDIR%%/locale/en/folders.help
+%%IMPDIR%%/locale/en/folders.lang
+%%IMPDIR%%/locale/en/help.lang
+%%IMPDIR%%/locale/en/horde.lang
+%%IMPDIR%%/locale/en/login.help
+%%IMPDIR%%/locale/en/login.lang
+%%IMPDIR%%/locale/en/mailbox.lang
+%%IMPDIR%%/locale/en/menu.lang
+%%IMPDIR%%/locale/en/message.lang
+%%IMPDIR%%/locale/en/newuser.entro.txt
+%%IMPDIR%%/locale/en/newuser.intro.txt
+%%IMPDIR%%/locale/en/newuser.lang
+%%IMPDIR%%/locale/en/newuser.start.txt
+%%IMPDIR%%/locale/en/openwin.lang
+%%IMPDIR%%/locale/en/passwd.lang
+%%IMPDIR%%/locale/en/prefs.lang
+%%IMPDIR%%/locale/en/select.lang
+%%IMPDIR%%/locale/en/spelling.lang
+%%IMPDIR%%/locale/en/status.lang
+%%IMPDIR%%/locale/es/compose.help
+%%IMPDIR%%/locale/es/compose.lang
+%%IMPDIR%%/locale/es/contacts.help
+%%IMPDIR%%/locale/es/contacts.lang
+%%IMPDIR%%/locale/es/folders.help
+%%IMPDIR%%/locale/es/folders.lang
+%%IMPDIR%%/locale/es/help.lang
+%%IMPDIR%%/locale/es/horde.lang
+%%IMPDIR%%/locale/es/login.help
+%%IMPDIR%%/locale/es/login.lang
+%%IMPDIR%%/locale/es/mailbox.lang
+%%IMPDIR%%/locale/es/menu.lang
+%%IMPDIR%%/locale/es/message.lang
+%%IMPDIR%%/locale/es/newuser.entro.txt
+%%IMPDIR%%/locale/es/newuser.intro.txt
+%%IMPDIR%%/locale/es/newuser.lang
+%%IMPDIR%%/locale/es/newuser.start.txt
+%%IMPDIR%%/locale/es/openwin.lang
+%%IMPDIR%%/locale/es/passwd.lang
+%%IMPDIR%%/locale/es/prefs.lang
+%%IMPDIR%%/locale/es/select.lang
+%%IMPDIR%%/locale/es/spelling.lang
+%%IMPDIR%%/locale/es/status.lang
+%%IMPDIR%%/locale/et/compose.help
+%%IMPDIR%%/locale/et/compose.lang
+%%IMPDIR%%/locale/et/contacts.help
+%%IMPDIR%%/locale/et/contacts.lang
+%%IMPDIR%%/locale/et/folders.help
+%%IMPDIR%%/locale/et/folders.lang
+%%IMPDIR%%/locale/et/help.lang
+%%IMPDIR%%/locale/et/horde.lang
+%%IMPDIR%%/locale/et/login.help
+%%IMPDIR%%/locale/et/login.lang
+%%IMPDIR%%/locale/et/mailbox.lang
+%%IMPDIR%%/locale/et/menu.lang
+%%IMPDIR%%/locale/et/message.lang
+%%IMPDIR%%/locale/et/newuser.entro.txt
+%%IMPDIR%%/locale/et/newuser.intro.txt
+%%IMPDIR%%/locale/et/newuser.lang
+%%IMPDIR%%/locale/et/newuser.start.txt
+%%IMPDIR%%/locale/et/openwin.lang
+%%IMPDIR%%/locale/et/passwd.lang
+%%IMPDIR%%/locale/et/prefs.lang
+%%IMPDIR%%/locale/et/select.lang
+%%IMPDIR%%/locale/et/spelling.lang
+%%IMPDIR%%/locale/et/status.lang
+%%IMPDIR%%/locale/fi/compose.help
+%%IMPDIR%%/locale/fi/compose.lang
+%%IMPDIR%%/locale/fi/contacts.help
+%%IMPDIR%%/locale/fi/contacts.lang
+%%IMPDIR%%/locale/fi/folders.help
+%%IMPDIR%%/locale/fi/folders.lang
+%%IMPDIR%%/locale/fi/help.lang
+%%IMPDIR%%/locale/fi/horde.lang
+%%IMPDIR%%/locale/fi/login.help
+%%IMPDIR%%/locale/fi/login.lang
+%%IMPDIR%%/locale/fi/mailbox.lang
+%%IMPDIR%%/locale/fi/menu.lang
+%%IMPDIR%%/locale/fi/message.lang
+%%IMPDIR%%/locale/fi/newuser.entro.txt
+%%IMPDIR%%/locale/fi/newuser.intro.txt
+%%IMPDIR%%/locale/fi/newuser.lang
+%%IMPDIR%%/locale/fi/newuser.start.txt
+%%IMPDIR%%/locale/fi/openwin.lang
+%%IMPDIR%%/locale/fi/passwd.lang
+%%IMPDIR%%/locale/fi/prefs.lang
+%%IMPDIR%%/locale/fi/select.lang
+%%IMPDIR%%/locale/fi/spelling.lang
+%%IMPDIR%%/locale/fi/status.lang
+%%IMPDIR%%/locale/fr/compose.help
+%%IMPDIR%%/locale/fr/compose.lang
+%%IMPDIR%%/locale/fr/contacts.help
+%%IMPDIR%%/locale/fr/contacts.lang
+%%IMPDIR%%/locale/fr/folders.help
+%%IMPDIR%%/locale/fr/folders.lang
+%%IMPDIR%%/locale/fr/help.lang
+%%IMPDIR%%/locale/fr/horde.lang
+%%IMPDIR%%/locale/fr/lang.lang
+%%IMPDIR%%/locale/fr/login.help
+%%IMPDIR%%/locale/fr/login.lang
+%%IMPDIR%%/locale/fr/mailbox.lang
+%%IMPDIR%%/locale/fr/menu.lang
+%%IMPDIR%%/locale/fr/message.lang
+%%IMPDIR%%/locale/fr/newuser.entro.txt
+%%IMPDIR%%/locale/fr/newuser.intro.txt
+%%IMPDIR%%/locale/fr/newuser.lang
+%%IMPDIR%%/locale/fr/newuser.start.txt
+%%IMPDIR%%/locale/fr/openwin.lang
+%%IMPDIR%%/locale/fr/passwd.lang
+%%IMPDIR%%/locale/fr/prefs.lang
+%%IMPDIR%%/locale/fr/select.lang
+%%IMPDIR%%/locale/fr/spelling.lang
+%%IMPDIR%%/locale/fr/status.lang
+%%IMPDIR%%/locale/hu/compose.help
+%%IMPDIR%%/locale/hu/compose.lang
+%%IMPDIR%%/locale/hu/contacts.help
+%%IMPDIR%%/locale/hu/contacts.lang
+%%IMPDIR%%/locale/hu/folders.help
+%%IMPDIR%%/locale/hu/folders.lang
+%%IMPDIR%%/locale/hu/help.lang
+%%IMPDIR%%/locale/hu/horde.lang
+%%IMPDIR%%/locale/hu/login.help
+%%IMPDIR%%/locale/hu/login.lang
+%%IMPDIR%%/locale/hu/mailbox.lang
+%%IMPDIR%%/locale/hu/menu.lang
+%%IMPDIR%%/locale/hu/message.lang
+%%IMPDIR%%/locale/hu/newuser.entro.txt
+%%IMPDIR%%/locale/hu/newuser.intro.txt
+%%IMPDIR%%/locale/hu/newuser.lang
+%%IMPDIR%%/locale/hu/newuser.start.txt
+%%IMPDIR%%/locale/hu/openwin.lang
+%%IMPDIR%%/locale/hu/passwd.lang
+%%IMPDIR%%/locale/hu/prefs.lang
+%%IMPDIR%%/locale/hu/select.lang
+%%IMPDIR%%/locale/hu/spelling.lang
+%%IMPDIR%%/locale/hu/status.lang
+%%IMPDIR%%/locale/id/compose.help
+%%IMPDIR%%/locale/id/compose.lang
+%%IMPDIR%%/locale/id/contacts.help
+%%IMPDIR%%/locale/id/contacts.lang
+%%IMPDIR%%/locale/id/folders.help
+%%IMPDIR%%/locale/id/folders.lang
+%%IMPDIR%%/locale/id/help.lang
+%%IMPDIR%%/locale/id/horde.lang
+%%IMPDIR%%/locale/id/login.help
+%%IMPDIR%%/locale/id/login.lang
+%%IMPDIR%%/locale/id/mailbox.lang
+%%IMPDIR%%/locale/id/menu.lang
+%%IMPDIR%%/locale/id/message.lang
+%%IMPDIR%%/locale/id/newuser.entro.txt
+%%IMPDIR%%/locale/id/newuser.intro.txt
+%%IMPDIR%%/locale/id/newuser.lang
+%%IMPDIR%%/locale/id/newuser.start.txt
+%%IMPDIR%%/locale/id/openwin.lang
+%%IMPDIR%%/locale/id/passwd.lang
+%%IMPDIR%%/locale/id/prefs.lang
+%%IMPDIR%%/locale/id/select.lang
+%%IMPDIR%%/locale/id/spelling.lang
+%%IMPDIR%%/locale/id/status.lang
+%%IMPDIR%%/locale/is/compose.help
+%%IMPDIR%%/locale/is/compose.lang
+%%IMPDIR%%/locale/is/contacts.help
+%%IMPDIR%%/locale/is/contacts.lang
+%%IMPDIR%%/locale/is/folders.help
+%%IMPDIR%%/locale/is/folders.lang
+%%IMPDIR%%/locale/is/help.lang
+%%IMPDIR%%/locale/is/horde.lang
+%%IMPDIR%%/locale/is/login.help
+%%IMPDIR%%/locale/is/login.lang
+%%IMPDIR%%/locale/is/mailbox.lang
+%%IMPDIR%%/locale/is/menu.lang
+%%IMPDIR%%/locale/is/message.lang
+%%IMPDIR%%/locale/is/newuser.entro.txt
+%%IMPDIR%%/locale/is/newuser.intro.txt
+%%IMPDIR%%/locale/is/newuser.lang
+%%IMPDIR%%/locale/is/newuser.start.txt
+%%IMPDIR%%/locale/is/openwin.lang
+%%IMPDIR%%/locale/is/passwd.lang
+%%IMPDIR%%/locale/is/prefs.lang
+%%IMPDIR%%/locale/is/select.lang
+%%IMPDIR%%/locale/is/spelling.lang
+%%IMPDIR%%/locale/is/status.lang
+%%IMPDIR%%/locale/it/compose.help
+%%IMPDIR%%/locale/it/compose.lang
+%%IMPDIR%%/locale/it/contacts.help
+%%IMPDIR%%/locale/it/contacts.lang
+%%IMPDIR%%/locale/it/folders.help
+%%IMPDIR%%/locale/it/folders.lang
+%%IMPDIR%%/locale/it/help.lang
+%%IMPDIR%%/locale/it/horde.lang
+%%IMPDIR%%/locale/it/login.help
+%%IMPDIR%%/locale/it/login.lang
+%%IMPDIR%%/locale/it/mailbox.lang
+%%IMPDIR%%/locale/it/menu.lang
+%%IMPDIR%%/locale/it/message.lang
+%%IMPDIR%%/locale/it/newuser.entro.txt
+%%IMPDIR%%/locale/it/newuser.intro.txt
+%%IMPDIR%%/locale/it/newuser.lang
+%%IMPDIR%%/locale/it/newuser.start.txt
+%%IMPDIR%%/locale/it/openwin.lang
+%%IMPDIR%%/locale/it/passwd.lang
+%%IMPDIR%%/locale/it/prefs.lang
+%%IMPDIR%%/locale/it/select.lang
+%%IMPDIR%%/locale/it/spelling.lang
+%%IMPDIR%%/locale/it/status.lang
+%%IMPDIR%%/locale/kr/compose.help
+%%IMPDIR%%/locale/kr/compose.lang
+%%IMPDIR%%/locale/kr/contacts.help
+%%IMPDIR%%/locale/kr/contacts.lang
+%%IMPDIR%%/locale/kr/folders.help
+%%IMPDIR%%/locale/kr/folders.lang
+%%IMPDIR%%/locale/kr/help.lang
+%%IMPDIR%%/locale/kr/horde.lang
+%%IMPDIR%%/locale/kr/login.help
+%%IMPDIR%%/locale/kr/login.lang
+%%IMPDIR%%/locale/kr/mailbox.lang
+%%IMPDIR%%/locale/kr/menu.lang
+%%IMPDIR%%/locale/kr/message.lang
+%%IMPDIR%%/locale/kr/newuser.entro.txt
+%%IMPDIR%%/locale/kr/newuser.intro.txt
+%%IMPDIR%%/locale/kr/newuser.lang
+%%IMPDIR%%/locale/kr/newuser.start.txt
+%%IMPDIR%%/locale/kr/openwin.lang
+%%IMPDIR%%/locale/kr/passwd.lang
+%%IMPDIR%%/locale/kr/prefs.lang
+%%IMPDIR%%/locale/kr/select.lang
+%%IMPDIR%%/locale/kr/spelling.lang
+%%IMPDIR%%/locale/kr/status.lang
+%%IMPDIR%%/locale/local/compose.help
+%%IMPDIR%%/locale/local/compose.lang
+%%IMPDIR%%/locale/local/contacts.help
+%%IMPDIR%%/locale/local/contacts.lang
+%%IMPDIR%%/locale/local/folders.help
+%%IMPDIR%%/locale/local/folders.lang
+%%IMPDIR%%/locale/local/help.lang
+%%IMPDIR%%/locale/local/horde.lang
+%%IMPDIR%%/locale/local/lang.lang
+%%IMPDIR%%/locale/local/login.help
+%%IMPDIR%%/locale/local/login.lang
+%%IMPDIR%%/locale/local/mailbox.lang
+%%IMPDIR%%/locale/local/menu.lang
+%%IMPDIR%%/locale/local/message.lang
+%%IMPDIR%%/locale/local/newuser.lang
+%%IMPDIR%%/locale/local/openwin.lang
+%%IMPDIR%%/locale/local/passwd.lang
+%%IMPDIR%%/locale/local/prefs.lang
+%%IMPDIR%%/locale/local/select.lang
+%%IMPDIR%%/locale/local/spelling.lang
+%%IMPDIR%%/locale/local/status.lang
+%%IMPDIR%%/locale/lt/compose.help
+%%IMPDIR%%/locale/lt/compose.lang
+%%IMPDIR%%/locale/lt/contacts.help
+%%IMPDIR%%/locale/lt/contacts.lang
+%%IMPDIR%%/locale/lt/folders.help
+%%IMPDIR%%/locale/lt/folders.lang
+%%IMPDIR%%/locale/lt/help.lang
+%%IMPDIR%%/locale/lt/horde.lang
+%%IMPDIR%%/locale/lt/ldap.result.lang
+%%IMPDIR%%/locale/lt/ldap.search.lang
+%%IMPDIR%%/locale/lt/login.help
+%%IMPDIR%%/locale/lt/login.lang
+%%IMPDIR%%/locale/lt/mailbox.lang
+%%IMPDIR%%/locale/lt/menu.lang
+%%IMPDIR%%/locale/lt/message.lang
+%%IMPDIR%%/locale/lt/newuser.entro.txt
+%%IMPDIR%%/locale/lt/newuser.intro.txt
+%%IMPDIR%%/locale/lt/newuser.lang
+%%IMPDIR%%/locale/lt/newuser.start.txt
+%%IMPDIR%%/locale/lt/openwin.lang
+%%IMPDIR%%/locale/lt/passwd.lang
+%%IMPDIR%%/locale/lt/prefs.lang
+%%IMPDIR%%/locale/lt/select.lang
+%%IMPDIR%%/locale/lt/spelling.lang
+%%IMPDIR%%/locale/lt/status.lang
+%%IMPDIR%%/locale/nl/compose.help
+%%IMPDIR%%/locale/nl/compose.lang
+%%IMPDIR%%/locale/nl/contacts.help
+%%IMPDIR%%/locale/nl/contacts.lang
+%%IMPDIR%%/locale/nl/folders.help
+%%IMPDIR%%/locale/nl/folders.lang
+%%IMPDIR%%/locale/nl/help.lang
+%%IMPDIR%%/locale/nl/horde.lang
+%%IMPDIR%%/locale/nl/login.help
+%%IMPDIR%%/locale/nl/login.lang
+%%IMPDIR%%/locale/nl/mailbox.lang
+%%IMPDIR%%/locale/nl/menu.lang
+%%IMPDIR%%/locale/nl/message.lang
+%%IMPDIR%%/locale/nl/newuser.entro.txt
+%%IMPDIR%%/locale/nl/newuser.intro.txt
+%%IMPDIR%%/locale/nl/newuser.lang
+%%IMPDIR%%/locale/nl/newuser.start.txt
+%%IMPDIR%%/locale/nl/openwin.lang
+%%IMPDIR%%/locale/nl/passwd.lang
+%%IMPDIR%%/locale/nl/prefs.lang
+%%IMPDIR%%/locale/nl/select.lang
+%%IMPDIR%%/locale/nl/spelling.lang
+%%IMPDIR%%/locale/nl/status.lang
+%%IMPDIR%%/locale/no-bok/compose.help
+%%IMPDIR%%/locale/no-bok/compose.lang
+%%IMPDIR%%/locale/no-bok/contacts.help
+%%IMPDIR%%/locale/no-bok/contacts.lang
+%%IMPDIR%%/locale/no-bok/folders.help
+%%IMPDIR%%/locale/no-bok/folders.lang
+%%IMPDIR%%/locale/no-bok/help.lang
+%%IMPDIR%%/locale/no-bok/horde.lang
+%%IMPDIR%%/locale/no-bok/login.help
+%%IMPDIR%%/locale/no-bok/login.lang
+%%IMPDIR%%/locale/no-bok/mailbox.lang
+%%IMPDIR%%/locale/no-bok/menu.lang
+%%IMPDIR%%/locale/no-bok/message.lang
+%%IMPDIR%%/locale/no-bok/newuser.entro.txt
+%%IMPDIR%%/locale/no-bok/newuser.intro.txt
+%%IMPDIR%%/locale/no-bok/newuser.lang
+%%IMPDIR%%/locale/no-bok/newuser.start.txt
+%%IMPDIR%%/locale/no-bok/openwin.lang
+%%IMPDIR%%/locale/no-bok/passwd.lang
+%%IMPDIR%%/locale/no-bok/prefs.lang
+%%IMPDIR%%/locale/no-bok/select.lang
+%%IMPDIR%%/locale/no-bok/spelling.lang
+%%IMPDIR%%/locale/no-bok/status.lang
+%%IMPDIR%%/locale/no-nyn/compose.help
+%%IMPDIR%%/locale/no-nyn/compose.lang
+%%IMPDIR%%/locale/no-nyn/contacts.help
+%%IMPDIR%%/locale/no-nyn/contacts.lang
+%%IMPDIR%%/locale/no-nyn/folders.help
+%%IMPDIR%%/locale/no-nyn/folders.lang
+%%IMPDIR%%/locale/no-nyn/help.lang
+%%IMPDIR%%/locale/no-nyn/horde.lang
+%%IMPDIR%%/locale/no-nyn/login.help
+%%IMPDIR%%/locale/no-nyn/login.lang
+%%IMPDIR%%/locale/no-nyn/mailbox.lang
+%%IMPDIR%%/locale/no-nyn/menu.lang
+%%IMPDIR%%/locale/no-nyn/message.lang
+%%IMPDIR%%/locale/no-nyn/newuser.entro.txt
+%%IMPDIR%%/locale/no-nyn/newuser.intro.txt
+%%IMPDIR%%/locale/no-nyn/newuser.lang
+%%IMPDIR%%/locale/no-nyn/newuser.start.txt
+%%IMPDIR%%/locale/no-nyn/openwin.lang
+%%IMPDIR%%/locale/no-nyn/passwd.lang
+%%IMPDIR%%/locale/no-nyn/prefs.lang
+%%IMPDIR%%/locale/no-nyn/select.lang
+%%IMPDIR%%/locale/no-nyn/spelling.lang
+%%IMPDIR%%/locale/no-nyn/status.lang
+%%IMPDIR%%/locale/pl/compose.help
+%%IMPDIR%%/locale/pl/compose.lang
+%%IMPDIR%%/locale/pl/contacts.help
+%%IMPDIR%%/locale/pl/contacts.lang
+%%IMPDIR%%/locale/pl/folders.help
+%%IMPDIR%%/locale/pl/folders.lang
+%%IMPDIR%%/locale/pl/help.lang
+%%IMPDIR%%/locale/pl/horde.lang
+%%IMPDIR%%/locale/pl/login.help
+%%IMPDIR%%/locale/pl/login.lang
+%%IMPDIR%%/locale/pl/mailbox.lang
+%%IMPDIR%%/locale/pl/menu.lang
+%%IMPDIR%%/locale/pl/message.lang
+%%IMPDIR%%/locale/pl/newuser.entro.txt
+%%IMPDIR%%/locale/pl/newuser.intro.txt
+%%IMPDIR%%/locale/pl/newuser.lang
+%%IMPDIR%%/locale/pl/newuser.start.txt
+%%IMPDIR%%/locale/pl/openwin.lang
+%%IMPDIR%%/locale/pl/passwd.lang
+%%IMPDIR%%/locale/pl/prefs.lang
+%%IMPDIR%%/locale/pl/select.lang
+%%IMPDIR%%/locale/pl/spelling.lang
+%%IMPDIR%%/locale/pl/status.lang
+%%IMPDIR%%/locale/pt-BR/compose.help
+%%IMPDIR%%/locale/pt-BR/compose.lang
+%%IMPDIR%%/locale/pt-BR/contacts.help
+%%IMPDIR%%/locale/pt-BR/contacts.lang
+%%IMPDIR%%/locale/pt-BR/folders.help
+%%IMPDIR%%/locale/pt-BR/folders.lang
+%%IMPDIR%%/locale/pt-BR/help.lang
+%%IMPDIR%%/locale/pt-BR/horde.lang
+%%IMPDIR%%/locale/pt-BR/login.help
+%%IMPDIR%%/locale/pt-BR/login.lang
+%%IMPDIR%%/locale/pt-BR/mailbox.lang
+%%IMPDIR%%/locale/pt-BR/menu.lang
+%%IMPDIR%%/locale/pt-BR/message.lang
+%%IMPDIR%%/locale/pt-BR/newuser.entro.txt
+%%IMPDIR%%/locale/pt-BR/newuser.intro.txt
+%%IMPDIR%%/locale/pt-BR/newuser.lang
+%%IMPDIR%%/locale/pt-BR/newuser.start.txt
+%%IMPDIR%%/locale/pt-BR/openwin.lang
+%%IMPDIR%%/locale/pt-BR/passwd.lang
+%%IMPDIR%%/locale/pt-BR/prefs.lang
+%%IMPDIR%%/locale/pt-BR/select.lang
+%%IMPDIR%%/locale/pt-BR/spelling.lang
+%%IMPDIR%%/locale/pt-BR/status.lang
+%%IMPDIR%%/locale/pt/compose.help
+%%IMPDIR%%/locale/pt/compose.lang
+%%IMPDIR%%/locale/pt/contacts.help
+%%IMPDIR%%/locale/pt/contacts.lang
+%%IMPDIR%%/locale/pt/folders.help
+%%IMPDIR%%/locale/pt/folders.lang
+%%IMPDIR%%/locale/pt/help.lang
+%%IMPDIR%%/locale/pt/horde.lang
+%%IMPDIR%%/locale/pt/login.help
+%%IMPDIR%%/locale/pt/login.lang
+%%IMPDIR%%/locale/pt/mailbox.lang
+%%IMPDIR%%/locale/pt/menu.lang
+%%IMPDIR%%/locale/pt/message.lang
+%%IMPDIR%%/locale/pt/newuser.entro.txt
+%%IMPDIR%%/locale/pt/newuser.intro.txt
+%%IMPDIR%%/locale/pt/newuser.lang
+%%IMPDIR%%/locale/pt/newuser.start.txt
+%%IMPDIR%%/locale/pt/openwin.lang
+%%IMPDIR%%/locale/pt/passwd.lang
+%%IMPDIR%%/locale/pt/prefs.lang
+%%IMPDIR%%/locale/pt/select.lang
+%%IMPDIR%%/locale/pt/spelling.lang
+%%IMPDIR%%/locale/pt/status.lang
+%%IMPDIR%%/locale/ru/compose.help
+%%IMPDIR%%/locale/ru/compose.lang
+%%IMPDIR%%/locale/ru/contacts.help
+%%IMPDIR%%/locale/ru/contacts.lang
+%%IMPDIR%%/locale/ru/folders.help
+%%IMPDIR%%/locale/ru/folders.lang
+%%IMPDIR%%/locale/ru/help.lang
+%%IMPDIR%%/locale/ru/horde.lang
+%%IMPDIR%%/locale/ru/login.help
+%%IMPDIR%%/locale/ru/login.lang
+%%IMPDIR%%/locale/ru/mailbox.lang
+%%IMPDIR%%/locale/ru/menu.lang
+%%IMPDIR%%/locale/ru/message.lang
+%%IMPDIR%%/locale/ru/newuser.entro.txt
+%%IMPDIR%%/locale/ru/newuser.intro.txt
+%%IMPDIR%%/locale/ru/newuser.lang
+%%IMPDIR%%/locale/ru/newuser.start.txt
+%%IMPDIR%%/locale/ru/openwin.lang
+%%IMPDIR%%/locale/ru/passwd.lang
+%%IMPDIR%%/locale/ru/prefs.lang
+%%IMPDIR%%/locale/ru/select.lang
+%%IMPDIR%%/locale/ru/spelling.lang
+%%IMPDIR%%/locale/ru/status.lang
+%%IMPDIR%%/locale/se/compose.help
+%%IMPDIR%%/locale/se/compose.lang
+%%IMPDIR%%/locale/se/contacts.help
+%%IMPDIR%%/locale/se/contacts.lang
+%%IMPDIR%%/locale/se/folders.help
+%%IMPDIR%%/locale/se/folders.lang
+%%IMPDIR%%/locale/se/help.lang
+%%IMPDIR%%/locale/se/horde.lang
+%%IMPDIR%%/locale/se/login.help
+%%IMPDIR%%/locale/se/login.lang
+%%IMPDIR%%/locale/se/mailbox.lang
+%%IMPDIR%%/locale/se/menu.lang
+%%IMPDIR%%/locale/se/message.lang
+%%IMPDIR%%/locale/se/newuser.entro.txt
+%%IMPDIR%%/locale/se/newuser.intro.txt
+%%IMPDIR%%/locale/se/newuser.lang
+%%IMPDIR%%/locale/se/newuser.start.txt
+%%IMPDIR%%/locale/se/openwin.lang
+%%IMPDIR%%/locale/se/passwd.lang
+%%IMPDIR%%/locale/se/prefs.lang
+%%IMPDIR%%/locale/se/select.lang
+%%IMPDIR%%/locale/se/spelling.lang
+%%IMPDIR%%/locale/se/status.lang
+%%IMPDIR%%/locale/sk/compose.help
+%%IMPDIR%%/locale/sk/compose.lang
+%%IMPDIR%%/locale/sk/contacts.help
+%%IMPDIR%%/locale/sk/contacts.lang
+%%IMPDIR%%/locale/sk/folders.help
+%%IMPDIR%%/locale/sk/folders.lang
+%%IMPDIR%%/locale/sk/help.lang
+%%IMPDIR%%/locale/sk/horde.lang
+%%IMPDIR%%/locale/sk/login.help
+%%IMPDIR%%/locale/sk/login.lang
+%%IMPDIR%%/locale/sk/mailbox.lang
+%%IMPDIR%%/locale/sk/menu.lang
+%%IMPDIR%%/locale/sk/message.lang
+%%IMPDIR%%/locale/sk/newuser.entro.txt
+%%IMPDIR%%/locale/sk/newuser.intro.txt
+%%IMPDIR%%/locale/sk/newuser.lang
+%%IMPDIR%%/locale/sk/newuser.start.txt
+%%IMPDIR%%/locale/sk/openwin.lang
+%%IMPDIR%%/locale/sk/passwd.lang
+%%IMPDIR%%/locale/sk/prefs.lang
+%%IMPDIR%%/locale/sk/select.lang
+%%IMPDIR%%/locale/sk/spelling.lang
+%%IMPDIR%%/locale/sk/status.lang
+%%IMPDIR%%/locale/sl/compose.help
+%%IMPDIR%%/locale/sl/compose.lang
+%%IMPDIR%%/locale/sl/contacts.help
+%%IMPDIR%%/locale/sl/contacts.lang
+%%IMPDIR%%/locale/sl/folders.help
+%%IMPDIR%%/locale/sl/folders.lang
+%%IMPDIR%%/locale/sl/help.lang
+%%IMPDIR%%/locale/sl/horde.lang
+%%IMPDIR%%/locale/sl/login.help
+%%IMPDIR%%/locale/sl/login.lang
+%%IMPDIR%%/locale/sl/mailbox.lang
+%%IMPDIR%%/locale/sl/menu.lang
+%%IMPDIR%%/locale/sl/message.lang
+%%IMPDIR%%/locale/sl/newuser.entro.txt
+%%IMPDIR%%/locale/sl/newuser.intro.txt
+%%IMPDIR%%/locale/sl/newuser.lang
+%%IMPDIR%%/locale/sl/newuser.start.txt
+%%IMPDIR%%/locale/sl/openwin.lang
+%%IMPDIR%%/locale/sl/passwd.lang
+%%IMPDIR%%/locale/sl/prefs.lang
+%%IMPDIR%%/locale/sl/select.lang
+%%IMPDIR%%/locale/sl/spelling.lang
+%%IMPDIR%%/locale/sl/status.lang
+%%IMPDIR%%/locale/zh-tw/compose.help
+%%IMPDIR%%/locale/zh-tw/compose.lang
+%%IMPDIR%%/locale/zh-tw/contacts.help
+%%IMPDIR%%/locale/zh-tw/contacts.lang
+%%IMPDIR%%/locale/zh-tw/folders.help
+%%IMPDIR%%/locale/zh-tw/folders.lang
+%%IMPDIR%%/locale/zh-tw/help.lang
+%%IMPDIR%%/locale/zh-tw/horde.lang
+%%IMPDIR%%/locale/zh-tw/login.help
+%%IMPDIR%%/locale/zh-tw/login.lang
+%%IMPDIR%%/locale/zh-tw/mailbox.lang
+%%IMPDIR%%/locale/zh-tw/menu.lang
+%%IMPDIR%%/locale/zh-tw/message.lang
+%%IMPDIR%%/locale/zh-tw/newuser.entro.txt
+%%IMPDIR%%/locale/zh-tw/newuser.intro.txt
+%%IMPDIR%%/locale/zh-tw/newuser.lang
+%%IMPDIR%%/locale/zh-tw/newuser.start.txt
+%%IMPDIR%%/locale/zh-tw/openwin.lang
+%%IMPDIR%%/locale/zh-tw/passwd.lang
+%%IMPDIR%%/locale/zh-tw/prefs.lang
+%%IMPDIR%%/locale/zh-tw/select.lang
+%%IMPDIR%%/locale/zh-tw/spelling.lang
+%%IMPDIR%%/locale/zh-tw/status.lang
+%%IMPDIR%%/login.php3
+%%IMPDIR%%/mailbox.php3
+%%IMPDIR%%/menu.php3
+%%IMPDIR%%/message.php3
+%%IMPDIR%%/newuser.php3
+%%IMPDIR%%/poppassd.php3
+%%IMPDIR%%/prefs.php3
+%%IMPDIR%%/remote_login.php3
+%%IMPDIR%%/scripts/imp-cleanup.cron
+%%IMPDIR%%/scripts/pine2imp.pl
+%%IMPDIR%%/scripts/realsecure.sh
+%%IMPDIR%%/select.php3
+%%IMPDIR%%/spelling.php3
+%%IMPDIR%%/status.php3
+%%IMPDIR%%/templates/common-footer.inc
+%%IMPDIR%%/templates/common-header.inc
+%%IMPDIR%%/templates/compose/bounce.inc
+%%IMPDIR%%/templates/compose/compose.inc
+%%IMPDIR%%/templates/compose/javascript.inc
+%%IMPDIR%%/templates/compose/lynx_bounce.inc
+%%IMPDIR%%/templates/compose/lynx_compose.inc
+%%IMPDIR%%/templates/compose/results.inc
+%%IMPDIR%%/templates/contacts/add-contact-php3.inc
+%%IMPDIR%%/templates/contacts/addr-php3.inc
+%%IMPDIR%%/templates/contacts/header.inc
+%%IMPDIR%%/templates/contacts/javascript.inc
+%%IMPDIR%%/templates/contacts/ldap-php3.inc
+%%IMPDIR%%/templates/doctype.inc
+%%IMPDIR%%/templates/folders/create.inc
+%%IMPDIR%%/templates/folders/delete.inc
+%%IMPDIR%%/templates/folders/header.inc
+%%IMPDIR%%/templates/folders/rename.inc
+%%IMPDIR%%/templates/folders/subscribe.inc
+%%IMPDIR%%/templates/generic-footer.inc
+%%IMPDIR%%/templates/generic-header.inc
+%%IMPDIR%%/templates/generic-header_reload.inc
+%%IMPDIR%%/templates/index/frames_mode.inc
+%%IMPDIR%%/templates/index/imp_configurable.inc
+%%IMPDIR%%/templates/index/imp_notconfigured.inc
+%%IMPDIR%%/templates/index/imp_notsecure.inc
+%%IMPDIR%%/templates/login/login.inc
+%%IMPDIR%%/templates/login/login_lynx.inc
+%%IMPDIR%%/templates/mailbox/actions.inc
+%%IMPDIR%%/templates/mailbox/deleted_summary.inc
+%%IMPDIR%%/templates/mailbox/empty_mailbox.inc
+%%IMPDIR%%/templates/mailbox/footer.inc
+%%IMPDIR%%/templates/mailbox/header.inc
+%%IMPDIR%%/templates/mailbox/javascript.inc
+%%IMPDIR%%/templates/mailbox/lynx_actions.inc
+%%IMPDIR%%/templates/mailbox/lynx_header.inc
+%%IMPDIR%%/templates/mailbox/lynx_message_headers.inc
+%%IMPDIR%%/templates/mailbox/lynx_navbar_top.inc
+%%IMPDIR%%/templates/mailbox/message_footers.inc
+%%IMPDIR%%/templates/mailbox/message_headers.inc
+%%IMPDIR%%/templates/mailbox/message_summaries.inc
+%%IMPDIR%%/templates/mailbox/navbar_bottom.inc
+%%IMPDIR%%/templates/mailbox/navbar_top.inc
+%%IMPDIR%%/templates/mailbox/refresh_menu.inc
+%%IMPDIR%%/templates/mailbox/refresh_toolbar-javascript.inc
+%%IMPDIR%%/templates/menu/lynx_main.inc
+%%IMPDIR%%/templates/menu/menu.inc
+%%IMPDIR%%/templates/message/headers.inc
+%%IMPDIR%%/templates/message/javascript.inc
+%%IMPDIR%%/templates/message/message.inc
+%%IMPDIR%%/templates/message/navbar.inc
+%%IMPDIR%%/templates/message/navbar_aux_bottom.inc
+%%IMPDIR%%/templates/message/navbar_aux_top.inc
+%%IMPDIR%%/templates/newuser/intro.inc
+%%IMPDIR%%/templates/passwd/poppassd_error.inc
+%%IMPDIR%%/templates/passwd/poppassd_input.inc
+%%IMPDIR%%/templates/prefs/begin.inc
+%%IMPDIR%%/templates/prefs/end.inc
+%%IMPDIR%%/templates/prefs/from.inc
+%%IMPDIR%%/templates/prefs/fullname.inc
+%%IMPDIR%%/templates/prefs/lang.inc
+%%IMPDIR%%/templates/prefs/signature.inc
+%%IMPDIR%%/templates/select/body.inc
+%%IMPDIR%%/templates/select/header.inc
+%%IMPDIR%%/templates/spelling/footer.inc
+%%IMPDIR%%/templates/status/body.inc
+%%IMPDIR%%/view.php3
+@dirrm %%IMPDIR%%/templates/status
+@dirrm %%IMPDIR%%/templates/spelling
+@dirrm %%IMPDIR%%/templates/select
+@dirrm %%IMPDIR%%/templates/prefs
+@dirrm %%IMPDIR%%/templates/passwd
+@dirrm %%IMPDIR%%/templates/newuser
+@dirrm %%IMPDIR%%/templates/message
+@dirrm %%IMPDIR%%/templates/menu
+@dirrm %%IMPDIR%%/templates/mailbox
+@dirrm %%IMPDIR%%/templates/login
+@dirrm %%IMPDIR%%/templates/index
+@dirrm %%IMPDIR%%/templates/folders
+@dirrm %%IMPDIR%%/templates/contacts
+@dirrm %%IMPDIR%%/templates/compose
+@dirrm %%IMPDIR%%/templates
+@dirrm %%IMPDIR%%/scripts
+@dirrm %%IMPDIR%%/locale/zh-tw
+@dirrm %%IMPDIR%%/locale/sl
+@dirrm %%IMPDIR%%/locale/sk
+@dirrm %%IMPDIR%%/locale/se
+@dirrm %%IMPDIR%%/locale/ru
+@dirrm %%IMPDIR%%/locale/pt-BR
+@dirrm %%IMPDIR%%/locale/pt
+@dirrm %%IMPDIR%%/locale/pl
+@dirrm %%IMPDIR%%/locale/no-nyn
+@dirrm %%IMPDIR%%/locale/no-bok
+@dirrm %%IMPDIR%%/locale/nl
+@dirrm %%IMPDIR%%/locale/lt
+@dirrm %%IMPDIR%%/locale/local
+@dirrm %%IMPDIR%%/locale/kr
+@dirrm %%IMPDIR%%/locale/it
+@dirrm %%IMPDIR%%/locale/is
+@dirrm %%IMPDIR%%/locale/id
+@dirrm %%IMPDIR%%/locale/hu
+@dirrm %%IMPDIR%%/locale/fr
+@dirrm %%IMPDIR%%/locale/fi
+@dirrm %%IMPDIR%%/locale/et
+@dirrm %%IMPDIR%%/locale/es
+@dirrm %%IMPDIR%%/locale/en
+@dirrm %%IMPDIR%%/locale/el
+@dirrm %%IMPDIR%%/locale/defines
+@dirrm %%IMPDIR%%/locale/de
+@dirrm %%IMPDIR%%/locale/da
+@dirrm %%IMPDIR%%/locale/cs
+@dirrm %%IMPDIR%%/locale/ca
+@dirrm %%IMPDIR%%/locale
+@dirrm %%IMPDIR%%/lib/js
+@dirrm %%IMPDIR%%/lib
+@dirrm %%IMPDIR%%/graphics
+@dirrm %%IMPDIR%%/config
+@dirrm %%IMPDIR%%
+%%PORTDOCS%%@dirrm share/doc/imp