Upgrade to 4.0.
The major changes compared to the IMP 3.x versions are: * Much improved message format support through Horde's rewritten MIME system. * Many, many additional and improved mime viewers for attachments. * Encrypting, signing, decrypting and verifying of signed and encrypted messages (PGP/GPG and S/MIME). * Message filters moved to a separate application (Ingo) to support more filter backends and a more robust/comprehensive/easy-to-use UI. * Full charset support in folders, mailbox, message and compose views. * Mail folders in the left menu. * Experimental support for virtual folders. * Preview of attachments in compose view. * Send attachments as links. * Option to not save attachments with sent mail. * Navigation through message and mailbox views with arrow keys. * View all messages of a thread. * HTML message composition with a cross-browser WYSIWIG editor. * Fetching mails from other email accounts to view with IMP. * Message previews in mailbox view. * Prevent message loss during compositon due to session timeouts. * Management of shared IMAP folders. * Priority settings for composed messages. * User management for supported IMAP servers. * Integrated quota support. * Support for mailing list headers. * Ability to forward multiple messages at once. * Downloading of all attachments from a message as a single ZIP file. * Stripping individual attachments from messages. * Alias and "tied to" addresses in user identities. * Authentication with Horde credentials. * Graphical emoticons and country flags in message view. * Various caching improvements to drastically minimize duplicate IMAP server->web server traffic. This is a resurrection of the previous mail/imp, upgraded from mail/imp3. PR: ports/75434 Submitted by: /me
This commit is contained in:
parent
4d0eb180f0
commit
e003a17469
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=125201
30 changed files with 2676 additions and 0 deletions
247
mail/horde-imp/Makefile
Normal file
247
mail/horde-imp/Makefile
Normal file
|
@ -0,0 +1,247 @@
|
|||
# Ports collection makefile for: imp3
|
||||
# Date created: Mon Oct 08, 2001
|
||||
# Whom: Thierry Thomas (<thierry@thomas.as>)
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= imp
|
||||
PORTVERSION= 4.0
|
||||
CATEGORIES= mail www
|
||||
MASTER_SITES= ftp://ftp.horde.org/pub/imp/ \
|
||||
ftp://ftp.planetmirror.com/pub/horde/imp/ \
|
||||
ftp://ftp.au.horde.org/pub/horde/imp/ \
|
||||
ftp://ftp.be.horde.org/imp/ \
|
||||
ftp://ftp.es.horde.org/pub/imp/ \
|
||||
http://ftp.horde.org/pub/imp/
|
||||
DISTNAME= ${PORTNAME}-h3-${PORTVERSION}
|
||||
|
||||
MAINTAINER= thierry@FreeBSD.org
|
||||
COMMENT= A webmail system which accesses mail over IMAP
|
||||
|
||||
#-----------------------------------------------------------------------
|
||||
# You may define these options:
|
||||
#
|
||||
# - WITHOUT_LDAP : if you do not need OpenLDAP;
|
||||
#
|
||||
# - WITHOUT_SMIME : disable S/MIME;
|
||||
#
|
||||
# - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree;
|
||||
#
|
||||
# - WITHOUT_ASPELL : for spelling bees...
|
||||
#
|
||||
# - WITH_ISPELL : if you prefer ispell;
|
||||
#
|
||||
# - NOCRYPT : if crypto is restricted in your country;
|
||||
#
|
||||
# - WITHOUT_SSL : if you have not installed c-client WITH_SSL;
|
||||
#
|
||||
# - WITH_VALID_CERT : if you own a valid SSL certificate;
|
||||
#
|
||||
# - WITHOUT_INGO : if you don't need filters management;
|
||||
#
|
||||
# - WITHOUT_NAG : if you don't want tasks management;
|
||||
#
|
||||
# - WITHOUT_TURBA : if you do not want adressbooks;
|
||||
#
|
||||
# - WITH_HTML : enable HTML composition mode;
|
||||
#
|
||||
# - 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_IMAP-UW : IMP will work with imap-uw;
|
||||
#
|
||||
# - WITH_DOVECOT : IMP will work with dovecot;
|
||||
#
|
||||
# - WITH_COURIER-IMAP : IMP will work with courier-imap.
|
||||
#
|
||||
# These choices are mutually exclusive, and imap-uw is the default.
|
||||
#
|
||||
#-----------------------------------------------------------------------
|
||||
|
||||
RUN_DEPENDS+= ${PEARDIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL
|
||||
|
||||
CONFLICTS= imp-3.*
|
||||
|
||||
USE_PHP= imap
|
||||
.if defined(WITHOUT_TURBA)
|
||||
. if !defined(WITHOUT_LDAP)
|
||||
USE_PHP+= ldap
|
||||
. endif
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/rpc.php:${PORTSDIR}/www/horde
|
||||
.else
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/turba/minisearch.php:${PORTSDIR}/mail/turba
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_INGO)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/ingo/filters.php:${PORTSDIR}/mail/ingo
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_NAG)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/nag/data.php:${PORTSDIR}/deskutils/nag
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_SMIME)
|
||||
USE_PHP+= openssl
|
||||
.endif
|
||||
|
||||
.if !defined(NOCRYPT)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/gpg:${PORTSDIR}/security/gnupg
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_ASPELL)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/aspell:${PORTSDIR}/textproc/aspell
|
||||
.elif defined(WITH_ISPELL)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell
|
||||
.endif
|
||||
|
||||
.if defined(WITH_HTML)
|
||||
RUN_DEPENDS+= ${PEARDIR}/HTTP/Request.php:${PORTSDIR}/www/pear-HTTP_Request
|
||||
.endif
|
||||
|
||||
NO_BUILD= yes
|
||||
USE_REINPLACE= yes
|
||||
REINPLACE_ARGS= -i.beforeIMP
|
||||
|
||||
DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \
|
||||
docs/RELEASE_NOTES docs/TODO docs/UPGRADING
|
||||
CONFFILE= filter.txt header.txt menu.php mime_drivers.php motd.php \
|
||||
prefs.php servers.php trailer.txt
|
||||
SUB_DIRS= config lib locale po scripts templates themes
|
||||
|
||||
LHORDEDIR?= www/horde
|
||||
LIMPDIR= ${LHORDEDIR}/imp
|
||||
PEARDIR?= ${LOCALBASE}/share/pear
|
||||
|
||||
PLIST_SUB= IMPDIR=${LIMPDIR}
|
||||
|
||||
PKGMESSAGE= ${WRKDIR}/pkg-message
|
||||
|
||||
IMPDIR= ${PREFIX}/${LIMPDIR}
|
||||
CONFDIR= ${IMPDIR}/config
|
||||
|
||||
HORDE_INC= ${LOCALBASE}/etc/horde
|
||||
|
||||
HOSTNAME?= `/bin/hostname`
|
||||
SERVOS?= ${OPSYS}-${OSREL}
|
||||
|
||||
PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h
|
||||
|
||||
PATCH2RM= prefs.php.dist.orig servers.php.dist.orig conf.xml.orig \
|
||||
conf.xml.beforeIMP servers.php.dist.beforeIMP
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
# I have no report about the support of dkimap4 by IMP,
|
||||
# but I shall be happy to add it if someone report success with it.
|
||||
# If an IMAP server is already installed, we just record the dependence,
|
||||
# else we shall install imap-uw.
|
||||
# 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_IMAP-UW) || exists(${LOCALBASE}/libexec/imapd)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/libexec/imapd:${PORTSDIR}/mail/imap-uw
|
||||
. elif defined(WITH_CYRUS-IMAPD) || exists(${LOCALBASE}/lib/libacap.a)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/lib/libacap.a:${PORTSDIR}/mail/cyrus-imapd
|
||||
. elif defined(WITH_COURIER-IMAP) || exists(${LOCALBASE}/bin/deliverquota)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/deliverquota:${PORTSDIR}/mail/courier-imap
|
||||
. elif defined(WITH_DOVECOT) || exists(${LOCALBASE}/libexec/dovecot/imap)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/libexec/dovecot/imap:${PORTSDIR}/mail/dovecot
|
||||
. else
|
||||
RUN_DEPENDS+= ${LOCALBASE}/libexec/imapd:${PORTSDIR}/mail/imap-uw
|
||||
. endif
|
||||
.endif
|
||||
|
||||
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-configure:
|
||||
@${REINPLACE_CMD} -e "s:/usr/local:${LOCALBASE}:" ${WRKSRC}/config/conf.xml
|
||||
.if !defined(WITHOUT_ASPELL)
|
||||
@${REINPLACE_CMD} -e "s:%%ASPELL%%:${LOCALBASE}/bin/aspell:" \
|
||||
${WRKSRC}/config/conf.xml
|
||||
.elif defined(WITH_ISPELL)
|
||||
@${REINPLACE_CMD} -e "s:%%ASPELL%%:${LOCALBASE}/bin/ispell:" \
|
||||
${WRKSRC}/config/conf.xml
|
||||
.else
|
||||
@${REINPLACE_CMD} -e "s:%%ASPELL%%::" ${WRKSRC}/config/conf.xml
|
||||
.endif
|
||||
.if !defined(NOCRYPT)
|
||||
@${REINPLACE_CMD} -e "s:%%GPG%%:${LOCALBASE}/bin/gpg:" \
|
||||
${WRKSRC}/config/conf.xml
|
||||
.else
|
||||
@${REINPLACE_CMD} -e "s:%%GPG%%::" ${WRKSRC}/config/conf.xml
|
||||
.endif
|
||||
@${REINPLACE_CMD} -e "s:IMP_VERSION:IMP_VERSION . ' / ${SERVOS}':" \
|
||||
${WRKSRC}/lib/MIME/Headers.php
|
||||
@${REINPLACE_CMD} -e "s:example.com:${HOSTNAME}:g" \
|
||||
${WRKSRC}/config/servers.php.dist
|
||||
.if defined(WITHOUT_SSL)
|
||||
@${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/notls:;s:%%IMAPPORT%%:143:" \
|
||||
${WRKSRC}/config/servers.php.dist
|
||||
.else
|
||||
@${REINPLACE_CMD} -e "s:%%IMAPPORT%%:993:" ${WRKSRC}/config/servers.php.dist
|
||||
. if defined(WITH_VALID_CERT)
|
||||
@${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/ssl:" ${WRKSRC}/config/servers.php.dist
|
||||
. else
|
||||
@${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/ssl/novalidate-cert:" \
|
||||
${WRKSRC}/config/servers.php.dist
|
||||
. endif
|
||||
.endif
|
||||
@${SED} -e "s:/home/httpd/html/horde/imp:${IMPDIR}:" \
|
||||
${FILESDIR}/httpd.conf.imp > ${WRKDIR}/httpd.conf.imp
|
||||
.for fc in ${PATCH2RM}
|
||||
@${RM} ${WRKSRC}/config/${fc}
|
||||
.endfor
|
||||
@${RM} ${WRKSRC}/lib/MIME/Headers.php.beforeIMP
|
||||
|
||||
pre-install:
|
||||
.if !defined(BATCH) && !defined(WITHOUT_SSL)
|
||||
@if ! ${GREP} -q -e 'CCLIENT_SSLENABLED "yes"' ${PORTREV_H}; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure c-client with SSL support." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
@${MKDIR} ${IMPDIR}
|
||||
.for REP in ${SUB_DIRS}
|
||||
@${CP} -Rp ${WRKSRC}/${REP} ${IMPDIR}
|
||||
.endfor
|
||||
@${CP} -p ${WRKSRC}/*.php ${IMPDIR}
|
||||
.for FILE in ${CONFFILE}
|
||||
@if [ ! -f ${CONFDIR}/${FILE} ]; then \
|
||||
${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \
|
||||
fi
|
||||
.endfor
|
||||
@${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}
|
||||
@${INSTALL_DATA} ${WRKDIR}/httpd.conf.imp ${HORDE_INC}
|
||||
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${IMPDIR}
|
||||
@${CHMOD} -R o-rwx ${CONFDIR}
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
.for FILE in ${DOCS}
|
||||
@${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
|
||||
.endfor
|
||||
@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
@${SED} -e "s:%%IMPDIR%%:${IMPDIR}:g;s:%%PORTSDIR%%:${PORTSDIR}:g;" \
|
||||
-e "s:%%CONFDIR%%:${CONFDIR}:g;s:%%DOCSDIR%%:${DOCSDIR}:g" \
|
||||
< ${FILESDIR}/pkg-message.in > ${PKGMESSAGE}
|
||||
@${ECHO_MSG}
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
@${ECHO_MSG}
|
||||
|
||||
.include <bsd.port.post.mk>
|
2
mail/horde-imp/distinfo
Normal file
2
mail/horde-imp/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (imp-h3-4.0.tar.gz) = 41b7888089f98e06da6bb5f92ad1e8e7
|
||||
SIZE (imp-h3-4.0.tar.gz) = 2892010
|
31
mail/horde-imp/files/httpd.conf.imp
Normal file
31
mail/horde-imp/files/httpd.conf.imp
Normal file
|
@ -0,0 +1,31 @@
|
|||
# This is included in Apache's httpd.conf for IMP
|
||||
#
|
||||
# For security, don't serve pages from the IMP configuration and
|
||||
# library directories.
|
||||
#
|
||||
<Directory "/home/httpd/html/horde/imp/config">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
<Directory "/home/httpd/html/horde/imp/lib">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
<Directory "/home/httpd/html/horde/imp/locale">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
<Directory "/home/httpd/html/horde/imp/po">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
<Directory "/home/httpd/html/horde/imp/scripts">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
<Directory "/home/httpd/html/horde/imp/templates">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
# End of IMP configuration ================
|
||||
|
33
mail/horde-imp/files/patch-ab
Normal file
33
mail/horde-imp/files/patch-ab
Normal file
|
@ -0,0 +1,33 @@
|
|||
--- config/servers.php.dist.orig Sun Dec 12 07:36:51 2004
|
||||
+++ config/servers.php.dist Fri Dec 24 00:27:59 2004
|
||||
@@ -47,7 +47,7 @@
|
||||
*
|
||||
* folders: The folder path for the IMAP server.
|
||||
* Common values:
|
||||
- * UW-IMAP 'mail/' (note the trailing slash)
|
||||
+ * UW-IMAP 'Mail/' (note the trailing slash)
|
||||
* Cyrus, Courier-IMAP 'INBOX.' (note the trailing dot)
|
||||
* dovecot ''
|
||||
*
|
||||
@@ -174,14 +174,16 @@
|
||||
|
||||
$servers['imap'] = array(
|
||||
'name' => 'IMAP Server',
|
||||
- 'server' => 'imap.example.com',
|
||||
+// 'server' => 'imap.example.com',
|
||||
+ 'server' => 'localhost',
|
||||
'hordeauth' => false,
|
||||
- 'protocol' => 'imap/notls',
|
||||
- 'port' => 143,
|
||||
- 'folders' => 'mail/',
|
||||
+ 'protocol' => '%%PROTOCOL%%',
|
||||
+ 'port' => %%IMAPPORT%%,
|
||||
+ 'folders' => 'Mail/',
|
||||
'namespace' => '',
|
||||
'maildomain' => 'example.com',
|
||||
- 'smtphost' => 'smtp.example.com',
|
||||
+// 'smtphost' => 'smtp.example.com',
|
||||
+ 'smtphost' => 'localhost',
|
||||
'smtpport' => 25,
|
||||
'realm' => '',
|
||||
'preferred' => '',
|
11
mail/horde-imp/files/patch-ac
Normal file
11
mail/horde-imp/files/patch-ac
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- config/prefs.php.dist.orig Fri Oct 29 19:04:12 2004
|
||||
+++ config/prefs.php.dist Thu Nov 11 21:49:05 2004
|
||||
@@ -1071,7 +1071,7 @@
|
||||
// 'value' => "source_one\tsource_two"
|
||||
// refer to turba/config/sources.php for possible source values
|
||||
$_prefs['search_sources'] = array(
|
||||
- 'value' => "",
|
||||
+ 'value' => 'localsql',
|
||||
'locked' => false,
|
||||
'shared' => false,
|
||||
'type' => 'implicit');
|
25
mail/horde-imp/files/patch-config::conf.xml
Normal file
25
mail/horde-imp/files/patch-config::conf.xml
Normal file
|
@ -0,0 +1,25 @@
|
|||
--- config/conf.xml.orig Mon Nov 22 09:40:29 2004
|
||||
+++ config/conf.xml Mon Nov 29 11:51:54 2004
|
||||
@@ -6,11 +6,11 @@
|
||||
<configheader>External Utilities</configheader>
|
||||
<configstring name="spellchecker" required="false" desc="Enter the location
|
||||
of the binary to either aspell or ispell to enable the spell checker. If
|
||||
- this is empty, then spell checking will be disabled."></configstring>
|
||||
+ this is empty, then spell checking will be disabled.">%%ASPELL%%</configstring>
|
||||
<configstring name="gnupg" required="false" desc="If you want users to have
|
||||
the option of using the GNU Privacy Guard program to decrypt/encrypt PGP
|
||||
files, enter the location of the 'gpg' binary here. If this is empty this
|
||||
- feature will be disabled."></configstring>
|
||||
+ feature will be disabled.">%%GPG%%</configstring>
|
||||
<configmultienum name="gnupg_keyserver" required="false" desc="The address of
|
||||
the public PGP keyserver(s) to use.">wwwkeys.pgp.net
|
||||
<values>
|
||||
@@ -23,7 +23,7 @@
|
||||
connecting to the PGP keyserver. Timeouts are not supported on all
|
||||
systems.">10</configstring>
|
||||
<configstring name="openssl_cafile" required="false" desc="The location of
|
||||
- the root certificates bundle.">/somewhere/ca-bundle.crt</configstring>
|
||||
+ the root certificates bundle.">/usr/local/etc/ssl.crt/ca-bundle.crt</configstring>
|
||||
<configstring name="openssl_binary" required="false" desc="The location of
|
||||
the OpenSSL binary on your system. This program is REQUIRED to import
|
||||
personal S/MIME certificate information, as there is no native PHP function
|
25
mail/horde-imp/files/pkg-message.in
Normal file
25
mail/horde-imp/files/pkg-message.in
Normal file
|
@ -0,0 +1,25 @@
|
|||
************************************************************************
|
||||
IMP has been installed in %%IMPDIR%% with your blank
|
||||
configuration files.
|
||||
|
||||
Horde must be configured and the tables created; if not, see
|
||||
`pkg_info -D -x horde'.
|
||||
|
||||
Then, you might have to tune the configuration files located in
|
||||
%%CONFDIR%%/, specially the file servers.php.
|
||||
|
||||
Then, you must login to Horde as a Horde Administrator to finish the
|
||||
configuration. Please read %%DOCSDIR%%/INSTALL.
|
||||
|
||||
Warning: the filter system of IMP 3.x has been replaced by a separate
|
||||
******** application => check the port mail/ingo. Ingo provides a script
|
||||
to migrate the existing filter rules from IMP 3.x, see Ingo's
|
||||
documentation.
|
||||
|
||||
To protect your configuration files, you have to restart Apache.
|
||||
|
||||
To secure your installation, it is at least recommended that you change
|
||||
the default database password used by horde and imp.
|
||||
Then, you might change the 'session.save_path' setting in php.ini to a
|
||||
directory only readable and writeable by your webserver.
|
||||
************************************************************************
|
27
mail/horde-imp/pkg-deinstall
Normal file
27
mail/horde-imp/pkg-deinstall
Normal file
|
@ -0,0 +1,27 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Backup IMP config files, if needed.
|
||||
|
||||
if [ x$2 != xDEINSTALL ]; then
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ -z "${PACKAGE_BUILDING}" ]; then
|
||||
for cf in `ls ${PKG_PREFIX}/www/horde/imp/config/*php ${PKG_PREFIX}/www/horde/imp/config/*txt`; do
|
||||
diff -bBqw $cf $cf.dist >/dev/null 2>&1
|
||||
case $? in
|
||||
0) # original config file, will be deleted by pkg-plist
|
||||
;;
|
||||
1) # config file has been updated, must be backuped
|
||||
cp -p $cf $cf.previous
|
||||
echo "===> Backing-up..."
|
||||
echo "---> $cf has been saved ***"
|
||||
echo "---> as $cf.previous ***"
|
||||
;;
|
||||
*) # not found?
|
||||
;;
|
||||
esac
|
||||
done
|
||||
fi
|
4
mail/horde-imp/pkg-descr
Normal file
4
mail/horde-imp/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
IMP is the Internet Messaging Program. It is written in PHP and provides
|
||||
webmail access to IMAP and POP3 accounts.
|
||||
|
||||
WWW: http://www.horde.org/imp/
|
487
mail/horde-imp/pkg-plist
Normal file
487
mail/horde-imp/pkg-plist
Normal file
|
@ -0,0 +1,487 @@
|
|||
%%PORTDOCS%%%%DOCSDIR%%/CHANGES
|
||||
%%PORTDOCS%%%%DOCSDIR%%/COPYING
|
||||
%%PORTDOCS%%%%DOCSDIR%%/CREDITS
|
||||
%%PORTDOCS%%%%DOCSDIR%%/INSTALL
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES
|
||||
%%PORTDOCS%%%%DOCSDIR%%/TODO
|
||||
%%PORTDOCS%%%%DOCSDIR%%/UPGRADING
|
||||
%%IMPDIR%%/acl.php
|
||||
%%IMPDIR%%/attachment.php
|
||||
%%IMPDIR%%/compose.php
|
||||
%%IMPDIR%%/config/.htaccess
|
||||
%%IMPDIR%%/config/conf.xml
|
||||
%%IMPDIR%%/config/filter.txt
|
||||
%%IMPDIR%%/config/filter.txt.dist
|
||||
%%IMPDIR%%/config/header.txt
|
||||
%%IMPDIR%%/config/header.txt.dist
|
||||
%%IMPDIR%%/config/menu.php
|
||||
%%IMPDIR%%/config/menu.php.dist
|
||||
%%IMPDIR%%/config/mime_drivers.php
|
||||
%%IMPDIR%%/config/mime_drivers.php.dist
|
||||
%%IMPDIR%%/config/motd.php
|
||||
%%IMPDIR%%/config/motd.php.dist
|
||||
%%IMPDIR%%/config/prefs.php
|
||||
%%IMPDIR%%/config/prefs.php.dist
|
||||
%%IMPDIR%%/config/servers.php
|
||||
%%IMPDIR%%/config/servers.php.dist
|
||||
%%IMPDIR%%/config/trailer.txt
|
||||
%%IMPDIR%%/config/trailer.txt.dist
|
||||
%%IMPDIR%%/contacts.php
|
||||
%%IMPDIR%%/expand.php
|
||||
%%IMPDIR%%/fetchmail.php
|
||||
%%IMPDIR%%/fetchmailprefs.php
|
||||
%%IMPDIR%%/filterprefs.php
|
||||
%%IMPDIR%%/folders.php
|
||||
%%IMPDIR%%/index.php
|
||||
%%IMPDIR%%/lib/.htaccess
|
||||
%%IMPDIR%%/lib/Auth/imp.php
|
||||
%%IMPDIR%%/lib/Block/summary.php
|
||||
%%IMPDIR%%/lib/Block/tree_folders.php
|
||||
%%IMPDIR%%/lib/Compose.php
|
||||
%%IMPDIR%%/lib/Crypt/PGP.php
|
||||
%%IMPDIR%%/lib/Crypt/SMIME.php
|
||||
%%IMPDIR%%/lib/Fetchmail.php
|
||||
%%IMPDIR%%/lib/Fetchmail/imap.php
|
||||
%%IMPDIR%%/lib/Filter.php
|
||||
%%IMPDIR%%/lib/Folder.php
|
||||
%%IMPDIR%%/lib/IMAP.php
|
||||
%%IMPDIR%%/lib/IMAP/Tree.php
|
||||
%%IMPDIR%%/lib/IMP.php
|
||||
%%IMPDIR%%/lib/Identity/imp.php
|
||||
%%IMPDIR%%/lib/MIME/Contents.php
|
||||
%%IMPDIR%%/lib/MIME/Headers.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/alternative.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/appledouble.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/enriched.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/html.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/images.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/itip.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/multipart.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/notification.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/partial.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/pgp.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/pkcs7.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/plain.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/related.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/rfc822.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/status.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/tnef.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/zip.php
|
||||
%%IMPDIR%%/lib/Mailbox.php
|
||||
%%IMPDIR%%/lib/Maillog.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/delete_attachments_monthly.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/delete_sentmail_monthly.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/fetchmail_login.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/purge_trash.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/rename_sentmail_monthly.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/tos_agreement.php
|
||||
%%IMPDIR%%/lib/Maintenance/imp.php
|
||||
%%IMPDIR%%/lib/Message.php
|
||||
%%IMPDIR%%/lib/Notification/Listener/status.php
|
||||
%%IMPDIR%%/lib/Quota.php
|
||||
%%IMPDIR%%/lib/Quota/command.php
|
||||
%%IMPDIR%%/lib/Quota/courier.php
|
||||
%%IMPDIR%%/lib/Quota/cyrus.php
|
||||
%%IMPDIR%%/lib/Quota/logfile.php
|
||||
%%IMPDIR%%/lib/Quota/mdaemon.php
|
||||
%%IMPDIR%%/lib/Quota/mercury32.php
|
||||
%%IMPDIR%%/lib/Search.php
|
||||
%%IMPDIR%%/lib/Session.php
|
||||
%%IMPDIR%%/lib/Spam.php
|
||||
%%IMPDIR%%/lib/VFolder.php
|
||||
%%IMPDIR%%/lib/api.php
|
||||
%%IMPDIR%%/lib/base.php
|
||||
%%IMPDIR%%/lib/prefs.php
|
||||
%%IMPDIR%%/lib/version.php
|
||||
%%IMPDIR%%/locale/.htaccess
|
||||
%%IMPDIR%%/locale/ar_OM/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ar_SY/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/bg_BG/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ca_ES/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ca_ES/help.xml
|
||||
%%IMPDIR%%/locale/cs_CZ/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/cs_CZ/help.xml
|
||||
%%IMPDIR%%/locale/da_DK/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/da_DK/help.xml
|
||||
%%IMPDIR%%/locale/de_DE/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/de_DE/help.xml
|
||||
%%IMPDIR%%/locale/el_GR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/el_GR/help.xml
|
||||
%%IMPDIR%%/locale/en_US/help.xml
|
||||
%%IMPDIR%%/locale/es_ES/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/es_ES/help.xml
|
||||
%%IMPDIR%%/locale/et_EE/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/et_EE/help.xml
|
||||
%%IMPDIR%%/locale/fa_IR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/fi_FI/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/fi_FI/help.xml
|
||||
%%IMPDIR%%/locale/fr_FR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/fr_FR/help.xml
|
||||
%%IMPDIR%%/locale/gl_ES/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/hu_HU/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/hu_HU/help.xml
|
||||
%%IMPDIR%%/locale/id_ID/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/is_IS/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/it_IT/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/it_IT/help.xml
|
||||
%%IMPDIR%%/locale/ja_JP/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ko_KR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ko_KR/help.xml
|
||||
%%IMPDIR%%/locale/lt_LT/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/lv_LV/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/mk_MK/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/nb_NO/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/nb_NO/help.xml
|
||||
%%IMPDIR%%/locale/nl_NL/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/nl_NL/help.xml
|
||||
%%IMPDIR%%/locale/nn_NO/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pl_PL/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pl_PL/help.xml
|
||||
%%IMPDIR%%/locale/pt_BR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pt_BR/help.xml
|
||||
%%IMPDIR%%/locale/pt_PT/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pt_PT/help.xml
|
||||
%%IMPDIR%%/locale/ro_RO/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ru_RU/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ru_RU/help.xml
|
||||
%%IMPDIR%%/locale/sk_SK/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/sk_SK/help.xml
|
||||
%%IMPDIR%%/locale/sl_SI/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/sv_SE/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/sv_SE/help.xml
|
||||
%%IMPDIR%%/locale/th_TH/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/tr_TR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/uk_UA/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/uk_UA/help.xml
|
||||
%%IMPDIR%%/locale/zh_CN/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/zh_CN/help.xml
|
||||
%%IMPDIR%%/locale/zh_TW/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/zh_TW/help.xml
|
||||
%%IMPDIR%%/login.php
|
||||
%%IMPDIR%%/mailbox.php
|
||||
%%IMPDIR%%/message.php
|
||||
%%IMPDIR%%/pgp.php
|
||||
%%IMPDIR%%/po/.htaccess
|
||||
%%IMPDIR%%/po/README
|
||||
%%IMPDIR%%/po/ar_OM.po
|
||||
%%IMPDIR%%/po/ar_SY.po
|
||||
%%IMPDIR%%/po/bg_BG.po
|
||||
%%IMPDIR%%/po/ca_ES.po
|
||||
%%IMPDIR%%/po/cs_CZ.po
|
||||
%%IMPDIR%%/po/da_DK.po
|
||||
%%IMPDIR%%/po/de_DE.po
|
||||
%%IMPDIR%%/po/el_GR.po
|
||||
%%IMPDIR%%/po/es_ES.po
|
||||
%%IMPDIR%%/po/et_EE.po
|
||||
%%IMPDIR%%/po/fa_IR.po
|
||||
%%IMPDIR%%/po/fi_FI.po
|
||||
%%IMPDIR%%/po/fr_FR.po
|
||||
%%IMPDIR%%/po/gl_ES.po
|
||||
%%IMPDIR%%/po/hu_HU.po
|
||||
%%IMPDIR%%/po/id_ID.po
|
||||
%%IMPDIR%%/po/imp.pot
|
||||
%%IMPDIR%%/po/is_IS.po
|
||||
%%IMPDIR%%/po/it_IT.po
|
||||
%%IMPDIR%%/po/ja_JP.po
|
||||
%%IMPDIR%%/po/ko_KR.po
|
||||
%%IMPDIR%%/po/lt_LT.po
|
||||
%%IMPDIR%%/po/lv_LV.po
|
||||
%%IMPDIR%%/po/mk_MK.po
|
||||
%%IMPDIR%%/po/nb_NO.po
|
||||
%%IMPDIR%%/po/nl_NL.po
|
||||
%%IMPDIR%%/po/nn_NO.po
|
||||
%%IMPDIR%%/po/pl_PL.po
|
||||
%%IMPDIR%%/po/pt_BR.po
|
||||
%%IMPDIR%%/po/pt_PT.po
|
||||
%%IMPDIR%%/po/ro_RO.po
|
||||
%%IMPDIR%%/po/ru_RU.po
|
||||
%%IMPDIR%%/po/sk_SK.po
|
||||
%%IMPDIR%%/po/sl_SI.po
|
||||
%%IMPDIR%%/po/sv_SE.po
|
||||
%%IMPDIR%%/po/th_TH.po
|
||||
%%IMPDIR%%/po/tr_TR.po
|
||||
%%IMPDIR%%/po/uk_UA.po
|
||||
%%IMPDIR%%/po/zh_CN.po
|
||||
%%IMPDIR%%/po/zh_TW.po
|
||||
%%IMPDIR%%/recompose.php
|
||||
%%IMPDIR%%/redirect.php
|
||||
%%IMPDIR%%/scripts/.htaccess
|
||||
%%IMPDIR%%/scripts/Imp.reg
|
||||
%%IMPDIR%%/scripts/custom_login.php
|
||||
%%IMPDIR%%/scripts/singlescript.php
|
||||
%%IMPDIR%%/search.php
|
||||
%%IMPDIR%%/smime.php
|
||||
%%IMPDIR%%/spelling.php
|
||||
%%IMPDIR%%/templates/.htaccess
|
||||
%%IMPDIR%%/templates/acl/acl.inc
|
||||
%%IMPDIR%%/templates/common-header.inc
|
||||
%%IMPDIR%%/templates/compose/attachments.inc
|
||||
%%IMPDIR%%/templates/compose/attachments.js
|
||||
%%IMPDIR%%/templates/compose/compose.inc
|
||||
%%IMPDIR%%/templates/compose/compose.js
|
||||
%%IMPDIR%%/templates/compose/compose_expand.js
|
||||
%%IMPDIR%%/templates/compose/encrypt_list.inc
|
||||
%%IMPDIR%%/templates/compose/expand.inc
|
||||
%%IMPDIR%%/templates/compose/recompose.inc
|
||||
%%IMPDIR%%/templates/compose/redirect.inc
|
||||
%%IMPDIR%%/templates/compose/spelling.inc
|
||||
%%IMPDIR%%/templates/compose/spelling.js
|
||||
%%IMPDIR%%/templates/compose/success.inc
|
||||
%%IMPDIR%%/templates/contacts/contacts.inc
|
||||
%%IMPDIR%%/templates/fetchmail/account_select.inc
|
||||
%%IMPDIR%%/templates/fetchmail/driver_select.inc
|
||||
%%IMPDIR%%/templates/fetchmail/fetchmail.inc
|
||||
%%IMPDIR%%/templates/fetchmail/manage.inc
|
||||
%%IMPDIR%%/templates/fetchmail/top.inc
|
||||
%%IMPDIR%%/templates/filters/notactive.inc
|
||||
%%IMPDIR%%/templates/filters/prefs.inc
|
||||
%%IMPDIR%%/templates/folders/actions.inc
|
||||
%%IMPDIR%%/templates/folders/folders.html
|
||||
%%IMPDIR%%/templates/folders/foot.inc
|
||||
%%IMPDIR%%/templates/folders/head.inc
|
||||
%%IMPDIR%%/templates/folders/import.inc
|
||||
%%IMPDIR%%/templates/folders/javascript.inc
|
||||
%%IMPDIR%%/templates/javascript/open_compose_win.js
|
||||
%%IMPDIR%%/templates/javascript/open_print_win.js
|
||||
%%IMPDIR%%/templates/login/login.inc
|
||||
%%IMPDIR%%/templates/mailbox/actions.inc
|
||||
%%IMPDIR%%/templates/mailbox/actions_deleted.inc
|
||||
%%IMPDIR%%/templates/mailbox/alert.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/legend.inc
|
||||
%%IMPDIR%%/templates/mailbox/mailbox.html
|
||||
%%IMPDIR%%/templates/mailbox/message_footers.inc
|
||||
%%IMPDIR%%/templates/mailbox/message_headers.inc
|
||||
%%IMPDIR%%/templates/mailbox/navbar.inc
|
||||
%%IMPDIR%%/templates/mailbox/searchfolder.inc
|
||||
%%IMPDIR%%/templates/menu.inc
|
||||
%%IMPDIR%%/templates/message/headers.inc
|
||||
%%IMPDIR%%/templates/message/javascript.inc
|
||||
%%IMPDIR%%/templates/message/message.inc
|
||||
%%IMPDIR%%/templates/message/navbar_actions.inc
|
||||
%%IMPDIR%%/templates/message/navbar_navigate.inc
|
||||
%%IMPDIR%%/templates/message/navbar_top.inc
|
||||
%%IMPDIR%%/templates/message/print.inc
|
||||
%%IMPDIR%%/templates/pgp/import_key.inc
|
||||
%%IMPDIR%%/templates/pgp/notactive.inc
|
||||
%%IMPDIR%%/templates/pgp/open_pgp_import.js
|
||||
%%IMPDIR%%/templates/pgp/open_pgp_win.js
|
||||
%%IMPDIR%%/templates/pgp/passphrase.inc
|
||||
%%IMPDIR%%/templates/pgp/pgp.inc
|
||||
%%IMPDIR%%/templates/prefs/encryptselect.inc
|
||||
%%IMPDIR%%/templates/prefs/folderselect.inc
|
||||
%%IMPDIR%%/templates/prefs/initialpageselect.inc
|
||||
%%IMPDIR%%/templates/prefs/sentmailselect.inc
|
||||
%%IMPDIR%%/templates/prefs/sourceselect.inc
|
||||
%%IMPDIR%%/templates/prefs/spamselect.inc
|
||||
%%IMPDIR%%/templates/prefs/trashselect.inc
|
||||
%%IMPDIR%%/templates/quota/quota.inc
|
||||
%%IMPDIR%%/templates/search/fields.inc
|
||||
%%IMPDIR%%/templates/search/header.inc
|
||||
%%IMPDIR%%/templates/search/javascript.inc
|
||||
%%IMPDIR%%/templates/search/main.inc
|
||||
%%IMPDIR%%/templates/smime/import_key.inc
|
||||
%%IMPDIR%%/templates/smime/notactive.inc
|
||||
%%IMPDIR%%/templates/smime/open_smime_import.js
|
||||
%%IMPDIR%%/templates/smime/open_smime_win.js
|
||||
%%IMPDIR%%/templates/smime/passphrase.inc
|
||||
%%IMPDIR%%/templates/smime/smime.inc
|
||||
%%IMPDIR%%/templates/thread/bottom.inc
|
||||
%%IMPDIR%%/templates/thread/thread.html
|
||||
%%IMPDIR%%/templates/thread/top.inc
|
||||
%%IMPDIR%%/test.php
|
||||
%%IMPDIR%%/themes/azur/screen.css
|
||||
%%IMPDIR%%/themes/bluemoon/screen.css
|
||||
%%IMPDIR%%/themes/bluewhite/screen.css
|
||||
%%IMPDIR%%/themes/brown/screen.css
|
||||
%%IMPDIR%%/themes/burntorange/screen.css
|
||||
%%IMPDIR%%/themes/cherry/screen.css
|
||||
%%IMPDIR%%/themes/gennevilliers/screen.css
|
||||
%%IMPDIR%%/themes/green/screen.css
|
||||
%%IMPDIR%%/themes/grey/screen.css
|
||||
%%IMPDIR%%/themes/graphics/addressbook-blue.png
|
||||
%%IMPDIR%%/themes/graphics/addressbook-red.png
|
||||
%%IMPDIR%%/themes/graphics/apple.png
|
||||
%%IMPDIR%%/themes/graphics/attachment.png
|
||||
%%IMPDIR%%/themes/graphics/compose.png
|
||||
%%IMPDIR%%/themes/graphics/empty_trash.png
|
||||
%%IMPDIR%%/themes/graphics/expand.png
|
||||
%%IMPDIR%%/themes/graphics/favicon.ico
|
||||
%%IMPDIR%%/themes/graphics/fetchmail.png
|
||||
%%IMPDIR%%/themes/graphics/filters.png
|
||||
%%IMPDIR%%/themes/graphics/folders/drafts.png
|
||||
%%IMPDIR%%/themes/graphics/folders/folder.png
|
||||
%%IMPDIR%%/themes/graphics/folders/folder_open.png
|
||||
%%IMPDIR%%/themes/graphics/folders/inbox.png
|
||||
%%IMPDIR%%/themes/graphics/folders/sent.png
|
||||
%%IMPDIR%%/themes/graphics/folders/templates.png
|
||||
%%IMPDIR%%/themes/graphics/folders/trash.png
|
||||
%%IMPDIR%%/themes/graphics/forward.png
|
||||
%%IMPDIR%%/themes/graphics/imp.png
|
||||
%%IMPDIR%%/themes/graphics/mail_answered.png
|
||||
%%IMPDIR%%/themes/graphics/mail_deleted.png
|
||||
%%IMPDIR%%/themes/graphics/mail_draft.png
|
||||
%%IMPDIR%%/themes/graphics/mail_flagged.png
|
||||
%%IMPDIR%%/themes/graphics/mail_personal.png
|
||||
%%IMPDIR%%/themes/graphics/mail_priority_high.png
|
||||
%%IMPDIR%%/themes/graphics/mail_priority_low.png
|
||||
%%IMPDIR%%/themes/graphics/mail_unseen.png
|
||||
%%IMPDIR%%/themes/graphics/manage_attachments.png
|
||||
%%IMPDIR%%/themes/graphics/mime/compressed.png
|
||||
%%IMPDIR%%/themes/graphics/mime/encryption.png
|
||||
%%IMPDIR%%/themes/graphics/mime/html.png
|
||||
%%IMPDIR%%/themes/graphics/mime/image.png
|
||||
%%IMPDIR%%/themes/graphics/mime/itip.png
|
||||
%%IMPDIR%%/themes/graphics/mime/mail.png
|
||||
%%IMPDIR%%/themes/graphics/mime/text.png
|
||||
%%IMPDIR%%/themes/graphics/newmail.png
|
||||
%%IMPDIR%%/themes/graphics/reply.png
|
||||
%%IMPDIR%%/themes/graphics/shared.png
|
||||
%%IMPDIR%%/themes/graphics/signed.png
|
||||
%%IMPDIR%%/themes/graphics/spacer_red.png
|
||||
%%IMPDIR%%/themes/graphics/spellcheck.png
|
||||
%%IMPDIR%%/themes/screen.css
|
||||
%%IMPDIR%%/themes/lavander/screen.css
|
||||
%%IMPDIR%%/themes/postnuke/screen.css
|
||||
%%IMPDIR%%/themes/simplex/screen.css
|
||||
%%IMPDIR%%/themes/sun/screen.css
|
||||
%%IMPDIR%%/thread.php
|
||||
%%IMPDIR%%/view.php
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||
etc/horde/httpd.conf.imp
|
||||
@dirrm %%IMPDIR%%/themes/sun
|
||||
@dirrm %%IMPDIR%%/themes/simplex
|
||||
@dirrm %%IMPDIR%%/themes/postnuke
|
||||
@dirrm %%IMPDIR%%/themes/lavander
|
||||
@dirrm %%IMPDIR%%/themes/graphics/mime
|
||||
@dirrm %%IMPDIR%%/themes/graphics/folders
|
||||
@dirrm %%IMPDIR%%/themes/graphics
|
||||
@dirrm %%IMPDIR%%/themes/grey
|
||||
@dirrm %%IMPDIR%%/themes/green
|
||||
@dirrm %%IMPDIR%%/themes/gennevilliers
|
||||
@dirrm %%IMPDIR%%/themes/cherry
|
||||
@dirrm %%IMPDIR%%/themes/burntorange
|
||||
@dirrm %%IMPDIR%%/themes/brown
|
||||
@dirrm %%IMPDIR%%/themes/bluewhite
|
||||
@dirrm %%IMPDIR%%/themes/bluemoon
|
||||
@dirrm %%IMPDIR%%/themes/azur
|
||||
@dirrm %%IMPDIR%%/themes
|
||||
@dirrm %%IMPDIR%%/templates/thread
|
||||
@dirrm %%IMPDIR%%/templates/smime
|
||||
@dirrm %%IMPDIR%%/templates/search
|
||||
@dirrm %%IMPDIR%%/templates/quota
|
||||
@dirrm %%IMPDIR%%/templates/prefs
|
||||
@dirrm %%IMPDIR%%/templates/pgp
|
||||
@dirrm %%IMPDIR%%/templates/message
|
||||
@dirrm %%IMPDIR%%/templates/mailbox
|
||||
@dirrm %%IMPDIR%%/templates/login
|
||||
@dirrm %%IMPDIR%%/templates/javascript
|
||||
@dirrm %%IMPDIR%%/templates/folders
|
||||
@dirrm %%IMPDIR%%/templates/filters
|
||||
@dirrm %%IMPDIR%%/templates/fetchmail
|
||||
@dirrm %%IMPDIR%%/templates/contacts
|
||||
@dirrm %%IMPDIR%%/templates/compose
|
||||
@dirrm %%IMPDIR%%/templates/acl
|
||||
@dirrm %%IMPDIR%%/templates
|
||||
@dirrm %%IMPDIR%%/scripts
|
||||
@dirrm %%IMPDIR%%/po
|
||||
@dirrm %%IMPDIR%%/locale/zh_TW/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/zh_TW
|
||||
@dirrm %%IMPDIR%%/locale/zh_CN/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/zh_CN
|
||||
@dirrm %%IMPDIR%%/locale/uk_UA/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/uk_UA
|
||||
@dirrm %%IMPDIR%%/locale/tr_TR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/tr_TR
|
||||
@dirrm %%IMPDIR%%/locale/th_TH/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/th_TH
|
||||
@dirrm %%IMPDIR%%/locale/sv_SE/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/sv_SE
|
||||
@dirrm %%IMPDIR%%/locale/sl_SI/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/sl_SI
|
||||
@dirrm %%IMPDIR%%/locale/sk_SK/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/sk_SK
|
||||
@dirrm %%IMPDIR%%/locale/ru_RU/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ru_RU
|
||||
@dirrm %%IMPDIR%%/locale/ro_RO/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ro_RO
|
||||
@dirrm %%IMPDIR%%/locale/pt_PT/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/pt_PT
|
||||
@dirrm %%IMPDIR%%/locale/pt_BR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/pt_BR
|
||||
@dirrm %%IMPDIR%%/locale/pl_PL/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/pl_PL
|
||||
@dirrm %%IMPDIR%%/locale/nn_NO/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/nn_NO
|
||||
@dirrm %%IMPDIR%%/locale/nl_NL/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/nl_NL
|
||||
@dirrm %%IMPDIR%%/locale/nb_NO/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/nb_NO
|
||||
@dirrm %%IMPDIR%%/locale/mk_MK/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/mk_MK
|
||||
@dirrm %%IMPDIR%%/locale/lv_LV/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/lv_LV
|
||||
@dirrm %%IMPDIR%%/locale/lt_LT/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/lt_LT
|
||||
@dirrm %%IMPDIR%%/locale/ko_KR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ko_KR
|
||||
@dirrm %%IMPDIR%%/locale/ja_JP/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ja_JP
|
||||
@dirrm %%IMPDIR%%/locale/it_IT/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/it_IT
|
||||
@dirrm %%IMPDIR%%/locale/is_IS/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/is_IS
|
||||
@dirrm %%IMPDIR%%/locale/id_ID/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/id_ID
|
||||
@dirrm %%IMPDIR%%/locale/hu_HU/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/hu_HU
|
||||
@dirrm %%IMPDIR%%/locale/gl_ES/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/gl_ES
|
||||
@dirrm %%IMPDIR%%/locale/fr_FR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/fr_FR
|
||||
@dirrm %%IMPDIR%%/locale/fi_FI/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/fi_FI
|
||||
@dirrm %%IMPDIR%%/locale/fa_IR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/fa_IR
|
||||
@dirrm %%IMPDIR%%/locale/et_EE/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/et_EE
|
||||
@dirrm %%IMPDIR%%/locale/es_ES/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/es_ES
|
||||
@dirrm %%IMPDIR%%/locale/en_US
|
||||
@dirrm %%IMPDIR%%/locale/el_GR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/el_GR
|
||||
@dirrm %%IMPDIR%%/locale/de_DE/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/de_DE
|
||||
@dirrm %%IMPDIR%%/locale/da_DK/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/da_DK
|
||||
@dirrm %%IMPDIR%%/locale/cs_CZ/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/cs_CZ
|
||||
@dirrm %%IMPDIR%%/locale/ca_ES/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ca_ES
|
||||
@dirrm %%IMPDIR%%/locale/bg_BG/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/bg_BG
|
||||
@dirrm %%IMPDIR%%/locale/ar_SY/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ar_SY
|
||||
@dirrm %%IMPDIR%%/locale/ar_OM/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ar_OM
|
||||
@dirrm %%IMPDIR%%/locale
|
||||
@dirrm %%IMPDIR%%/lib/Quota
|
||||
@dirrm %%IMPDIR%%/lib/Notification/Listener
|
||||
@dirrm %%IMPDIR%%/lib/Notification
|
||||
@dirrm %%IMPDIR%%/lib/Maintenance/Task
|
||||
@dirrm %%IMPDIR%%/lib/Maintenance
|
||||
@dirrm %%IMPDIR%%/lib/MIME/Viewer
|
||||
@dirrm %%IMPDIR%%/lib/MIME
|
||||
@dirrm %%IMPDIR%%/lib/Identity
|
||||
@dirrm %%IMPDIR%%/lib/IMAP
|
||||
@dirrm %%IMPDIR%%/lib/Fetchmail
|
||||
@dirrm %%IMPDIR%%/lib/Crypt
|
||||
@dirrm %%IMPDIR%%/lib/Block
|
||||
@dirrm %%IMPDIR%%/lib/Auth
|
||||
@dirrm %%IMPDIR%%/lib
|
||||
@unexec rmdir %D/%%IMPDIR%%/config 2>/dev/null || true
|
||||
@unexec rmdir %D/%%IMPDIR%% 2>/dev/null || true
|
247
mail/horde4-imp/Makefile
Normal file
247
mail/horde4-imp/Makefile
Normal file
|
@ -0,0 +1,247 @@
|
|||
# Ports collection makefile for: imp3
|
||||
# Date created: Mon Oct 08, 2001
|
||||
# Whom: Thierry Thomas (<thierry@thomas.as>)
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= imp
|
||||
PORTVERSION= 4.0
|
||||
CATEGORIES= mail www
|
||||
MASTER_SITES= ftp://ftp.horde.org/pub/imp/ \
|
||||
ftp://ftp.planetmirror.com/pub/horde/imp/ \
|
||||
ftp://ftp.au.horde.org/pub/horde/imp/ \
|
||||
ftp://ftp.be.horde.org/imp/ \
|
||||
ftp://ftp.es.horde.org/pub/imp/ \
|
||||
http://ftp.horde.org/pub/imp/
|
||||
DISTNAME= ${PORTNAME}-h3-${PORTVERSION}
|
||||
|
||||
MAINTAINER= thierry@FreeBSD.org
|
||||
COMMENT= A webmail system which accesses mail over IMAP
|
||||
|
||||
#-----------------------------------------------------------------------
|
||||
# You may define these options:
|
||||
#
|
||||
# - WITHOUT_LDAP : if you do not need OpenLDAP;
|
||||
#
|
||||
# - WITHOUT_SMIME : disable S/MIME;
|
||||
#
|
||||
# - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree;
|
||||
#
|
||||
# - WITHOUT_ASPELL : for spelling bees...
|
||||
#
|
||||
# - WITH_ISPELL : if you prefer ispell;
|
||||
#
|
||||
# - NOCRYPT : if crypto is restricted in your country;
|
||||
#
|
||||
# - WITHOUT_SSL : if you have not installed c-client WITH_SSL;
|
||||
#
|
||||
# - WITH_VALID_CERT : if you own a valid SSL certificate;
|
||||
#
|
||||
# - WITHOUT_INGO : if you don't need filters management;
|
||||
#
|
||||
# - WITHOUT_NAG : if you don't want tasks management;
|
||||
#
|
||||
# - WITHOUT_TURBA : if you do not want adressbooks;
|
||||
#
|
||||
# - WITH_HTML : enable HTML composition mode;
|
||||
#
|
||||
# - 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_IMAP-UW : IMP will work with imap-uw;
|
||||
#
|
||||
# - WITH_DOVECOT : IMP will work with dovecot;
|
||||
#
|
||||
# - WITH_COURIER-IMAP : IMP will work with courier-imap.
|
||||
#
|
||||
# These choices are mutually exclusive, and imap-uw is the default.
|
||||
#
|
||||
#-----------------------------------------------------------------------
|
||||
|
||||
RUN_DEPENDS+= ${PEARDIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL
|
||||
|
||||
CONFLICTS= imp-3.*
|
||||
|
||||
USE_PHP= imap
|
||||
.if defined(WITHOUT_TURBA)
|
||||
. if !defined(WITHOUT_LDAP)
|
||||
USE_PHP+= ldap
|
||||
. endif
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/rpc.php:${PORTSDIR}/www/horde
|
||||
.else
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/turba/minisearch.php:${PORTSDIR}/mail/turba
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_INGO)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/ingo/filters.php:${PORTSDIR}/mail/ingo
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_NAG)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/nag/data.php:${PORTSDIR}/deskutils/nag
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_SMIME)
|
||||
USE_PHP+= openssl
|
||||
.endif
|
||||
|
||||
.if !defined(NOCRYPT)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/gpg:${PORTSDIR}/security/gnupg
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_ASPELL)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/aspell:${PORTSDIR}/textproc/aspell
|
||||
.elif defined(WITH_ISPELL)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell
|
||||
.endif
|
||||
|
||||
.if defined(WITH_HTML)
|
||||
RUN_DEPENDS+= ${PEARDIR}/HTTP/Request.php:${PORTSDIR}/www/pear-HTTP_Request
|
||||
.endif
|
||||
|
||||
NO_BUILD= yes
|
||||
USE_REINPLACE= yes
|
||||
REINPLACE_ARGS= -i.beforeIMP
|
||||
|
||||
DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \
|
||||
docs/RELEASE_NOTES docs/TODO docs/UPGRADING
|
||||
CONFFILE= filter.txt header.txt menu.php mime_drivers.php motd.php \
|
||||
prefs.php servers.php trailer.txt
|
||||
SUB_DIRS= config lib locale po scripts templates themes
|
||||
|
||||
LHORDEDIR?= www/horde
|
||||
LIMPDIR= ${LHORDEDIR}/imp
|
||||
PEARDIR?= ${LOCALBASE}/share/pear
|
||||
|
||||
PLIST_SUB= IMPDIR=${LIMPDIR}
|
||||
|
||||
PKGMESSAGE= ${WRKDIR}/pkg-message
|
||||
|
||||
IMPDIR= ${PREFIX}/${LIMPDIR}
|
||||
CONFDIR= ${IMPDIR}/config
|
||||
|
||||
HORDE_INC= ${LOCALBASE}/etc/horde
|
||||
|
||||
HOSTNAME?= `/bin/hostname`
|
||||
SERVOS?= ${OPSYS}-${OSREL}
|
||||
|
||||
PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h
|
||||
|
||||
PATCH2RM= prefs.php.dist.orig servers.php.dist.orig conf.xml.orig \
|
||||
conf.xml.beforeIMP servers.php.dist.beforeIMP
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
# I have no report about the support of dkimap4 by IMP,
|
||||
# but I shall be happy to add it if someone report success with it.
|
||||
# If an IMAP server is already installed, we just record the dependence,
|
||||
# else we shall install imap-uw.
|
||||
# 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_IMAP-UW) || exists(${LOCALBASE}/libexec/imapd)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/libexec/imapd:${PORTSDIR}/mail/imap-uw
|
||||
. elif defined(WITH_CYRUS-IMAPD) || exists(${LOCALBASE}/lib/libacap.a)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/lib/libacap.a:${PORTSDIR}/mail/cyrus-imapd
|
||||
. elif defined(WITH_COURIER-IMAP) || exists(${LOCALBASE}/bin/deliverquota)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/deliverquota:${PORTSDIR}/mail/courier-imap
|
||||
. elif defined(WITH_DOVECOT) || exists(${LOCALBASE}/libexec/dovecot/imap)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/libexec/dovecot/imap:${PORTSDIR}/mail/dovecot
|
||||
. else
|
||||
RUN_DEPENDS+= ${LOCALBASE}/libexec/imapd:${PORTSDIR}/mail/imap-uw
|
||||
. endif
|
||||
.endif
|
||||
|
||||
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-configure:
|
||||
@${REINPLACE_CMD} -e "s:/usr/local:${LOCALBASE}:" ${WRKSRC}/config/conf.xml
|
||||
.if !defined(WITHOUT_ASPELL)
|
||||
@${REINPLACE_CMD} -e "s:%%ASPELL%%:${LOCALBASE}/bin/aspell:" \
|
||||
${WRKSRC}/config/conf.xml
|
||||
.elif defined(WITH_ISPELL)
|
||||
@${REINPLACE_CMD} -e "s:%%ASPELL%%:${LOCALBASE}/bin/ispell:" \
|
||||
${WRKSRC}/config/conf.xml
|
||||
.else
|
||||
@${REINPLACE_CMD} -e "s:%%ASPELL%%::" ${WRKSRC}/config/conf.xml
|
||||
.endif
|
||||
.if !defined(NOCRYPT)
|
||||
@${REINPLACE_CMD} -e "s:%%GPG%%:${LOCALBASE}/bin/gpg:" \
|
||||
${WRKSRC}/config/conf.xml
|
||||
.else
|
||||
@${REINPLACE_CMD} -e "s:%%GPG%%::" ${WRKSRC}/config/conf.xml
|
||||
.endif
|
||||
@${REINPLACE_CMD} -e "s:IMP_VERSION:IMP_VERSION . ' / ${SERVOS}':" \
|
||||
${WRKSRC}/lib/MIME/Headers.php
|
||||
@${REINPLACE_CMD} -e "s:example.com:${HOSTNAME}:g" \
|
||||
${WRKSRC}/config/servers.php.dist
|
||||
.if defined(WITHOUT_SSL)
|
||||
@${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/notls:;s:%%IMAPPORT%%:143:" \
|
||||
${WRKSRC}/config/servers.php.dist
|
||||
.else
|
||||
@${REINPLACE_CMD} -e "s:%%IMAPPORT%%:993:" ${WRKSRC}/config/servers.php.dist
|
||||
. if defined(WITH_VALID_CERT)
|
||||
@${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/ssl:" ${WRKSRC}/config/servers.php.dist
|
||||
. else
|
||||
@${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/ssl/novalidate-cert:" \
|
||||
${WRKSRC}/config/servers.php.dist
|
||||
. endif
|
||||
.endif
|
||||
@${SED} -e "s:/home/httpd/html/horde/imp:${IMPDIR}:" \
|
||||
${FILESDIR}/httpd.conf.imp > ${WRKDIR}/httpd.conf.imp
|
||||
.for fc in ${PATCH2RM}
|
||||
@${RM} ${WRKSRC}/config/${fc}
|
||||
.endfor
|
||||
@${RM} ${WRKSRC}/lib/MIME/Headers.php.beforeIMP
|
||||
|
||||
pre-install:
|
||||
.if !defined(BATCH) && !defined(WITHOUT_SSL)
|
||||
@if ! ${GREP} -q -e 'CCLIENT_SSLENABLED "yes"' ${PORTREV_H}; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure c-client with SSL support." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
@${MKDIR} ${IMPDIR}
|
||||
.for REP in ${SUB_DIRS}
|
||||
@${CP} -Rp ${WRKSRC}/${REP} ${IMPDIR}
|
||||
.endfor
|
||||
@${CP} -p ${WRKSRC}/*.php ${IMPDIR}
|
||||
.for FILE in ${CONFFILE}
|
||||
@if [ ! -f ${CONFDIR}/${FILE} ]; then \
|
||||
${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \
|
||||
fi
|
||||
.endfor
|
||||
@${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}
|
||||
@${INSTALL_DATA} ${WRKDIR}/httpd.conf.imp ${HORDE_INC}
|
||||
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${IMPDIR}
|
||||
@${CHMOD} -R o-rwx ${CONFDIR}
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
.for FILE in ${DOCS}
|
||||
@${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
|
||||
.endfor
|
||||
@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
@${SED} -e "s:%%IMPDIR%%:${IMPDIR}:g;s:%%PORTSDIR%%:${PORTSDIR}:g;" \
|
||||
-e "s:%%CONFDIR%%:${CONFDIR}:g;s:%%DOCSDIR%%:${DOCSDIR}:g" \
|
||||
< ${FILESDIR}/pkg-message.in > ${PKGMESSAGE}
|
||||
@${ECHO_MSG}
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
@${ECHO_MSG}
|
||||
|
||||
.include <bsd.port.post.mk>
|
2
mail/horde4-imp/distinfo
Normal file
2
mail/horde4-imp/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (imp-h3-4.0.tar.gz) = 41b7888089f98e06da6bb5f92ad1e8e7
|
||||
SIZE (imp-h3-4.0.tar.gz) = 2892010
|
31
mail/horde4-imp/files/httpd.conf.imp
Normal file
31
mail/horde4-imp/files/httpd.conf.imp
Normal file
|
@ -0,0 +1,31 @@
|
|||
# This is included in Apache's httpd.conf for IMP
|
||||
#
|
||||
# For security, don't serve pages from the IMP configuration and
|
||||
# library directories.
|
||||
#
|
||||
<Directory "/home/httpd/html/horde/imp/config">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
<Directory "/home/httpd/html/horde/imp/lib">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
<Directory "/home/httpd/html/horde/imp/locale">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
<Directory "/home/httpd/html/horde/imp/po">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
<Directory "/home/httpd/html/horde/imp/scripts">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
<Directory "/home/httpd/html/horde/imp/templates">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
# End of IMP configuration ================
|
||||
|
33
mail/horde4-imp/files/patch-ab
Normal file
33
mail/horde4-imp/files/patch-ab
Normal file
|
@ -0,0 +1,33 @@
|
|||
--- config/servers.php.dist.orig Sun Dec 12 07:36:51 2004
|
||||
+++ config/servers.php.dist Fri Dec 24 00:27:59 2004
|
||||
@@ -47,7 +47,7 @@
|
||||
*
|
||||
* folders: The folder path for the IMAP server.
|
||||
* Common values:
|
||||
- * UW-IMAP 'mail/' (note the trailing slash)
|
||||
+ * UW-IMAP 'Mail/' (note the trailing slash)
|
||||
* Cyrus, Courier-IMAP 'INBOX.' (note the trailing dot)
|
||||
* dovecot ''
|
||||
*
|
||||
@@ -174,14 +174,16 @@
|
||||
|
||||
$servers['imap'] = array(
|
||||
'name' => 'IMAP Server',
|
||||
- 'server' => 'imap.example.com',
|
||||
+// 'server' => 'imap.example.com',
|
||||
+ 'server' => 'localhost',
|
||||
'hordeauth' => false,
|
||||
- 'protocol' => 'imap/notls',
|
||||
- 'port' => 143,
|
||||
- 'folders' => 'mail/',
|
||||
+ 'protocol' => '%%PROTOCOL%%',
|
||||
+ 'port' => %%IMAPPORT%%,
|
||||
+ 'folders' => 'Mail/',
|
||||
'namespace' => '',
|
||||
'maildomain' => 'example.com',
|
||||
- 'smtphost' => 'smtp.example.com',
|
||||
+// 'smtphost' => 'smtp.example.com',
|
||||
+ 'smtphost' => 'localhost',
|
||||
'smtpport' => 25,
|
||||
'realm' => '',
|
||||
'preferred' => '',
|
11
mail/horde4-imp/files/patch-ac
Normal file
11
mail/horde4-imp/files/patch-ac
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- config/prefs.php.dist.orig Fri Oct 29 19:04:12 2004
|
||||
+++ config/prefs.php.dist Thu Nov 11 21:49:05 2004
|
||||
@@ -1071,7 +1071,7 @@
|
||||
// 'value' => "source_one\tsource_two"
|
||||
// refer to turba/config/sources.php for possible source values
|
||||
$_prefs['search_sources'] = array(
|
||||
- 'value' => "",
|
||||
+ 'value' => 'localsql',
|
||||
'locked' => false,
|
||||
'shared' => false,
|
||||
'type' => 'implicit');
|
25
mail/horde4-imp/files/patch-config::conf.xml
Normal file
25
mail/horde4-imp/files/patch-config::conf.xml
Normal file
|
@ -0,0 +1,25 @@
|
|||
--- config/conf.xml.orig Mon Nov 22 09:40:29 2004
|
||||
+++ config/conf.xml Mon Nov 29 11:51:54 2004
|
||||
@@ -6,11 +6,11 @@
|
||||
<configheader>External Utilities</configheader>
|
||||
<configstring name="spellchecker" required="false" desc="Enter the location
|
||||
of the binary to either aspell or ispell to enable the spell checker. If
|
||||
- this is empty, then spell checking will be disabled."></configstring>
|
||||
+ this is empty, then spell checking will be disabled.">%%ASPELL%%</configstring>
|
||||
<configstring name="gnupg" required="false" desc="If you want users to have
|
||||
the option of using the GNU Privacy Guard program to decrypt/encrypt PGP
|
||||
files, enter the location of the 'gpg' binary here. If this is empty this
|
||||
- feature will be disabled."></configstring>
|
||||
+ feature will be disabled.">%%GPG%%</configstring>
|
||||
<configmultienum name="gnupg_keyserver" required="false" desc="The address of
|
||||
the public PGP keyserver(s) to use.">wwwkeys.pgp.net
|
||||
<values>
|
||||
@@ -23,7 +23,7 @@
|
||||
connecting to the PGP keyserver. Timeouts are not supported on all
|
||||
systems.">10</configstring>
|
||||
<configstring name="openssl_cafile" required="false" desc="The location of
|
||||
- the root certificates bundle.">/somewhere/ca-bundle.crt</configstring>
|
||||
+ the root certificates bundle.">/usr/local/etc/ssl.crt/ca-bundle.crt</configstring>
|
||||
<configstring name="openssl_binary" required="false" desc="The location of
|
||||
the OpenSSL binary on your system. This program is REQUIRED to import
|
||||
personal S/MIME certificate information, as there is no native PHP function
|
25
mail/horde4-imp/files/pkg-message.in
Normal file
25
mail/horde4-imp/files/pkg-message.in
Normal file
|
@ -0,0 +1,25 @@
|
|||
************************************************************************
|
||||
IMP has been installed in %%IMPDIR%% with your blank
|
||||
configuration files.
|
||||
|
||||
Horde must be configured and the tables created; if not, see
|
||||
`pkg_info -D -x horde'.
|
||||
|
||||
Then, you might have to tune the configuration files located in
|
||||
%%CONFDIR%%/, specially the file servers.php.
|
||||
|
||||
Then, you must login to Horde as a Horde Administrator to finish the
|
||||
configuration. Please read %%DOCSDIR%%/INSTALL.
|
||||
|
||||
Warning: the filter system of IMP 3.x has been replaced by a separate
|
||||
******** application => check the port mail/ingo. Ingo provides a script
|
||||
to migrate the existing filter rules from IMP 3.x, see Ingo's
|
||||
documentation.
|
||||
|
||||
To protect your configuration files, you have to restart Apache.
|
||||
|
||||
To secure your installation, it is at least recommended that you change
|
||||
the default database password used by horde and imp.
|
||||
Then, you might change the 'session.save_path' setting in php.ini to a
|
||||
directory only readable and writeable by your webserver.
|
||||
************************************************************************
|
27
mail/horde4-imp/pkg-deinstall
Normal file
27
mail/horde4-imp/pkg-deinstall
Normal file
|
@ -0,0 +1,27 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Backup IMP config files, if needed.
|
||||
|
||||
if [ x$2 != xDEINSTALL ]; then
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ -z "${PACKAGE_BUILDING}" ]; then
|
||||
for cf in `ls ${PKG_PREFIX}/www/horde/imp/config/*php ${PKG_PREFIX}/www/horde/imp/config/*txt`; do
|
||||
diff -bBqw $cf $cf.dist >/dev/null 2>&1
|
||||
case $? in
|
||||
0) # original config file, will be deleted by pkg-plist
|
||||
;;
|
||||
1) # config file has been updated, must be backuped
|
||||
cp -p $cf $cf.previous
|
||||
echo "===> Backing-up..."
|
||||
echo "---> $cf has been saved ***"
|
||||
echo "---> as $cf.previous ***"
|
||||
;;
|
||||
*) # not found?
|
||||
;;
|
||||
esac
|
||||
done
|
||||
fi
|
4
mail/horde4-imp/pkg-descr
Normal file
4
mail/horde4-imp/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
IMP is the Internet Messaging Program. It is written in PHP and provides
|
||||
webmail access to IMAP and POP3 accounts.
|
||||
|
||||
WWW: http://www.horde.org/imp/
|
487
mail/horde4-imp/pkg-plist
Normal file
487
mail/horde4-imp/pkg-plist
Normal file
|
@ -0,0 +1,487 @@
|
|||
%%PORTDOCS%%%%DOCSDIR%%/CHANGES
|
||||
%%PORTDOCS%%%%DOCSDIR%%/COPYING
|
||||
%%PORTDOCS%%%%DOCSDIR%%/CREDITS
|
||||
%%PORTDOCS%%%%DOCSDIR%%/INSTALL
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES
|
||||
%%PORTDOCS%%%%DOCSDIR%%/TODO
|
||||
%%PORTDOCS%%%%DOCSDIR%%/UPGRADING
|
||||
%%IMPDIR%%/acl.php
|
||||
%%IMPDIR%%/attachment.php
|
||||
%%IMPDIR%%/compose.php
|
||||
%%IMPDIR%%/config/.htaccess
|
||||
%%IMPDIR%%/config/conf.xml
|
||||
%%IMPDIR%%/config/filter.txt
|
||||
%%IMPDIR%%/config/filter.txt.dist
|
||||
%%IMPDIR%%/config/header.txt
|
||||
%%IMPDIR%%/config/header.txt.dist
|
||||
%%IMPDIR%%/config/menu.php
|
||||
%%IMPDIR%%/config/menu.php.dist
|
||||
%%IMPDIR%%/config/mime_drivers.php
|
||||
%%IMPDIR%%/config/mime_drivers.php.dist
|
||||
%%IMPDIR%%/config/motd.php
|
||||
%%IMPDIR%%/config/motd.php.dist
|
||||
%%IMPDIR%%/config/prefs.php
|
||||
%%IMPDIR%%/config/prefs.php.dist
|
||||
%%IMPDIR%%/config/servers.php
|
||||
%%IMPDIR%%/config/servers.php.dist
|
||||
%%IMPDIR%%/config/trailer.txt
|
||||
%%IMPDIR%%/config/trailer.txt.dist
|
||||
%%IMPDIR%%/contacts.php
|
||||
%%IMPDIR%%/expand.php
|
||||
%%IMPDIR%%/fetchmail.php
|
||||
%%IMPDIR%%/fetchmailprefs.php
|
||||
%%IMPDIR%%/filterprefs.php
|
||||
%%IMPDIR%%/folders.php
|
||||
%%IMPDIR%%/index.php
|
||||
%%IMPDIR%%/lib/.htaccess
|
||||
%%IMPDIR%%/lib/Auth/imp.php
|
||||
%%IMPDIR%%/lib/Block/summary.php
|
||||
%%IMPDIR%%/lib/Block/tree_folders.php
|
||||
%%IMPDIR%%/lib/Compose.php
|
||||
%%IMPDIR%%/lib/Crypt/PGP.php
|
||||
%%IMPDIR%%/lib/Crypt/SMIME.php
|
||||
%%IMPDIR%%/lib/Fetchmail.php
|
||||
%%IMPDIR%%/lib/Fetchmail/imap.php
|
||||
%%IMPDIR%%/lib/Filter.php
|
||||
%%IMPDIR%%/lib/Folder.php
|
||||
%%IMPDIR%%/lib/IMAP.php
|
||||
%%IMPDIR%%/lib/IMAP/Tree.php
|
||||
%%IMPDIR%%/lib/IMP.php
|
||||
%%IMPDIR%%/lib/Identity/imp.php
|
||||
%%IMPDIR%%/lib/MIME/Contents.php
|
||||
%%IMPDIR%%/lib/MIME/Headers.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/alternative.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/appledouble.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/enriched.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/html.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/images.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/itip.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/multipart.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/notification.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/partial.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/pgp.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/pkcs7.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/plain.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/related.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/rfc822.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/status.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/tnef.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/zip.php
|
||||
%%IMPDIR%%/lib/Mailbox.php
|
||||
%%IMPDIR%%/lib/Maillog.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/delete_attachments_monthly.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/delete_sentmail_monthly.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/fetchmail_login.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/purge_trash.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/rename_sentmail_monthly.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/tos_agreement.php
|
||||
%%IMPDIR%%/lib/Maintenance/imp.php
|
||||
%%IMPDIR%%/lib/Message.php
|
||||
%%IMPDIR%%/lib/Notification/Listener/status.php
|
||||
%%IMPDIR%%/lib/Quota.php
|
||||
%%IMPDIR%%/lib/Quota/command.php
|
||||
%%IMPDIR%%/lib/Quota/courier.php
|
||||
%%IMPDIR%%/lib/Quota/cyrus.php
|
||||
%%IMPDIR%%/lib/Quota/logfile.php
|
||||
%%IMPDIR%%/lib/Quota/mdaemon.php
|
||||
%%IMPDIR%%/lib/Quota/mercury32.php
|
||||
%%IMPDIR%%/lib/Search.php
|
||||
%%IMPDIR%%/lib/Session.php
|
||||
%%IMPDIR%%/lib/Spam.php
|
||||
%%IMPDIR%%/lib/VFolder.php
|
||||
%%IMPDIR%%/lib/api.php
|
||||
%%IMPDIR%%/lib/base.php
|
||||
%%IMPDIR%%/lib/prefs.php
|
||||
%%IMPDIR%%/lib/version.php
|
||||
%%IMPDIR%%/locale/.htaccess
|
||||
%%IMPDIR%%/locale/ar_OM/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ar_SY/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/bg_BG/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ca_ES/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ca_ES/help.xml
|
||||
%%IMPDIR%%/locale/cs_CZ/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/cs_CZ/help.xml
|
||||
%%IMPDIR%%/locale/da_DK/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/da_DK/help.xml
|
||||
%%IMPDIR%%/locale/de_DE/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/de_DE/help.xml
|
||||
%%IMPDIR%%/locale/el_GR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/el_GR/help.xml
|
||||
%%IMPDIR%%/locale/en_US/help.xml
|
||||
%%IMPDIR%%/locale/es_ES/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/es_ES/help.xml
|
||||
%%IMPDIR%%/locale/et_EE/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/et_EE/help.xml
|
||||
%%IMPDIR%%/locale/fa_IR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/fi_FI/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/fi_FI/help.xml
|
||||
%%IMPDIR%%/locale/fr_FR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/fr_FR/help.xml
|
||||
%%IMPDIR%%/locale/gl_ES/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/hu_HU/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/hu_HU/help.xml
|
||||
%%IMPDIR%%/locale/id_ID/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/is_IS/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/it_IT/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/it_IT/help.xml
|
||||
%%IMPDIR%%/locale/ja_JP/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ko_KR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ko_KR/help.xml
|
||||
%%IMPDIR%%/locale/lt_LT/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/lv_LV/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/mk_MK/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/nb_NO/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/nb_NO/help.xml
|
||||
%%IMPDIR%%/locale/nl_NL/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/nl_NL/help.xml
|
||||
%%IMPDIR%%/locale/nn_NO/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pl_PL/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pl_PL/help.xml
|
||||
%%IMPDIR%%/locale/pt_BR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pt_BR/help.xml
|
||||
%%IMPDIR%%/locale/pt_PT/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pt_PT/help.xml
|
||||
%%IMPDIR%%/locale/ro_RO/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ru_RU/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ru_RU/help.xml
|
||||
%%IMPDIR%%/locale/sk_SK/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/sk_SK/help.xml
|
||||
%%IMPDIR%%/locale/sl_SI/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/sv_SE/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/sv_SE/help.xml
|
||||
%%IMPDIR%%/locale/th_TH/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/tr_TR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/uk_UA/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/uk_UA/help.xml
|
||||
%%IMPDIR%%/locale/zh_CN/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/zh_CN/help.xml
|
||||
%%IMPDIR%%/locale/zh_TW/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/zh_TW/help.xml
|
||||
%%IMPDIR%%/login.php
|
||||
%%IMPDIR%%/mailbox.php
|
||||
%%IMPDIR%%/message.php
|
||||
%%IMPDIR%%/pgp.php
|
||||
%%IMPDIR%%/po/.htaccess
|
||||
%%IMPDIR%%/po/README
|
||||
%%IMPDIR%%/po/ar_OM.po
|
||||
%%IMPDIR%%/po/ar_SY.po
|
||||
%%IMPDIR%%/po/bg_BG.po
|
||||
%%IMPDIR%%/po/ca_ES.po
|
||||
%%IMPDIR%%/po/cs_CZ.po
|
||||
%%IMPDIR%%/po/da_DK.po
|
||||
%%IMPDIR%%/po/de_DE.po
|
||||
%%IMPDIR%%/po/el_GR.po
|
||||
%%IMPDIR%%/po/es_ES.po
|
||||
%%IMPDIR%%/po/et_EE.po
|
||||
%%IMPDIR%%/po/fa_IR.po
|
||||
%%IMPDIR%%/po/fi_FI.po
|
||||
%%IMPDIR%%/po/fr_FR.po
|
||||
%%IMPDIR%%/po/gl_ES.po
|
||||
%%IMPDIR%%/po/hu_HU.po
|
||||
%%IMPDIR%%/po/id_ID.po
|
||||
%%IMPDIR%%/po/imp.pot
|
||||
%%IMPDIR%%/po/is_IS.po
|
||||
%%IMPDIR%%/po/it_IT.po
|
||||
%%IMPDIR%%/po/ja_JP.po
|
||||
%%IMPDIR%%/po/ko_KR.po
|
||||
%%IMPDIR%%/po/lt_LT.po
|
||||
%%IMPDIR%%/po/lv_LV.po
|
||||
%%IMPDIR%%/po/mk_MK.po
|
||||
%%IMPDIR%%/po/nb_NO.po
|
||||
%%IMPDIR%%/po/nl_NL.po
|
||||
%%IMPDIR%%/po/nn_NO.po
|
||||
%%IMPDIR%%/po/pl_PL.po
|
||||
%%IMPDIR%%/po/pt_BR.po
|
||||
%%IMPDIR%%/po/pt_PT.po
|
||||
%%IMPDIR%%/po/ro_RO.po
|
||||
%%IMPDIR%%/po/ru_RU.po
|
||||
%%IMPDIR%%/po/sk_SK.po
|
||||
%%IMPDIR%%/po/sl_SI.po
|
||||
%%IMPDIR%%/po/sv_SE.po
|
||||
%%IMPDIR%%/po/th_TH.po
|
||||
%%IMPDIR%%/po/tr_TR.po
|
||||
%%IMPDIR%%/po/uk_UA.po
|
||||
%%IMPDIR%%/po/zh_CN.po
|
||||
%%IMPDIR%%/po/zh_TW.po
|
||||
%%IMPDIR%%/recompose.php
|
||||
%%IMPDIR%%/redirect.php
|
||||
%%IMPDIR%%/scripts/.htaccess
|
||||
%%IMPDIR%%/scripts/Imp.reg
|
||||
%%IMPDIR%%/scripts/custom_login.php
|
||||
%%IMPDIR%%/scripts/singlescript.php
|
||||
%%IMPDIR%%/search.php
|
||||
%%IMPDIR%%/smime.php
|
||||
%%IMPDIR%%/spelling.php
|
||||
%%IMPDIR%%/templates/.htaccess
|
||||
%%IMPDIR%%/templates/acl/acl.inc
|
||||
%%IMPDIR%%/templates/common-header.inc
|
||||
%%IMPDIR%%/templates/compose/attachments.inc
|
||||
%%IMPDIR%%/templates/compose/attachments.js
|
||||
%%IMPDIR%%/templates/compose/compose.inc
|
||||
%%IMPDIR%%/templates/compose/compose.js
|
||||
%%IMPDIR%%/templates/compose/compose_expand.js
|
||||
%%IMPDIR%%/templates/compose/encrypt_list.inc
|
||||
%%IMPDIR%%/templates/compose/expand.inc
|
||||
%%IMPDIR%%/templates/compose/recompose.inc
|
||||
%%IMPDIR%%/templates/compose/redirect.inc
|
||||
%%IMPDIR%%/templates/compose/spelling.inc
|
||||
%%IMPDIR%%/templates/compose/spelling.js
|
||||
%%IMPDIR%%/templates/compose/success.inc
|
||||
%%IMPDIR%%/templates/contacts/contacts.inc
|
||||
%%IMPDIR%%/templates/fetchmail/account_select.inc
|
||||
%%IMPDIR%%/templates/fetchmail/driver_select.inc
|
||||
%%IMPDIR%%/templates/fetchmail/fetchmail.inc
|
||||
%%IMPDIR%%/templates/fetchmail/manage.inc
|
||||
%%IMPDIR%%/templates/fetchmail/top.inc
|
||||
%%IMPDIR%%/templates/filters/notactive.inc
|
||||
%%IMPDIR%%/templates/filters/prefs.inc
|
||||
%%IMPDIR%%/templates/folders/actions.inc
|
||||
%%IMPDIR%%/templates/folders/folders.html
|
||||
%%IMPDIR%%/templates/folders/foot.inc
|
||||
%%IMPDIR%%/templates/folders/head.inc
|
||||
%%IMPDIR%%/templates/folders/import.inc
|
||||
%%IMPDIR%%/templates/folders/javascript.inc
|
||||
%%IMPDIR%%/templates/javascript/open_compose_win.js
|
||||
%%IMPDIR%%/templates/javascript/open_print_win.js
|
||||
%%IMPDIR%%/templates/login/login.inc
|
||||
%%IMPDIR%%/templates/mailbox/actions.inc
|
||||
%%IMPDIR%%/templates/mailbox/actions_deleted.inc
|
||||
%%IMPDIR%%/templates/mailbox/alert.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/legend.inc
|
||||
%%IMPDIR%%/templates/mailbox/mailbox.html
|
||||
%%IMPDIR%%/templates/mailbox/message_footers.inc
|
||||
%%IMPDIR%%/templates/mailbox/message_headers.inc
|
||||
%%IMPDIR%%/templates/mailbox/navbar.inc
|
||||
%%IMPDIR%%/templates/mailbox/searchfolder.inc
|
||||
%%IMPDIR%%/templates/menu.inc
|
||||
%%IMPDIR%%/templates/message/headers.inc
|
||||
%%IMPDIR%%/templates/message/javascript.inc
|
||||
%%IMPDIR%%/templates/message/message.inc
|
||||
%%IMPDIR%%/templates/message/navbar_actions.inc
|
||||
%%IMPDIR%%/templates/message/navbar_navigate.inc
|
||||
%%IMPDIR%%/templates/message/navbar_top.inc
|
||||
%%IMPDIR%%/templates/message/print.inc
|
||||
%%IMPDIR%%/templates/pgp/import_key.inc
|
||||
%%IMPDIR%%/templates/pgp/notactive.inc
|
||||
%%IMPDIR%%/templates/pgp/open_pgp_import.js
|
||||
%%IMPDIR%%/templates/pgp/open_pgp_win.js
|
||||
%%IMPDIR%%/templates/pgp/passphrase.inc
|
||||
%%IMPDIR%%/templates/pgp/pgp.inc
|
||||
%%IMPDIR%%/templates/prefs/encryptselect.inc
|
||||
%%IMPDIR%%/templates/prefs/folderselect.inc
|
||||
%%IMPDIR%%/templates/prefs/initialpageselect.inc
|
||||
%%IMPDIR%%/templates/prefs/sentmailselect.inc
|
||||
%%IMPDIR%%/templates/prefs/sourceselect.inc
|
||||
%%IMPDIR%%/templates/prefs/spamselect.inc
|
||||
%%IMPDIR%%/templates/prefs/trashselect.inc
|
||||
%%IMPDIR%%/templates/quota/quota.inc
|
||||
%%IMPDIR%%/templates/search/fields.inc
|
||||
%%IMPDIR%%/templates/search/header.inc
|
||||
%%IMPDIR%%/templates/search/javascript.inc
|
||||
%%IMPDIR%%/templates/search/main.inc
|
||||
%%IMPDIR%%/templates/smime/import_key.inc
|
||||
%%IMPDIR%%/templates/smime/notactive.inc
|
||||
%%IMPDIR%%/templates/smime/open_smime_import.js
|
||||
%%IMPDIR%%/templates/smime/open_smime_win.js
|
||||
%%IMPDIR%%/templates/smime/passphrase.inc
|
||||
%%IMPDIR%%/templates/smime/smime.inc
|
||||
%%IMPDIR%%/templates/thread/bottom.inc
|
||||
%%IMPDIR%%/templates/thread/thread.html
|
||||
%%IMPDIR%%/templates/thread/top.inc
|
||||
%%IMPDIR%%/test.php
|
||||
%%IMPDIR%%/themes/azur/screen.css
|
||||
%%IMPDIR%%/themes/bluemoon/screen.css
|
||||
%%IMPDIR%%/themes/bluewhite/screen.css
|
||||
%%IMPDIR%%/themes/brown/screen.css
|
||||
%%IMPDIR%%/themes/burntorange/screen.css
|
||||
%%IMPDIR%%/themes/cherry/screen.css
|
||||
%%IMPDIR%%/themes/gennevilliers/screen.css
|
||||
%%IMPDIR%%/themes/green/screen.css
|
||||
%%IMPDIR%%/themes/grey/screen.css
|
||||
%%IMPDIR%%/themes/graphics/addressbook-blue.png
|
||||
%%IMPDIR%%/themes/graphics/addressbook-red.png
|
||||
%%IMPDIR%%/themes/graphics/apple.png
|
||||
%%IMPDIR%%/themes/graphics/attachment.png
|
||||
%%IMPDIR%%/themes/graphics/compose.png
|
||||
%%IMPDIR%%/themes/graphics/empty_trash.png
|
||||
%%IMPDIR%%/themes/graphics/expand.png
|
||||
%%IMPDIR%%/themes/graphics/favicon.ico
|
||||
%%IMPDIR%%/themes/graphics/fetchmail.png
|
||||
%%IMPDIR%%/themes/graphics/filters.png
|
||||
%%IMPDIR%%/themes/graphics/folders/drafts.png
|
||||
%%IMPDIR%%/themes/graphics/folders/folder.png
|
||||
%%IMPDIR%%/themes/graphics/folders/folder_open.png
|
||||
%%IMPDIR%%/themes/graphics/folders/inbox.png
|
||||
%%IMPDIR%%/themes/graphics/folders/sent.png
|
||||
%%IMPDIR%%/themes/graphics/folders/templates.png
|
||||
%%IMPDIR%%/themes/graphics/folders/trash.png
|
||||
%%IMPDIR%%/themes/graphics/forward.png
|
||||
%%IMPDIR%%/themes/graphics/imp.png
|
||||
%%IMPDIR%%/themes/graphics/mail_answered.png
|
||||
%%IMPDIR%%/themes/graphics/mail_deleted.png
|
||||
%%IMPDIR%%/themes/graphics/mail_draft.png
|
||||
%%IMPDIR%%/themes/graphics/mail_flagged.png
|
||||
%%IMPDIR%%/themes/graphics/mail_personal.png
|
||||
%%IMPDIR%%/themes/graphics/mail_priority_high.png
|
||||
%%IMPDIR%%/themes/graphics/mail_priority_low.png
|
||||
%%IMPDIR%%/themes/graphics/mail_unseen.png
|
||||
%%IMPDIR%%/themes/graphics/manage_attachments.png
|
||||
%%IMPDIR%%/themes/graphics/mime/compressed.png
|
||||
%%IMPDIR%%/themes/graphics/mime/encryption.png
|
||||
%%IMPDIR%%/themes/graphics/mime/html.png
|
||||
%%IMPDIR%%/themes/graphics/mime/image.png
|
||||
%%IMPDIR%%/themes/graphics/mime/itip.png
|
||||
%%IMPDIR%%/themes/graphics/mime/mail.png
|
||||
%%IMPDIR%%/themes/graphics/mime/text.png
|
||||
%%IMPDIR%%/themes/graphics/newmail.png
|
||||
%%IMPDIR%%/themes/graphics/reply.png
|
||||
%%IMPDIR%%/themes/graphics/shared.png
|
||||
%%IMPDIR%%/themes/graphics/signed.png
|
||||
%%IMPDIR%%/themes/graphics/spacer_red.png
|
||||
%%IMPDIR%%/themes/graphics/spellcheck.png
|
||||
%%IMPDIR%%/themes/screen.css
|
||||
%%IMPDIR%%/themes/lavander/screen.css
|
||||
%%IMPDIR%%/themes/postnuke/screen.css
|
||||
%%IMPDIR%%/themes/simplex/screen.css
|
||||
%%IMPDIR%%/themes/sun/screen.css
|
||||
%%IMPDIR%%/thread.php
|
||||
%%IMPDIR%%/view.php
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||
etc/horde/httpd.conf.imp
|
||||
@dirrm %%IMPDIR%%/themes/sun
|
||||
@dirrm %%IMPDIR%%/themes/simplex
|
||||
@dirrm %%IMPDIR%%/themes/postnuke
|
||||
@dirrm %%IMPDIR%%/themes/lavander
|
||||
@dirrm %%IMPDIR%%/themes/graphics/mime
|
||||
@dirrm %%IMPDIR%%/themes/graphics/folders
|
||||
@dirrm %%IMPDIR%%/themes/graphics
|
||||
@dirrm %%IMPDIR%%/themes/grey
|
||||
@dirrm %%IMPDIR%%/themes/green
|
||||
@dirrm %%IMPDIR%%/themes/gennevilliers
|
||||
@dirrm %%IMPDIR%%/themes/cherry
|
||||
@dirrm %%IMPDIR%%/themes/burntorange
|
||||
@dirrm %%IMPDIR%%/themes/brown
|
||||
@dirrm %%IMPDIR%%/themes/bluewhite
|
||||
@dirrm %%IMPDIR%%/themes/bluemoon
|
||||
@dirrm %%IMPDIR%%/themes/azur
|
||||
@dirrm %%IMPDIR%%/themes
|
||||
@dirrm %%IMPDIR%%/templates/thread
|
||||
@dirrm %%IMPDIR%%/templates/smime
|
||||
@dirrm %%IMPDIR%%/templates/search
|
||||
@dirrm %%IMPDIR%%/templates/quota
|
||||
@dirrm %%IMPDIR%%/templates/prefs
|
||||
@dirrm %%IMPDIR%%/templates/pgp
|
||||
@dirrm %%IMPDIR%%/templates/message
|
||||
@dirrm %%IMPDIR%%/templates/mailbox
|
||||
@dirrm %%IMPDIR%%/templates/login
|
||||
@dirrm %%IMPDIR%%/templates/javascript
|
||||
@dirrm %%IMPDIR%%/templates/folders
|
||||
@dirrm %%IMPDIR%%/templates/filters
|
||||
@dirrm %%IMPDIR%%/templates/fetchmail
|
||||
@dirrm %%IMPDIR%%/templates/contacts
|
||||
@dirrm %%IMPDIR%%/templates/compose
|
||||
@dirrm %%IMPDIR%%/templates/acl
|
||||
@dirrm %%IMPDIR%%/templates
|
||||
@dirrm %%IMPDIR%%/scripts
|
||||
@dirrm %%IMPDIR%%/po
|
||||
@dirrm %%IMPDIR%%/locale/zh_TW/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/zh_TW
|
||||
@dirrm %%IMPDIR%%/locale/zh_CN/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/zh_CN
|
||||
@dirrm %%IMPDIR%%/locale/uk_UA/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/uk_UA
|
||||
@dirrm %%IMPDIR%%/locale/tr_TR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/tr_TR
|
||||
@dirrm %%IMPDIR%%/locale/th_TH/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/th_TH
|
||||
@dirrm %%IMPDIR%%/locale/sv_SE/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/sv_SE
|
||||
@dirrm %%IMPDIR%%/locale/sl_SI/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/sl_SI
|
||||
@dirrm %%IMPDIR%%/locale/sk_SK/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/sk_SK
|
||||
@dirrm %%IMPDIR%%/locale/ru_RU/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ru_RU
|
||||
@dirrm %%IMPDIR%%/locale/ro_RO/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ro_RO
|
||||
@dirrm %%IMPDIR%%/locale/pt_PT/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/pt_PT
|
||||
@dirrm %%IMPDIR%%/locale/pt_BR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/pt_BR
|
||||
@dirrm %%IMPDIR%%/locale/pl_PL/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/pl_PL
|
||||
@dirrm %%IMPDIR%%/locale/nn_NO/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/nn_NO
|
||||
@dirrm %%IMPDIR%%/locale/nl_NL/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/nl_NL
|
||||
@dirrm %%IMPDIR%%/locale/nb_NO/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/nb_NO
|
||||
@dirrm %%IMPDIR%%/locale/mk_MK/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/mk_MK
|
||||
@dirrm %%IMPDIR%%/locale/lv_LV/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/lv_LV
|
||||
@dirrm %%IMPDIR%%/locale/lt_LT/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/lt_LT
|
||||
@dirrm %%IMPDIR%%/locale/ko_KR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ko_KR
|
||||
@dirrm %%IMPDIR%%/locale/ja_JP/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ja_JP
|
||||
@dirrm %%IMPDIR%%/locale/it_IT/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/it_IT
|
||||
@dirrm %%IMPDIR%%/locale/is_IS/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/is_IS
|
||||
@dirrm %%IMPDIR%%/locale/id_ID/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/id_ID
|
||||
@dirrm %%IMPDIR%%/locale/hu_HU/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/hu_HU
|
||||
@dirrm %%IMPDIR%%/locale/gl_ES/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/gl_ES
|
||||
@dirrm %%IMPDIR%%/locale/fr_FR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/fr_FR
|
||||
@dirrm %%IMPDIR%%/locale/fi_FI/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/fi_FI
|
||||
@dirrm %%IMPDIR%%/locale/fa_IR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/fa_IR
|
||||
@dirrm %%IMPDIR%%/locale/et_EE/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/et_EE
|
||||
@dirrm %%IMPDIR%%/locale/es_ES/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/es_ES
|
||||
@dirrm %%IMPDIR%%/locale/en_US
|
||||
@dirrm %%IMPDIR%%/locale/el_GR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/el_GR
|
||||
@dirrm %%IMPDIR%%/locale/de_DE/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/de_DE
|
||||
@dirrm %%IMPDIR%%/locale/da_DK/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/da_DK
|
||||
@dirrm %%IMPDIR%%/locale/cs_CZ/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/cs_CZ
|
||||
@dirrm %%IMPDIR%%/locale/ca_ES/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ca_ES
|
||||
@dirrm %%IMPDIR%%/locale/bg_BG/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/bg_BG
|
||||
@dirrm %%IMPDIR%%/locale/ar_SY/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ar_SY
|
||||
@dirrm %%IMPDIR%%/locale/ar_OM/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ar_OM
|
||||
@dirrm %%IMPDIR%%/locale
|
||||
@dirrm %%IMPDIR%%/lib/Quota
|
||||
@dirrm %%IMPDIR%%/lib/Notification/Listener
|
||||
@dirrm %%IMPDIR%%/lib/Notification
|
||||
@dirrm %%IMPDIR%%/lib/Maintenance/Task
|
||||
@dirrm %%IMPDIR%%/lib/Maintenance
|
||||
@dirrm %%IMPDIR%%/lib/MIME/Viewer
|
||||
@dirrm %%IMPDIR%%/lib/MIME
|
||||
@dirrm %%IMPDIR%%/lib/Identity
|
||||
@dirrm %%IMPDIR%%/lib/IMAP
|
||||
@dirrm %%IMPDIR%%/lib/Fetchmail
|
||||
@dirrm %%IMPDIR%%/lib/Crypt
|
||||
@dirrm %%IMPDIR%%/lib/Block
|
||||
@dirrm %%IMPDIR%%/lib/Auth
|
||||
@dirrm %%IMPDIR%%/lib
|
||||
@unexec rmdir %D/%%IMPDIR%%/config 2>/dev/null || true
|
||||
@unexec rmdir %D/%%IMPDIR%% 2>/dev/null || true
|
247
mail/imp/Makefile
Normal file
247
mail/imp/Makefile
Normal file
|
@ -0,0 +1,247 @@
|
|||
# Ports collection makefile for: imp3
|
||||
# Date created: Mon Oct 08, 2001
|
||||
# Whom: Thierry Thomas (<thierry@thomas.as>)
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= imp
|
||||
PORTVERSION= 4.0
|
||||
CATEGORIES= mail www
|
||||
MASTER_SITES= ftp://ftp.horde.org/pub/imp/ \
|
||||
ftp://ftp.planetmirror.com/pub/horde/imp/ \
|
||||
ftp://ftp.au.horde.org/pub/horde/imp/ \
|
||||
ftp://ftp.be.horde.org/imp/ \
|
||||
ftp://ftp.es.horde.org/pub/imp/ \
|
||||
http://ftp.horde.org/pub/imp/
|
||||
DISTNAME= ${PORTNAME}-h3-${PORTVERSION}
|
||||
|
||||
MAINTAINER= thierry@FreeBSD.org
|
||||
COMMENT= A webmail system which accesses mail over IMAP
|
||||
|
||||
#-----------------------------------------------------------------------
|
||||
# You may define these options:
|
||||
#
|
||||
# - WITHOUT_LDAP : if you do not need OpenLDAP;
|
||||
#
|
||||
# - WITHOUT_SMIME : disable S/MIME;
|
||||
#
|
||||
# - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree;
|
||||
#
|
||||
# - WITHOUT_ASPELL : for spelling bees...
|
||||
#
|
||||
# - WITH_ISPELL : if you prefer ispell;
|
||||
#
|
||||
# - NOCRYPT : if crypto is restricted in your country;
|
||||
#
|
||||
# - WITHOUT_SSL : if you have not installed c-client WITH_SSL;
|
||||
#
|
||||
# - WITH_VALID_CERT : if you own a valid SSL certificate;
|
||||
#
|
||||
# - WITHOUT_INGO : if you don't need filters management;
|
||||
#
|
||||
# - WITHOUT_NAG : if you don't want tasks management;
|
||||
#
|
||||
# - WITHOUT_TURBA : if you do not want adressbooks;
|
||||
#
|
||||
# - WITH_HTML : enable HTML composition mode;
|
||||
#
|
||||
# - 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_IMAP-UW : IMP will work with imap-uw;
|
||||
#
|
||||
# - WITH_DOVECOT : IMP will work with dovecot;
|
||||
#
|
||||
# - WITH_COURIER-IMAP : IMP will work with courier-imap.
|
||||
#
|
||||
# These choices are mutually exclusive, and imap-uw is the default.
|
||||
#
|
||||
#-----------------------------------------------------------------------
|
||||
|
||||
RUN_DEPENDS+= ${PEARDIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL
|
||||
|
||||
CONFLICTS= imp-3.*
|
||||
|
||||
USE_PHP= imap
|
||||
.if defined(WITHOUT_TURBA)
|
||||
. if !defined(WITHOUT_LDAP)
|
||||
USE_PHP+= ldap
|
||||
. endif
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/rpc.php:${PORTSDIR}/www/horde
|
||||
.else
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/turba/minisearch.php:${PORTSDIR}/mail/turba
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_INGO)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/ingo/filters.php:${PORTSDIR}/mail/ingo
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_NAG)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/nag/data.php:${PORTSDIR}/deskutils/nag
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_SMIME)
|
||||
USE_PHP+= openssl
|
||||
.endif
|
||||
|
||||
.if !defined(NOCRYPT)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/gpg:${PORTSDIR}/security/gnupg
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_ASPELL)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/aspell:${PORTSDIR}/textproc/aspell
|
||||
.elif defined(WITH_ISPELL)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell
|
||||
.endif
|
||||
|
||||
.if defined(WITH_HTML)
|
||||
RUN_DEPENDS+= ${PEARDIR}/HTTP/Request.php:${PORTSDIR}/www/pear-HTTP_Request
|
||||
.endif
|
||||
|
||||
NO_BUILD= yes
|
||||
USE_REINPLACE= yes
|
||||
REINPLACE_ARGS= -i.beforeIMP
|
||||
|
||||
DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \
|
||||
docs/RELEASE_NOTES docs/TODO docs/UPGRADING
|
||||
CONFFILE= filter.txt header.txt menu.php mime_drivers.php motd.php \
|
||||
prefs.php servers.php trailer.txt
|
||||
SUB_DIRS= config lib locale po scripts templates themes
|
||||
|
||||
LHORDEDIR?= www/horde
|
||||
LIMPDIR= ${LHORDEDIR}/imp
|
||||
PEARDIR?= ${LOCALBASE}/share/pear
|
||||
|
||||
PLIST_SUB= IMPDIR=${LIMPDIR}
|
||||
|
||||
PKGMESSAGE= ${WRKDIR}/pkg-message
|
||||
|
||||
IMPDIR= ${PREFIX}/${LIMPDIR}
|
||||
CONFDIR= ${IMPDIR}/config
|
||||
|
||||
HORDE_INC= ${LOCALBASE}/etc/horde
|
||||
|
||||
HOSTNAME?= `/bin/hostname`
|
||||
SERVOS?= ${OPSYS}-${OSREL}
|
||||
|
||||
PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h
|
||||
|
||||
PATCH2RM= prefs.php.dist.orig servers.php.dist.orig conf.xml.orig \
|
||||
conf.xml.beforeIMP servers.php.dist.beforeIMP
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
# I have no report about the support of dkimap4 by IMP,
|
||||
# but I shall be happy to add it if someone report success with it.
|
||||
# If an IMAP server is already installed, we just record the dependence,
|
||||
# else we shall install imap-uw.
|
||||
# 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_IMAP-UW) || exists(${LOCALBASE}/libexec/imapd)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/libexec/imapd:${PORTSDIR}/mail/imap-uw
|
||||
. elif defined(WITH_CYRUS-IMAPD) || exists(${LOCALBASE}/lib/libacap.a)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/lib/libacap.a:${PORTSDIR}/mail/cyrus-imapd
|
||||
. elif defined(WITH_COURIER-IMAP) || exists(${LOCALBASE}/bin/deliverquota)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/deliverquota:${PORTSDIR}/mail/courier-imap
|
||||
. elif defined(WITH_DOVECOT) || exists(${LOCALBASE}/libexec/dovecot/imap)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/libexec/dovecot/imap:${PORTSDIR}/mail/dovecot
|
||||
. else
|
||||
RUN_DEPENDS+= ${LOCALBASE}/libexec/imapd:${PORTSDIR}/mail/imap-uw
|
||||
. endif
|
||||
.endif
|
||||
|
||||
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-configure:
|
||||
@${REINPLACE_CMD} -e "s:/usr/local:${LOCALBASE}:" ${WRKSRC}/config/conf.xml
|
||||
.if !defined(WITHOUT_ASPELL)
|
||||
@${REINPLACE_CMD} -e "s:%%ASPELL%%:${LOCALBASE}/bin/aspell:" \
|
||||
${WRKSRC}/config/conf.xml
|
||||
.elif defined(WITH_ISPELL)
|
||||
@${REINPLACE_CMD} -e "s:%%ASPELL%%:${LOCALBASE}/bin/ispell:" \
|
||||
${WRKSRC}/config/conf.xml
|
||||
.else
|
||||
@${REINPLACE_CMD} -e "s:%%ASPELL%%::" ${WRKSRC}/config/conf.xml
|
||||
.endif
|
||||
.if !defined(NOCRYPT)
|
||||
@${REINPLACE_CMD} -e "s:%%GPG%%:${LOCALBASE}/bin/gpg:" \
|
||||
${WRKSRC}/config/conf.xml
|
||||
.else
|
||||
@${REINPLACE_CMD} -e "s:%%GPG%%::" ${WRKSRC}/config/conf.xml
|
||||
.endif
|
||||
@${REINPLACE_CMD} -e "s:IMP_VERSION:IMP_VERSION . ' / ${SERVOS}':" \
|
||||
${WRKSRC}/lib/MIME/Headers.php
|
||||
@${REINPLACE_CMD} -e "s:example.com:${HOSTNAME}:g" \
|
||||
${WRKSRC}/config/servers.php.dist
|
||||
.if defined(WITHOUT_SSL)
|
||||
@${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/notls:;s:%%IMAPPORT%%:143:" \
|
||||
${WRKSRC}/config/servers.php.dist
|
||||
.else
|
||||
@${REINPLACE_CMD} -e "s:%%IMAPPORT%%:993:" ${WRKSRC}/config/servers.php.dist
|
||||
. if defined(WITH_VALID_CERT)
|
||||
@${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/ssl:" ${WRKSRC}/config/servers.php.dist
|
||||
. else
|
||||
@${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/ssl/novalidate-cert:" \
|
||||
${WRKSRC}/config/servers.php.dist
|
||||
. endif
|
||||
.endif
|
||||
@${SED} -e "s:/home/httpd/html/horde/imp:${IMPDIR}:" \
|
||||
${FILESDIR}/httpd.conf.imp > ${WRKDIR}/httpd.conf.imp
|
||||
.for fc in ${PATCH2RM}
|
||||
@${RM} ${WRKSRC}/config/${fc}
|
||||
.endfor
|
||||
@${RM} ${WRKSRC}/lib/MIME/Headers.php.beforeIMP
|
||||
|
||||
pre-install:
|
||||
.if !defined(BATCH) && !defined(WITHOUT_SSL)
|
||||
@if ! ${GREP} -q -e 'CCLIENT_SSLENABLED "yes"' ${PORTREV_H}; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure c-client with SSL support." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
@${MKDIR} ${IMPDIR}
|
||||
.for REP in ${SUB_DIRS}
|
||||
@${CP} -Rp ${WRKSRC}/${REP} ${IMPDIR}
|
||||
.endfor
|
||||
@${CP} -p ${WRKSRC}/*.php ${IMPDIR}
|
||||
.for FILE in ${CONFFILE}
|
||||
@if [ ! -f ${CONFDIR}/${FILE} ]; then \
|
||||
${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \
|
||||
fi
|
||||
.endfor
|
||||
@${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}
|
||||
@${INSTALL_DATA} ${WRKDIR}/httpd.conf.imp ${HORDE_INC}
|
||||
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${IMPDIR}
|
||||
@${CHMOD} -R o-rwx ${CONFDIR}
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
.for FILE in ${DOCS}
|
||||
@${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
|
||||
.endfor
|
||||
@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
@${SED} -e "s:%%IMPDIR%%:${IMPDIR}:g;s:%%PORTSDIR%%:${PORTSDIR}:g;" \
|
||||
-e "s:%%CONFDIR%%:${CONFDIR}:g;s:%%DOCSDIR%%:${DOCSDIR}:g" \
|
||||
< ${FILESDIR}/pkg-message.in > ${PKGMESSAGE}
|
||||
@${ECHO_MSG}
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
@${ECHO_MSG}
|
||||
|
||||
.include <bsd.port.post.mk>
|
2
mail/imp/distinfo
Normal file
2
mail/imp/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (imp-h3-4.0.tar.gz) = 41b7888089f98e06da6bb5f92ad1e8e7
|
||||
SIZE (imp-h3-4.0.tar.gz) = 2892010
|
31
mail/imp/files/httpd.conf.imp
Normal file
31
mail/imp/files/httpd.conf.imp
Normal file
|
@ -0,0 +1,31 @@
|
|||
# This is included in Apache's httpd.conf for IMP
|
||||
#
|
||||
# For security, don't serve pages from the IMP configuration and
|
||||
# library directories.
|
||||
#
|
||||
<Directory "/home/httpd/html/horde/imp/config">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
<Directory "/home/httpd/html/horde/imp/lib">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
<Directory "/home/httpd/html/horde/imp/locale">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
<Directory "/home/httpd/html/horde/imp/po">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
<Directory "/home/httpd/html/horde/imp/scripts">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
<Directory "/home/httpd/html/horde/imp/templates">
|
||||
order deny,allow
|
||||
deny from all
|
||||
</Directory>
|
||||
# End of IMP configuration ================
|
||||
|
33
mail/imp/files/patch-ab
Normal file
33
mail/imp/files/patch-ab
Normal file
|
@ -0,0 +1,33 @@
|
|||
--- config/servers.php.dist.orig Sun Dec 12 07:36:51 2004
|
||||
+++ config/servers.php.dist Fri Dec 24 00:27:59 2004
|
||||
@@ -47,7 +47,7 @@
|
||||
*
|
||||
* folders: The folder path for the IMAP server.
|
||||
* Common values:
|
||||
- * UW-IMAP 'mail/' (note the trailing slash)
|
||||
+ * UW-IMAP 'Mail/' (note the trailing slash)
|
||||
* Cyrus, Courier-IMAP 'INBOX.' (note the trailing dot)
|
||||
* dovecot ''
|
||||
*
|
||||
@@ -174,14 +174,16 @@
|
||||
|
||||
$servers['imap'] = array(
|
||||
'name' => 'IMAP Server',
|
||||
- 'server' => 'imap.example.com',
|
||||
+// 'server' => 'imap.example.com',
|
||||
+ 'server' => 'localhost',
|
||||
'hordeauth' => false,
|
||||
- 'protocol' => 'imap/notls',
|
||||
- 'port' => 143,
|
||||
- 'folders' => 'mail/',
|
||||
+ 'protocol' => '%%PROTOCOL%%',
|
||||
+ 'port' => %%IMAPPORT%%,
|
||||
+ 'folders' => 'Mail/',
|
||||
'namespace' => '',
|
||||
'maildomain' => 'example.com',
|
||||
- 'smtphost' => 'smtp.example.com',
|
||||
+// 'smtphost' => 'smtp.example.com',
|
||||
+ 'smtphost' => 'localhost',
|
||||
'smtpport' => 25,
|
||||
'realm' => '',
|
||||
'preferred' => '',
|
11
mail/imp/files/patch-ac
Normal file
11
mail/imp/files/patch-ac
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- config/prefs.php.dist.orig Fri Oct 29 19:04:12 2004
|
||||
+++ config/prefs.php.dist Thu Nov 11 21:49:05 2004
|
||||
@@ -1071,7 +1071,7 @@
|
||||
// 'value' => "source_one\tsource_two"
|
||||
// refer to turba/config/sources.php for possible source values
|
||||
$_prefs['search_sources'] = array(
|
||||
- 'value' => "",
|
||||
+ 'value' => 'localsql',
|
||||
'locked' => false,
|
||||
'shared' => false,
|
||||
'type' => 'implicit');
|
25
mail/imp/files/patch-config::conf.xml
Normal file
25
mail/imp/files/patch-config::conf.xml
Normal file
|
@ -0,0 +1,25 @@
|
|||
--- config/conf.xml.orig Mon Nov 22 09:40:29 2004
|
||||
+++ config/conf.xml Mon Nov 29 11:51:54 2004
|
||||
@@ -6,11 +6,11 @@
|
||||
<configheader>External Utilities</configheader>
|
||||
<configstring name="spellchecker" required="false" desc="Enter the location
|
||||
of the binary to either aspell or ispell to enable the spell checker. If
|
||||
- this is empty, then spell checking will be disabled."></configstring>
|
||||
+ this is empty, then spell checking will be disabled.">%%ASPELL%%</configstring>
|
||||
<configstring name="gnupg" required="false" desc="If you want users to have
|
||||
the option of using the GNU Privacy Guard program to decrypt/encrypt PGP
|
||||
files, enter the location of the 'gpg' binary here. If this is empty this
|
||||
- feature will be disabled."></configstring>
|
||||
+ feature will be disabled.">%%GPG%%</configstring>
|
||||
<configmultienum name="gnupg_keyserver" required="false" desc="The address of
|
||||
the public PGP keyserver(s) to use.">wwwkeys.pgp.net
|
||||
<values>
|
||||
@@ -23,7 +23,7 @@
|
||||
connecting to the PGP keyserver. Timeouts are not supported on all
|
||||
systems.">10</configstring>
|
||||
<configstring name="openssl_cafile" required="false" desc="The location of
|
||||
- the root certificates bundle.">/somewhere/ca-bundle.crt</configstring>
|
||||
+ the root certificates bundle.">/usr/local/etc/ssl.crt/ca-bundle.crt</configstring>
|
||||
<configstring name="openssl_binary" required="false" desc="The location of
|
||||
the OpenSSL binary on your system. This program is REQUIRED to import
|
||||
personal S/MIME certificate information, as there is no native PHP function
|
25
mail/imp/files/pkg-message.in
Normal file
25
mail/imp/files/pkg-message.in
Normal file
|
@ -0,0 +1,25 @@
|
|||
************************************************************************
|
||||
IMP has been installed in %%IMPDIR%% with your blank
|
||||
configuration files.
|
||||
|
||||
Horde must be configured and the tables created; if not, see
|
||||
`pkg_info -D -x horde'.
|
||||
|
||||
Then, you might have to tune the configuration files located in
|
||||
%%CONFDIR%%/, specially the file servers.php.
|
||||
|
||||
Then, you must login to Horde as a Horde Administrator to finish the
|
||||
configuration. Please read %%DOCSDIR%%/INSTALL.
|
||||
|
||||
Warning: the filter system of IMP 3.x has been replaced by a separate
|
||||
******** application => check the port mail/ingo. Ingo provides a script
|
||||
to migrate the existing filter rules from IMP 3.x, see Ingo's
|
||||
documentation.
|
||||
|
||||
To protect your configuration files, you have to restart Apache.
|
||||
|
||||
To secure your installation, it is at least recommended that you change
|
||||
the default database password used by horde and imp.
|
||||
Then, you might change the 'session.save_path' setting in php.ini to a
|
||||
directory only readable and writeable by your webserver.
|
||||
************************************************************************
|
27
mail/imp/pkg-deinstall
Normal file
27
mail/imp/pkg-deinstall
Normal file
|
@ -0,0 +1,27 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Backup IMP config files, if needed.
|
||||
|
||||
if [ x$2 != xDEINSTALL ]; then
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ -z "${PACKAGE_BUILDING}" ]; then
|
||||
for cf in `ls ${PKG_PREFIX}/www/horde/imp/config/*php ${PKG_PREFIX}/www/horde/imp/config/*txt`; do
|
||||
diff -bBqw $cf $cf.dist >/dev/null 2>&1
|
||||
case $? in
|
||||
0) # original config file, will be deleted by pkg-plist
|
||||
;;
|
||||
1) # config file has been updated, must be backuped
|
||||
cp -p $cf $cf.previous
|
||||
echo "===> Backing-up..."
|
||||
echo "---> $cf has been saved ***"
|
||||
echo "---> as $cf.previous ***"
|
||||
;;
|
||||
*) # not found?
|
||||
;;
|
||||
esac
|
||||
done
|
||||
fi
|
4
mail/imp/pkg-descr
Normal file
4
mail/imp/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
IMP is the Internet Messaging Program. It is written in PHP and provides
|
||||
webmail access to IMAP and POP3 accounts.
|
||||
|
||||
WWW: http://www.horde.org/imp/
|
487
mail/imp/pkg-plist
Normal file
487
mail/imp/pkg-plist
Normal file
|
@ -0,0 +1,487 @@
|
|||
%%PORTDOCS%%%%DOCSDIR%%/CHANGES
|
||||
%%PORTDOCS%%%%DOCSDIR%%/COPYING
|
||||
%%PORTDOCS%%%%DOCSDIR%%/CREDITS
|
||||
%%PORTDOCS%%%%DOCSDIR%%/INSTALL
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES
|
||||
%%PORTDOCS%%%%DOCSDIR%%/TODO
|
||||
%%PORTDOCS%%%%DOCSDIR%%/UPGRADING
|
||||
%%IMPDIR%%/acl.php
|
||||
%%IMPDIR%%/attachment.php
|
||||
%%IMPDIR%%/compose.php
|
||||
%%IMPDIR%%/config/.htaccess
|
||||
%%IMPDIR%%/config/conf.xml
|
||||
%%IMPDIR%%/config/filter.txt
|
||||
%%IMPDIR%%/config/filter.txt.dist
|
||||
%%IMPDIR%%/config/header.txt
|
||||
%%IMPDIR%%/config/header.txt.dist
|
||||
%%IMPDIR%%/config/menu.php
|
||||
%%IMPDIR%%/config/menu.php.dist
|
||||
%%IMPDIR%%/config/mime_drivers.php
|
||||
%%IMPDIR%%/config/mime_drivers.php.dist
|
||||
%%IMPDIR%%/config/motd.php
|
||||
%%IMPDIR%%/config/motd.php.dist
|
||||
%%IMPDIR%%/config/prefs.php
|
||||
%%IMPDIR%%/config/prefs.php.dist
|
||||
%%IMPDIR%%/config/servers.php
|
||||
%%IMPDIR%%/config/servers.php.dist
|
||||
%%IMPDIR%%/config/trailer.txt
|
||||
%%IMPDIR%%/config/trailer.txt.dist
|
||||
%%IMPDIR%%/contacts.php
|
||||
%%IMPDIR%%/expand.php
|
||||
%%IMPDIR%%/fetchmail.php
|
||||
%%IMPDIR%%/fetchmailprefs.php
|
||||
%%IMPDIR%%/filterprefs.php
|
||||
%%IMPDIR%%/folders.php
|
||||
%%IMPDIR%%/index.php
|
||||
%%IMPDIR%%/lib/.htaccess
|
||||
%%IMPDIR%%/lib/Auth/imp.php
|
||||
%%IMPDIR%%/lib/Block/summary.php
|
||||
%%IMPDIR%%/lib/Block/tree_folders.php
|
||||
%%IMPDIR%%/lib/Compose.php
|
||||
%%IMPDIR%%/lib/Crypt/PGP.php
|
||||
%%IMPDIR%%/lib/Crypt/SMIME.php
|
||||
%%IMPDIR%%/lib/Fetchmail.php
|
||||
%%IMPDIR%%/lib/Fetchmail/imap.php
|
||||
%%IMPDIR%%/lib/Filter.php
|
||||
%%IMPDIR%%/lib/Folder.php
|
||||
%%IMPDIR%%/lib/IMAP.php
|
||||
%%IMPDIR%%/lib/IMAP/Tree.php
|
||||
%%IMPDIR%%/lib/IMP.php
|
||||
%%IMPDIR%%/lib/Identity/imp.php
|
||||
%%IMPDIR%%/lib/MIME/Contents.php
|
||||
%%IMPDIR%%/lib/MIME/Headers.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/alternative.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/appledouble.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/enriched.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/html.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/images.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/itip.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/multipart.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/notification.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/partial.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/pgp.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/pkcs7.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/plain.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/related.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/rfc822.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/status.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/tnef.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/zip.php
|
||||
%%IMPDIR%%/lib/Mailbox.php
|
||||
%%IMPDIR%%/lib/Maillog.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/delete_attachments_monthly.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/delete_sentmail_monthly.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/fetchmail_login.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/purge_trash.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/rename_sentmail_monthly.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/tos_agreement.php
|
||||
%%IMPDIR%%/lib/Maintenance/imp.php
|
||||
%%IMPDIR%%/lib/Message.php
|
||||
%%IMPDIR%%/lib/Notification/Listener/status.php
|
||||
%%IMPDIR%%/lib/Quota.php
|
||||
%%IMPDIR%%/lib/Quota/command.php
|
||||
%%IMPDIR%%/lib/Quota/courier.php
|
||||
%%IMPDIR%%/lib/Quota/cyrus.php
|
||||
%%IMPDIR%%/lib/Quota/logfile.php
|
||||
%%IMPDIR%%/lib/Quota/mdaemon.php
|
||||
%%IMPDIR%%/lib/Quota/mercury32.php
|
||||
%%IMPDIR%%/lib/Search.php
|
||||
%%IMPDIR%%/lib/Session.php
|
||||
%%IMPDIR%%/lib/Spam.php
|
||||
%%IMPDIR%%/lib/VFolder.php
|
||||
%%IMPDIR%%/lib/api.php
|
||||
%%IMPDIR%%/lib/base.php
|
||||
%%IMPDIR%%/lib/prefs.php
|
||||
%%IMPDIR%%/lib/version.php
|
||||
%%IMPDIR%%/locale/.htaccess
|
||||
%%IMPDIR%%/locale/ar_OM/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ar_SY/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/bg_BG/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ca_ES/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ca_ES/help.xml
|
||||
%%IMPDIR%%/locale/cs_CZ/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/cs_CZ/help.xml
|
||||
%%IMPDIR%%/locale/da_DK/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/da_DK/help.xml
|
||||
%%IMPDIR%%/locale/de_DE/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/de_DE/help.xml
|
||||
%%IMPDIR%%/locale/el_GR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/el_GR/help.xml
|
||||
%%IMPDIR%%/locale/en_US/help.xml
|
||||
%%IMPDIR%%/locale/es_ES/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/es_ES/help.xml
|
||||
%%IMPDIR%%/locale/et_EE/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/et_EE/help.xml
|
||||
%%IMPDIR%%/locale/fa_IR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/fi_FI/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/fi_FI/help.xml
|
||||
%%IMPDIR%%/locale/fr_FR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/fr_FR/help.xml
|
||||
%%IMPDIR%%/locale/gl_ES/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/hu_HU/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/hu_HU/help.xml
|
||||
%%IMPDIR%%/locale/id_ID/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/is_IS/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/it_IT/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/it_IT/help.xml
|
||||
%%IMPDIR%%/locale/ja_JP/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ko_KR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ko_KR/help.xml
|
||||
%%IMPDIR%%/locale/lt_LT/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/lv_LV/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/mk_MK/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/nb_NO/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/nb_NO/help.xml
|
||||
%%IMPDIR%%/locale/nl_NL/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/nl_NL/help.xml
|
||||
%%IMPDIR%%/locale/nn_NO/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pl_PL/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pl_PL/help.xml
|
||||
%%IMPDIR%%/locale/pt_BR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pt_BR/help.xml
|
||||
%%IMPDIR%%/locale/pt_PT/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pt_PT/help.xml
|
||||
%%IMPDIR%%/locale/ro_RO/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ru_RU/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ru_RU/help.xml
|
||||
%%IMPDIR%%/locale/sk_SK/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/sk_SK/help.xml
|
||||
%%IMPDIR%%/locale/sl_SI/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/sv_SE/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/sv_SE/help.xml
|
||||
%%IMPDIR%%/locale/th_TH/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/tr_TR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/uk_UA/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/uk_UA/help.xml
|
||||
%%IMPDIR%%/locale/zh_CN/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/zh_CN/help.xml
|
||||
%%IMPDIR%%/locale/zh_TW/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/zh_TW/help.xml
|
||||
%%IMPDIR%%/login.php
|
||||
%%IMPDIR%%/mailbox.php
|
||||
%%IMPDIR%%/message.php
|
||||
%%IMPDIR%%/pgp.php
|
||||
%%IMPDIR%%/po/.htaccess
|
||||
%%IMPDIR%%/po/README
|
||||
%%IMPDIR%%/po/ar_OM.po
|
||||
%%IMPDIR%%/po/ar_SY.po
|
||||
%%IMPDIR%%/po/bg_BG.po
|
||||
%%IMPDIR%%/po/ca_ES.po
|
||||
%%IMPDIR%%/po/cs_CZ.po
|
||||
%%IMPDIR%%/po/da_DK.po
|
||||
%%IMPDIR%%/po/de_DE.po
|
||||
%%IMPDIR%%/po/el_GR.po
|
||||
%%IMPDIR%%/po/es_ES.po
|
||||
%%IMPDIR%%/po/et_EE.po
|
||||
%%IMPDIR%%/po/fa_IR.po
|
||||
%%IMPDIR%%/po/fi_FI.po
|
||||
%%IMPDIR%%/po/fr_FR.po
|
||||
%%IMPDIR%%/po/gl_ES.po
|
||||
%%IMPDIR%%/po/hu_HU.po
|
||||
%%IMPDIR%%/po/id_ID.po
|
||||
%%IMPDIR%%/po/imp.pot
|
||||
%%IMPDIR%%/po/is_IS.po
|
||||
%%IMPDIR%%/po/it_IT.po
|
||||
%%IMPDIR%%/po/ja_JP.po
|
||||
%%IMPDIR%%/po/ko_KR.po
|
||||
%%IMPDIR%%/po/lt_LT.po
|
||||
%%IMPDIR%%/po/lv_LV.po
|
||||
%%IMPDIR%%/po/mk_MK.po
|
||||
%%IMPDIR%%/po/nb_NO.po
|
||||
%%IMPDIR%%/po/nl_NL.po
|
||||
%%IMPDIR%%/po/nn_NO.po
|
||||
%%IMPDIR%%/po/pl_PL.po
|
||||
%%IMPDIR%%/po/pt_BR.po
|
||||
%%IMPDIR%%/po/pt_PT.po
|
||||
%%IMPDIR%%/po/ro_RO.po
|
||||
%%IMPDIR%%/po/ru_RU.po
|
||||
%%IMPDIR%%/po/sk_SK.po
|
||||
%%IMPDIR%%/po/sl_SI.po
|
||||
%%IMPDIR%%/po/sv_SE.po
|
||||
%%IMPDIR%%/po/th_TH.po
|
||||
%%IMPDIR%%/po/tr_TR.po
|
||||
%%IMPDIR%%/po/uk_UA.po
|
||||
%%IMPDIR%%/po/zh_CN.po
|
||||
%%IMPDIR%%/po/zh_TW.po
|
||||
%%IMPDIR%%/recompose.php
|
||||
%%IMPDIR%%/redirect.php
|
||||
%%IMPDIR%%/scripts/.htaccess
|
||||
%%IMPDIR%%/scripts/Imp.reg
|
||||
%%IMPDIR%%/scripts/custom_login.php
|
||||
%%IMPDIR%%/scripts/singlescript.php
|
||||
%%IMPDIR%%/search.php
|
||||
%%IMPDIR%%/smime.php
|
||||
%%IMPDIR%%/spelling.php
|
||||
%%IMPDIR%%/templates/.htaccess
|
||||
%%IMPDIR%%/templates/acl/acl.inc
|
||||
%%IMPDIR%%/templates/common-header.inc
|
||||
%%IMPDIR%%/templates/compose/attachments.inc
|
||||
%%IMPDIR%%/templates/compose/attachments.js
|
||||
%%IMPDIR%%/templates/compose/compose.inc
|
||||
%%IMPDIR%%/templates/compose/compose.js
|
||||
%%IMPDIR%%/templates/compose/compose_expand.js
|
||||
%%IMPDIR%%/templates/compose/encrypt_list.inc
|
||||
%%IMPDIR%%/templates/compose/expand.inc
|
||||
%%IMPDIR%%/templates/compose/recompose.inc
|
||||
%%IMPDIR%%/templates/compose/redirect.inc
|
||||
%%IMPDIR%%/templates/compose/spelling.inc
|
||||
%%IMPDIR%%/templates/compose/spelling.js
|
||||
%%IMPDIR%%/templates/compose/success.inc
|
||||
%%IMPDIR%%/templates/contacts/contacts.inc
|
||||
%%IMPDIR%%/templates/fetchmail/account_select.inc
|
||||
%%IMPDIR%%/templates/fetchmail/driver_select.inc
|
||||
%%IMPDIR%%/templates/fetchmail/fetchmail.inc
|
||||
%%IMPDIR%%/templates/fetchmail/manage.inc
|
||||
%%IMPDIR%%/templates/fetchmail/top.inc
|
||||
%%IMPDIR%%/templates/filters/notactive.inc
|
||||
%%IMPDIR%%/templates/filters/prefs.inc
|
||||
%%IMPDIR%%/templates/folders/actions.inc
|
||||
%%IMPDIR%%/templates/folders/folders.html
|
||||
%%IMPDIR%%/templates/folders/foot.inc
|
||||
%%IMPDIR%%/templates/folders/head.inc
|
||||
%%IMPDIR%%/templates/folders/import.inc
|
||||
%%IMPDIR%%/templates/folders/javascript.inc
|
||||
%%IMPDIR%%/templates/javascript/open_compose_win.js
|
||||
%%IMPDIR%%/templates/javascript/open_print_win.js
|
||||
%%IMPDIR%%/templates/login/login.inc
|
||||
%%IMPDIR%%/templates/mailbox/actions.inc
|
||||
%%IMPDIR%%/templates/mailbox/actions_deleted.inc
|
||||
%%IMPDIR%%/templates/mailbox/alert.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/legend.inc
|
||||
%%IMPDIR%%/templates/mailbox/mailbox.html
|
||||
%%IMPDIR%%/templates/mailbox/message_footers.inc
|
||||
%%IMPDIR%%/templates/mailbox/message_headers.inc
|
||||
%%IMPDIR%%/templates/mailbox/navbar.inc
|
||||
%%IMPDIR%%/templates/mailbox/searchfolder.inc
|
||||
%%IMPDIR%%/templates/menu.inc
|
||||
%%IMPDIR%%/templates/message/headers.inc
|
||||
%%IMPDIR%%/templates/message/javascript.inc
|
||||
%%IMPDIR%%/templates/message/message.inc
|
||||
%%IMPDIR%%/templates/message/navbar_actions.inc
|
||||
%%IMPDIR%%/templates/message/navbar_navigate.inc
|
||||
%%IMPDIR%%/templates/message/navbar_top.inc
|
||||
%%IMPDIR%%/templates/message/print.inc
|
||||
%%IMPDIR%%/templates/pgp/import_key.inc
|
||||
%%IMPDIR%%/templates/pgp/notactive.inc
|
||||
%%IMPDIR%%/templates/pgp/open_pgp_import.js
|
||||
%%IMPDIR%%/templates/pgp/open_pgp_win.js
|
||||
%%IMPDIR%%/templates/pgp/passphrase.inc
|
||||
%%IMPDIR%%/templates/pgp/pgp.inc
|
||||
%%IMPDIR%%/templates/prefs/encryptselect.inc
|
||||
%%IMPDIR%%/templates/prefs/folderselect.inc
|
||||
%%IMPDIR%%/templates/prefs/initialpageselect.inc
|
||||
%%IMPDIR%%/templates/prefs/sentmailselect.inc
|
||||
%%IMPDIR%%/templates/prefs/sourceselect.inc
|
||||
%%IMPDIR%%/templates/prefs/spamselect.inc
|
||||
%%IMPDIR%%/templates/prefs/trashselect.inc
|
||||
%%IMPDIR%%/templates/quota/quota.inc
|
||||
%%IMPDIR%%/templates/search/fields.inc
|
||||
%%IMPDIR%%/templates/search/header.inc
|
||||
%%IMPDIR%%/templates/search/javascript.inc
|
||||
%%IMPDIR%%/templates/search/main.inc
|
||||
%%IMPDIR%%/templates/smime/import_key.inc
|
||||
%%IMPDIR%%/templates/smime/notactive.inc
|
||||
%%IMPDIR%%/templates/smime/open_smime_import.js
|
||||
%%IMPDIR%%/templates/smime/open_smime_win.js
|
||||
%%IMPDIR%%/templates/smime/passphrase.inc
|
||||
%%IMPDIR%%/templates/smime/smime.inc
|
||||
%%IMPDIR%%/templates/thread/bottom.inc
|
||||
%%IMPDIR%%/templates/thread/thread.html
|
||||
%%IMPDIR%%/templates/thread/top.inc
|
||||
%%IMPDIR%%/test.php
|
||||
%%IMPDIR%%/themes/azur/screen.css
|
||||
%%IMPDIR%%/themes/bluemoon/screen.css
|
||||
%%IMPDIR%%/themes/bluewhite/screen.css
|
||||
%%IMPDIR%%/themes/brown/screen.css
|
||||
%%IMPDIR%%/themes/burntorange/screen.css
|
||||
%%IMPDIR%%/themes/cherry/screen.css
|
||||
%%IMPDIR%%/themes/gennevilliers/screen.css
|
||||
%%IMPDIR%%/themes/green/screen.css
|
||||
%%IMPDIR%%/themes/grey/screen.css
|
||||
%%IMPDIR%%/themes/graphics/addressbook-blue.png
|
||||
%%IMPDIR%%/themes/graphics/addressbook-red.png
|
||||
%%IMPDIR%%/themes/graphics/apple.png
|
||||
%%IMPDIR%%/themes/graphics/attachment.png
|
||||
%%IMPDIR%%/themes/graphics/compose.png
|
||||
%%IMPDIR%%/themes/graphics/empty_trash.png
|
||||
%%IMPDIR%%/themes/graphics/expand.png
|
||||
%%IMPDIR%%/themes/graphics/favicon.ico
|
||||
%%IMPDIR%%/themes/graphics/fetchmail.png
|
||||
%%IMPDIR%%/themes/graphics/filters.png
|
||||
%%IMPDIR%%/themes/graphics/folders/drafts.png
|
||||
%%IMPDIR%%/themes/graphics/folders/folder.png
|
||||
%%IMPDIR%%/themes/graphics/folders/folder_open.png
|
||||
%%IMPDIR%%/themes/graphics/folders/inbox.png
|
||||
%%IMPDIR%%/themes/graphics/folders/sent.png
|
||||
%%IMPDIR%%/themes/graphics/folders/templates.png
|
||||
%%IMPDIR%%/themes/graphics/folders/trash.png
|
||||
%%IMPDIR%%/themes/graphics/forward.png
|
||||
%%IMPDIR%%/themes/graphics/imp.png
|
||||
%%IMPDIR%%/themes/graphics/mail_answered.png
|
||||
%%IMPDIR%%/themes/graphics/mail_deleted.png
|
||||
%%IMPDIR%%/themes/graphics/mail_draft.png
|
||||
%%IMPDIR%%/themes/graphics/mail_flagged.png
|
||||
%%IMPDIR%%/themes/graphics/mail_personal.png
|
||||
%%IMPDIR%%/themes/graphics/mail_priority_high.png
|
||||
%%IMPDIR%%/themes/graphics/mail_priority_low.png
|
||||
%%IMPDIR%%/themes/graphics/mail_unseen.png
|
||||
%%IMPDIR%%/themes/graphics/manage_attachments.png
|
||||
%%IMPDIR%%/themes/graphics/mime/compressed.png
|
||||
%%IMPDIR%%/themes/graphics/mime/encryption.png
|
||||
%%IMPDIR%%/themes/graphics/mime/html.png
|
||||
%%IMPDIR%%/themes/graphics/mime/image.png
|
||||
%%IMPDIR%%/themes/graphics/mime/itip.png
|
||||
%%IMPDIR%%/themes/graphics/mime/mail.png
|
||||
%%IMPDIR%%/themes/graphics/mime/text.png
|
||||
%%IMPDIR%%/themes/graphics/newmail.png
|
||||
%%IMPDIR%%/themes/graphics/reply.png
|
||||
%%IMPDIR%%/themes/graphics/shared.png
|
||||
%%IMPDIR%%/themes/graphics/signed.png
|
||||
%%IMPDIR%%/themes/graphics/spacer_red.png
|
||||
%%IMPDIR%%/themes/graphics/spellcheck.png
|
||||
%%IMPDIR%%/themes/screen.css
|
||||
%%IMPDIR%%/themes/lavander/screen.css
|
||||
%%IMPDIR%%/themes/postnuke/screen.css
|
||||
%%IMPDIR%%/themes/simplex/screen.css
|
||||
%%IMPDIR%%/themes/sun/screen.css
|
||||
%%IMPDIR%%/thread.php
|
||||
%%IMPDIR%%/view.php
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||
etc/horde/httpd.conf.imp
|
||||
@dirrm %%IMPDIR%%/themes/sun
|
||||
@dirrm %%IMPDIR%%/themes/simplex
|
||||
@dirrm %%IMPDIR%%/themes/postnuke
|
||||
@dirrm %%IMPDIR%%/themes/lavander
|
||||
@dirrm %%IMPDIR%%/themes/graphics/mime
|
||||
@dirrm %%IMPDIR%%/themes/graphics/folders
|
||||
@dirrm %%IMPDIR%%/themes/graphics
|
||||
@dirrm %%IMPDIR%%/themes/grey
|
||||
@dirrm %%IMPDIR%%/themes/green
|
||||
@dirrm %%IMPDIR%%/themes/gennevilliers
|
||||
@dirrm %%IMPDIR%%/themes/cherry
|
||||
@dirrm %%IMPDIR%%/themes/burntorange
|
||||
@dirrm %%IMPDIR%%/themes/brown
|
||||
@dirrm %%IMPDIR%%/themes/bluewhite
|
||||
@dirrm %%IMPDIR%%/themes/bluemoon
|
||||
@dirrm %%IMPDIR%%/themes/azur
|
||||
@dirrm %%IMPDIR%%/themes
|
||||
@dirrm %%IMPDIR%%/templates/thread
|
||||
@dirrm %%IMPDIR%%/templates/smime
|
||||
@dirrm %%IMPDIR%%/templates/search
|
||||
@dirrm %%IMPDIR%%/templates/quota
|
||||
@dirrm %%IMPDIR%%/templates/prefs
|
||||
@dirrm %%IMPDIR%%/templates/pgp
|
||||
@dirrm %%IMPDIR%%/templates/message
|
||||
@dirrm %%IMPDIR%%/templates/mailbox
|
||||
@dirrm %%IMPDIR%%/templates/login
|
||||
@dirrm %%IMPDIR%%/templates/javascript
|
||||
@dirrm %%IMPDIR%%/templates/folders
|
||||
@dirrm %%IMPDIR%%/templates/filters
|
||||
@dirrm %%IMPDIR%%/templates/fetchmail
|
||||
@dirrm %%IMPDIR%%/templates/contacts
|
||||
@dirrm %%IMPDIR%%/templates/compose
|
||||
@dirrm %%IMPDIR%%/templates/acl
|
||||
@dirrm %%IMPDIR%%/templates
|
||||
@dirrm %%IMPDIR%%/scripts
|
||||
@dirrm %%IMPDIR%%/po
|
||||
@dirrm %%IMPDIR%%/locale/zh_TW/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/zh_TW
|
||||
@dirrm %%IMPDIR%%/locale/zh_CN/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/zh_CN
|
||||
@dirrm %%IMPDIR%%/locale/uk_UA/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/uk_UA
|
||||
@dirrm %%IMPDIR%%/locale/tr_TR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/tr_TR
|
||||
@dirrm %%IMPDIR%%/locale/th_TH/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/th_TH
|
||||
@dirrm %%IMPDIR%%/locale/sv_SE/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/sv_SE
|
||||
@dirrm %%IMPDIR%%/locale/sl_SI/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/sl_SI
|
||||
@dirrm %%IMPDIR%%/locale/sk_SK/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/sk_SK
|
||||
@dirrm %%IMPDIR%%/locale/ru_RU/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ru_RU
|
||||
@dirrm %%IMPDIR%%/locale/ro_RO/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ro_RO
|
||||
@dirrm %%IMPDIR%%/locale/pt_PT/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/pt_PT
|
||||
@dirrm %%IMPDIR%%/locale/pt_BR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/pt_BR
|
||||
@dirrm %%IMPDIR%%/locale/pl_PL/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/pl_PL
|
||||
@dirrm %%IMPDIR%%/locale/nn_NO/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/nn_NO
|
||||
@dirrm %%IMPDIR%%/locale/nl_NL/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/nl_NL
|
||||
@dirrm %%IMPDIR%%/locale/nb_NO/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/nb_NO
|
||||
@dirrm %%IMPDIR%%/locale/mk_MK/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/mk_MK
|
||||
@dirrm %%IMPDIR%%/locale/lv_LV/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/lv_LV
|
||||
@dirrm %%IMPDIR%%/locale/lt_LT/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/lt_LT
|
||||
@dirrm %%IMPDIR%%/locale/ko_KR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ko_KR
|
||||
@dirrm %%IMPDIR%%/locale/ja_JP/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ja_JP
|
||||
@dirrm %%IMPDIR%%/locale/it_IT/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/it_IT
|
||||
@dirrm %%IMPDIR%%/locale/is_IS/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/is_IS
|
||||
@dirrm %%IMPDIR%%/locale/id_ID/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/id_ID
|
||||
@dirrm %%IMPDIR%%/locale/hu_HU/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/hu_HU
|
||||
@dirrm %%IMPDIR%%/locale/gl_ES/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/gl_ES
|
||||
@dirrm %%IMPDIR%%/locale/fr_FR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/fr_FR
|
||||
@dirrm %%IMPDIR%%/locale/fi_FI/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/fi_FI
|
||||
@dirrm %%IMPDIR%%/locale/fa_IR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/fa_IR
|
||||
@dirrm %%IMPDIR%%/locale/et_EE/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/et_EE
|
||||
@dirrm %%IMPDIR%%/locale/es_ES/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/es_ES
|
||||
@dirrm %%IMPDIR%%/locale/en_US
|
||||
@dirrm %%IMPDIR%%/locale/el_GR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/el_GR
|
||||
@dirrm %%IMPDIR%%/locale/de_DE/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/de_DE
|
||||
@dirrm %%IMPDIR%%/locale/da_DK/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/da_DK
|
||||
@dirrm %%IMPDIR%%/locale/cs_CZ/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/cs_CZ
|
||||
@dirrm %%IMPDIR%%/locale/ca_ES/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ca_ES
|
||||
@dirrm %%IMPDIR%%/locale/bg_BG/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/bg_BG
|
||||
@dirrm %%IMPDIR%%/locale/ar_SY/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ar_SY
|
||||
@dirrm %%IMPDIR%%/locale/ar_OM/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ar_OM
|
||||
@dirrm %%IMPDIR%%/locale
|
||||
@dirrm %%IMPDIR%%/lib/Quota
|
||||
@dirrm %%IMPDIR%%/lib/Notification/Listener
|
||||
@dirrm %%IMPDIR%%/lib/Notification
|
||||
@dirrm %%IMPDIR%%/lib/Maintenance/Task
|
||||
@dirrm %%IMPDIR%%/lib/Maintenance
|
||||
@dirrm %%IMPDIR%%/lib/MIME/Viewer
|
||||
@dirrm %%IMPDIR%%/lib/MIME
|
||||
@dirrm %%IMPDIR%%/lib/Identity
|
||||
@dirrm %%IMPDIR%%/lib/IMAP
|
||||
@dirrm %%IMPDIR%%/lib/Fetchmail
|
||||
@dirrm %%IMPDIR%%/lib/Crypt
|
||||
@dirrm %%IMPDIR%%/lib/Block
|
||||
@dirrm %%IMPDIR%%/lib/Auth
|
||||
@dirrm %%IMPDIR%%/lib
|
||||
@unexec rmdir %D/%%IMPDIR%%/config 2>/dev/null || true
|
||||
@unexec rmdir %D/%%IMPDIR%% 2>/dev/null || true
|
Loading…
Reference in a new issue