add imp-devel
A webmail system which accesses mail over IMAP PR: 32516 Submitted by: Thierry Thomas <thierry@thomas.as>
This commit is contained in:
parent
42d7a469cd
commit
a86a05bdbc
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=51416
19 changed files with 1419 additions and 0 deletions
|
@ -65,6 +65,7 @@
|
|||
SUBDIR += im
|
||||
SUBDIR += imap-uw
|
||||
SUBDIR += imp
|
||||
SUBDIR += imp-devel
|
||||
SUBDIR += isync
|
||||
SUBDIR += junkfilter
|
||||
SUBDIR += kbiff
|
||||
|
|
293
mail/imp-devel/Makefile
Normal file
293
mail/imp-devel/Makefile
Normal file
|
@ -0,0 +1,293 @@
|
|||
# Ports collection makefile for: imp-devel
|
||||
# Date created: Mon Oct 08, 2001
|
||||
# Whom: Thierry Thomas (<thierry@thomas.as>)
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= imp
|
||||
PORTVERSION= 3.0
|
||||
CATEGORIES= mail www
|
||||
MASTER_SITES= ftp://ftp.horde.org/pub/imp/tarballs/
|
||||
PKGNAMESUFFIX= -devel
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}-RC3
|
||||
|
||||
MAINTAINER= thierry@thomas.as
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
||||
|
||||
#-----------------------------------------------------------------------
|
||||
# You may define these options:
|
||||
#
|
||||
# - WITHOUT_LDAP : if you do not need OpenLDAP;
|
||||
# - WITH_LDAP1 : if you prefer OpenLDAP1.
|
||||
#
|
||||
# - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree;
|
||||
#
|
||||
# - WITHOUT_WV : if your users never receive MS-Word docs;
|
||||
#
|
||||
# - WITHOUT_XL : if your users never receive MS-Excel sheets
|
||||
# (or .ppt presentations);
|
||||
#
|
||||
# - WITHOUT_ZIP : if not interested by zipinfo;
|
||||
#
|
||||
# - WITHOUT_ASPELL : for spelling bees...
|
||||
#
|
||||
# - NOCRYPT : if crypto is restricted in your country;
|
||||
#
|
||||
# - WITHOUT_SSL : if you have not installed c-client WITH_SSL;
|
||||
#
|
||||
# - WITHOUT_TURBA : if you do not want adressbooks;
|
||||
#
|
||||
# - WITHOUT_IMAPSERVER : if your IMAP server runs on another machine;
|
||||
#
|
||||
# or you can select to work with one of these servers:
|
||||
#
|
||||
# - WITH_CYRUS-IMAPD : IMP will work with cyrus-imapd;
|
||||
#
|
||||
# - WITH_CYRUS : IMP will work with cyrus;
|
||||
#
|
||||
# - WITH_IMAP-UW : IMP will work with imap-uw;
|
||||
#
|
||||
# - WITH_COURIER-IMAP : IMP will work with courier-imap.
|
||||
#
|
||||
# These choice are mutually exclusive, and imap-uw is the default.
|
||||
#
|
||||
#-----------------------------------------------------------------------
|
||||
|
||||
LIB_DEPENDS= c-client4.8:${PORTSDIR}/mail/cclient
|
||||
|
||||
.if defined(WITHOUT_TURBA)
|
||||
.if !defined(WITHOUT_LDAP)
|
||||
.if defined(WITH_LDAP1)
|
||||
LIB_DEPENDS+= ldap.1:${PORTSDIR}/net/openldap \
|
||||
lber.1:${PORTSDIR}/net/openldap
|
||||
.else
|
||||
LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap2 \
|
||||
lber.2:${PORTSDIR}/net/openldap2
|
||||
.endif
|
||||
.endif
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/index.php:${PORTSDIR}/www/horde${PKGNAMESUFFIX}
|
||||
.else
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/turba/index.php:${PORTSDIR}/mail/turba
|
||||
.endif
|
||||
|
||||
# Support of GnuPG is not implemented in this release
|
||||
#.if !defined(NOCRYPT)
|
||||
#RUN_DEPENDS+= ${LOCALBASE}/bin/gpg:${PORTSDIR}/security/gnupg
|
||||
#.endif
|
||||
|
||||
# I have no report about the support of dkimap4 by IMP,
|
||||
# but I shall be happy to add it if somebody report success with it.
|
||||
# If an IMAP server is already installed, we just record the dependence,
|
||||
# else we shall install 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)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/libexec/imapd:${PORTSDIR}/mail/imap-uw
|
||||
.elif defined(WITH_CYRUS-IMAPD)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/lib/libacap.a:${PORTSDIR}/mail/cyrus-imapd
|
||||
.elif defined(WITH_CYRUS)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/cyrus/:${PORTSDIR}/mail/cyrus
|
||||
.elif defined(WITH_COURIER-IMAP)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/libexec/courier-imap/:${PORTSDIR}/mail/courier-imap
|
||||
.else
|
||||
RUN_DEPENDS+= ${LOCALBASE}/libexec/imapd:${PORTSDIR}/mail/imap-uw
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_X11)
|
||||
.if !defined(WITHOUT_WV)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/wvHtml:${PORTSDIR}/textproc/wv
|
||||
.endif
|
||||
.if !defined(WITHOUT_XL)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/xlHtml:${PORTSDIR}/textproc/xlhtml
|
||||
.endif
|
||||
.if !defined(WITHOUT_ZIP)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/zipinfo:${PORTSDIR}/archivers/unzip
|
||||
.endif
|
||||
.if !defined(WITHOUT_ASPELL)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/aspell:${PORTSDIR}/textproc/aspell
|
||||
.endif
|
||||
.endif
|
||||
|
||||
NO_BUILD= yes
|
||||
DOCS= COPYING README docs/CHANGES docs/CREDITS \
|
||||
docs/INSTALL docs/SECURITY docs/FEATURES \
|
||||
docs/PACKAGES
|
||||
CONFFILE= conf.php filter.txt header.txt html.php menu.php \
|
||||
mime_drivers.php motd.php prefs.php servers.php \
|
||||
trailer.txt
|
||||
|
||||
LHORDEDIR?= www/horde
|
||||
LIMPDIR?= ${LHORDEDIR}/imp
|
||||
HORDESBIN?= ${PREFIX}/sbin
|
||||
|
||||
PLIST_SUB= HORDEDIR=${LHORDEDIR} IMPDIR=${LIMPDIR}
|
||||
|
||||
HORDEDIR= ${PREFIX}/${LHORDEDIR}
|
||||
IMPDIR= ${PREFIX}/${LIMPDIR}
|
||||
TURBADIR?= ${HORDEDIR}/turba
|
||||
CONFDIR= ${IMPDIR}/config
|
||||
|
||||
HORDE_INC= ${LOCALBASE}/etc/horde
|
||||
|
||||
HOSTNAME?= `/bin/hostname`
|
||||
SERVOS?= ${OPSYS}-${OSREL}
|
||||
|
||||
PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h
|
||||
|
||||
# Where you want to store the public keyrings needed for gpg
|
||||
# (in a subdirectory in that directory called .gnupg)
|
||||
GNUPG_CNFDIR?= ${LOCALBASE}/etc
|
||||
|
||||
pre-everything::
|
||||
.if !defined(WITHOUT_IMAPSERVER)
|
||||
@${ECHO_MSG} ""
|
||||
@${ECHO_MSG} "Press CTRL-C and define WITHOUT_IMAPSERVER"
|
||||
@${ECHO_MSG} "if you intend to run an IMAP server on an other machine."
|
||||
@${ECHO_MSG} ""
|
||||
.endif
|
||||
|
||||
pre-install:
|
||||
# N.B.: database dependencies are binded with mod_php#, neither by Horde nor IMP.
|
||||
@if [ -f ${IMPDIR}/index.php3 ]; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please deinstall the port mail/imp." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "c-client4.8"; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure PHP with IMAP or IMAP-SSL support." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi
|
||||
.if !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
|
||||
.if !defined(WITHOUT_LDAP)
|
||||
.if defined(WITH_LDAP1)
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "ldap.1"; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure PHP with OpenLDAP support." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi
|
||||
.else
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "ldap.2"; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure PHP with OpenLDAP2 support." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi
|
||||
.endif
|
||||
.endif
|
||||
.if !defined(NOCRYPT)
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "mcrypt.6"; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure PHP with mcrypt support." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi
|
||||
.endif
|
||||
.if !defined(WITHOUT_ASPELL)
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "pspell.4"; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure PHP with pspell support." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi
|
||||
.endif
|
||||
.if !defined(WITHOUT_SUPPORTED_DB)
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "mysqlclient.10" ; then \
|
||||
if ! ${LDCONFIG} -r | ${GREP} -q -e "pq.2" ; then \
|
||||
if ! ${LDCONFIG} -r | ${GREP} -q -e "sybdb.0" ; then \
|
||||
if ! ${LDCONFIG} -r | ${GREP} -q -e "ct.0" ; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure PHP with a database support." ; \
|
||||
${ECHO_MSG} "MySQL, PostgreSQL and Sybase (CTLIB or DBLIB)" ; \
|
||||
${ECHO_MSG} "can be used with PHP AND IMP." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "(If everything will run on this machine, do not" ; \
|
||||
${ECHO_MSG} " forget to install the database server-side!)" ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi ; \
|
||||
fi ; \
|
||||
fi ; \
|
||||
fi
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
@${MKDIR} ${IMPDIR}
|
||||
@${CP} -Rp ${WRKSRC}/config ${WRKSRC}/graphics ${WRKSRC}/lib ${IMPDIR}
|
||||
@${CP} -Rp ${WRKSRC}/locale ${WRKSRC}/scripts ${WRKSRC}/templates ${IMPDIR}
|
||||
@${CP} -Rp ${WRKSRC}/po ${IMPDIR}
|
||||
@${CP} -p ${WRKSRC}/*.php ${IMPDIR}
|
||||
.for FILE in ${CONFFILE}
|
||||
@if [ ! -f ${CONFDIR}/${FILE} ]; then \
|
||||
${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \
|
||||
fi
|
||||
.endfor
|
||||
@${PERL} -pi -e "s:example.com:${HOSTNAME}:g" ${CONFDIR}/servers.php
|
||||
@${PERL} -pi -e "s:%%LOCALBASE%%:${LOCALBASE}:g" ${CONFDIR}/mime_drivers.php
|
||||
@${PERL} -pi -e "s:IMP_VERSION:IMP_VERSION . ' / ${SERVOS}':" ${IMPDIR}/compose.php
|
||||
.if !defined(WITHOUT_ASPELL)
|
||||
@${PERL} -pi -e "s:\/\* BEGBSDASPELL::;s:ENDBSDASPELL \*\/::" \
|
||||
${CONFDIR}/mime_drivers.php
|
||||
@${PERL} -pi -e "s:spellchecker'] = '':spellchecker'] = 'true':" \
|
||||
${CONFDIR}/conf.php
|
||||
.endif
|
||||
.if !defined(WITHOUT_X11)
|
||||
.if !defined(WITHOUT_WV)
|
||||
@${PERL} -pi -e "s:\/\* BEGBSDWV::;s:ENDBSDWV \*\/::" ${CONFDIR}/mime_drivers.php
|
||||
.endif
|
||||
.if !defined(WITHOUT_XL)
|
||||
@${PERL} -pi -e "s:\/\* BEGBSDXL::;s:ENDBSDXL \*\/::g" ${CONFDIR}/mime_drivers.php
|
||||
.endif
|
||||
.endif
|
||||
#.if !defined(NOCRYPT)
|
||||
# @(if [ ! -d ${GNUPG_CNFDIR} ] ; then \
|
||||
# ${MKDIR} ${GNUPG_CNFDIR} ; \
|
||||
# fi)
|
||||
# @${PERL} -pi -e "s:pgp']['enabled'] = false:pgp']['enabled'] = true:g" \
|
||||
# ${CONFDIR}/conf.php
|
||||
# @${PERL} -pi -e "s:%%GNUPG_CNFDIR%%:${GNUPG_CNFDIR}:" \
|
||||
# ${CONFDIR}/conf.php
|
||||
#.endif
|
||||
.if !defined(WITHOUT_ZIP)
|
||||
@${PERL} -pi -e "s:\/\* BEGBSDZIP::;s:ENDBSDZIP \*\/::" ${CONFDIR}/mime_drivers.php
|
||||
.endif
|
||||
@${CHOWN} -R www:www ${IMPDIR}
|
||||
@${CHMOD} -R o-rwx ${CONFDIR}
|
||||
@${CP} -p ${FILESDIR}/httpd.conf.imp ${HORDE_INC}/httpd.conf.imp
|
||||
@${PERL} -pi -e "s:/home/httpd/html/horde/imp:${IMPDIR}:g" ${HORDE_INC}/httpd.conf.imp
|
||||
# Let's Horde use IMP for auth
|
||||
@${PERL} -pi -e "s://UNCOMMENTWHENINSTIMP::" ${HORDEDIR}/config/registry.php
|
||||
# Provide a link to IMP from Turba
|
||||
.if !defined(WITHOUT_TURBA)
|
||||
@${PERL} -pi -e "s://UNCOMMENTWHENINSTIMP::" ${TURBADIR}/config/conf.php
|
||||
.endif
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${PERL} -pi -e "s:/home/httpd/html/horde/imp:${IMPDIR}:g" ${WRKSRC}/docs/SECURITY
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
.for FILE in ${DOCS}
|
||||
@${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
|
||||
.endfor
|
||||
@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
@${ECHO_MSG}
|
||||
@${CAT} ${PKGMESSAGE} | \
|
||||
${SED} -e "s:%%IMPDIR%%:${IMPDIR}:g;s:%%PORTSDIR%%:${PORTSDIR}:g;s:%%CONFDIR%%:${CONFDIR}:g;s:%%DOCSDIR%%:${DOCSDIR}:g"
|
||||
@${ECHO_MSG}
|
||||
|
||||
.include <bsd.port.mk>
|
1
mail/imp-devel/distinfo
Normal file
1
mail/imp-devel/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (imp-3.0-RC3.tar.gz) = f02ecd032f3a3c17f96ab575bf5b6f61
|
31
mail/imp-devel/files/httpd.conf.imp
Normal file
31
mail/imp-devel/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 ================
|
||||
|
50
mail/imp-devel/files/patch-aa
Normal file
50
mail/imp-devel/files/patch-aa
Normal file
|
@ -0,0 +1,50 @@
|
|||
--- config/mime_drivers.php.dist.orig Sat Jul 14 15:30:14 2001
|
||||
+++ config/mime_drivers.php.dist Thu Nov 15 00:08:34 2001
|
||||
@@ -59,4 +59,47 @@
|
||||
$mime_drivers['imp']['html']['handles'] = array(
|
||||
'text/html', 'text/richtext' );
|
||||
|
||||
+/**
|
||||
+ * Misc utilities
|
||||
+ */
|
||||
+
|
||||
+/* Spell checker */
|
||||
+/* BEGBSDASPELL$conf['utils']['spellchecker'] = '%%LOCALBASE%%/bin/aspell';ENDBSDASPELL */
|
||||
+
|
||||
+/* MS-Word viewer */
|
||||
+/* BEGBSDWV$conf['utils']['wordviewer'] = '%%LOCALBASE%%/bin/wvHtml';ENDBSDWV */
|
||||
+
|
||||
+/* MS-Excel viewer */
|
||||
+/* BEGBSDXL$conf['utils']['excelviewer'] = '%%LOCALBASE%%/bin/xlHtml';ENDBSDXL */
|
||||
+
|
||||
+/* MS-Powerpoint viewer */
|
||||
+/* BEGBSDXL$conf['utils']['powerpointviewer'] = '%%LOCALBASE%%/bin/pptHtml';ENDBSDXL */
|
||||
+
|
||||
+/* tar archive files
|
||||
+ Remark: you might prefer GNU tar, from the port archivers/gtar */
|
||||
+$conf['utils']['tar'] = '/usr/bin/tar';
|
||||
+
|
||||
+/* Zip file viewer */
|
||||
+/* BEGBSDZIP$conf['utils']['unzip'] = '%%LOCALBASE%%/bin/zipinfo';ENDBSDZIP */
|
||||
+
|
||||
+/**
|
||||
+ ** PGP/GnuPG Configuration
|
||||
+ **/
|
||||
+
|
||||
+// Should we attempt to verify pgp/gpg signatures?
|
||||
+//$conf['pgp']['enabled'] = false;
|
||||
+
|
||||
+// If we are using gpg support, where is the gpg binary?
|
||||
+//$conf['utils']['gpg'] = '%%LOCALBASE%%/bin/gpg';
|
||||
+
|
||||
+// What kind of binary are we using? Valid values are 'gpg', 'pgp2',
|
||||
+// and 'pgp5'.
|
||||
+//$conf['pgp']['type'] = 'gpg';
|
||||
+
|
||||
+// Where should we look for keyrings?
|
||||
+//$conf['pgp']['conf_dir'] = '%%GNUPG_CNFDIR%%';
|
||||
+
|
||||
+// What keyserver should we use?
|
||||
+//$conf['pgp']['keyserver'] = 'wwwkeys.pgp.net';
|
||||
+
|
||||
?>
|
33
mail/imp-devel/files/patch-ab
Normal file
33
mail/imp-devel/files/patch-ab
Normal file
|
@ -0,0 +1,33 @@
|
|||
--- config/servers.php.dist.orig Fri Jun 22 20:08:14 2001
|
||||
+++ config/servers.php.dist Fri Nov 16 23:46:19 2001
|
||||
@@ -31,7 +31,7 @@
|
||||
* is on.
|
||||
*
|
||||
* folders: The folder path for the IMAP server. i.e. UW IMAP
|
||||
- * generally looks to "mail/" while Cyrus and Courier put folders
|
||||
+ * generally looks to "Mail/" while Cyrus and Courier put folders
|
||||
* under "INBOX." (not the trailing dot. IMPORTANT: Use this only if
|
||||
* you want to restrict users to this subfolder. If you set this to
|
||||
* 'INBOX.' with Cyrus or Courier-IMAPd, then users will not be able
|
||||
@@ -84,14 +84,17 @@
|
||||
|
||||
$servers['imap'] = array(
|
||||
'name' => 'IMAP Server',
|
||||
- 'server' => 'imap.example.com',
|
||||
+// 'server' => 'imap.example.com',
|
||||
+ 'server' => 'localhost',
|
||||
'protocol' => 'imap',
|
||||
'port' => 143,
|
||||
- 'folders' => 'mail/',
|
||||
+ 'folders' => 'Mail/',
|
||||
'namespace' => '',
|
||||
'maildomain' => 'example.com',
|
||||
- 'smtphost' => 'smtp.example.com',
|
||||
- 'realm' => 'example.com',
|
||||
+// 'smtphost' => 'smtp.example.com',
|
||||
+ 'smtphost' => 'localhost',
|
||||
+// 'realm' => 'example.com',
|
||||
+ 'realm' => '',
|
||||
'preferred' => ''
|
||||
);
|
||||
|
1
mail/imp-devel/pkg-comment
Normal file
1
mail/imp-devel/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A webmail system which accesses mail over IMAP
|
13
mail/imp-devel/pkg-descr
Normal file
13
mail/imp-devel/pkg-descr
Normal file
|
@ -0,0 +1,13 @@
|
|||
IMP 3 is currently in heavy development. Features that have been added
|
||||
include searching; a new, flexible preferences system; a hierarchical
|
||||
folder tree; and more.
|
||||
|
||||
It requires PHP4. You should use it if you want to take advantage of
|
||||
PHP4s built-in session handling and improved speed; if you want access
|
||||
to features such as the interactive spell checker and folder searching;
|
||||
or if you want to contribute a major piece to the code.
|
||||
|
||||
This code branch continues the trend of 2.2 by being slimmer, cleaner,
|
||||
and better designed code than the previous version.
|
||||
|
||||
WWW: http://www.horde.org/imp/
|
22
mail/imp-devel/pkg-message
Normal file
22
mail/imp-devel/pkg-message
Normal file
|
@ -0,0 +1,22 @@
|
|||
************************************************************************
|
||||
IMP has been installed in %%IMPDIR%% with your blank
|
||||
configuration files.
|
||||
|
||||
Horde must be configured and the tables created; if not, see
|
||||
%%PORTSDIR%%/www/horde-devel/pkg-message.
|
||||
|
||||
Then, you will have to tune the configuration files located in
|
||||
%%CONFDIR%%/, specially the files conf.php and
|
||||
servers.php.
|
||||
|
||||
To protect your configuration files, you have to restart Apache.
|
||||
|
||||
IMP requires an IMAP server. If you want to install one on this
|
||||
machine, you may install the ports mail/cyrus-imapd, or
|
||||
mail/imap-uw, or mail/courier-imap.
|
||||
|
||||
Please refer to the file %%DOCSDIR%%/SECURITY
|
||||
on how to secure the IMP installation.
|
||||
It is at least recommended that you change the default database
|
||||
password used by horde and imp.
|
||||
************************************************************************
|
265
mail/imp-devel/pkg-plist
Normal file
265
mail/imp-devel/pkg-plist
Normal file
|
@ -0,0 +1,265 @@
|
|||
%%PORTDOCS%%share/doc/imp/CHANGES
|
||||
%%PORTDOCS%%share/doc/imp/COPYING
|
||||
%%PORTDOCS%%share/doc/imp/CREDITS
|
||||
%%PORTDOCS%%share/doc/imp/FEATURES
|
||||
%%PORTDOCS%%share/doc/imp/INSTALL
|
||||
%%PORTDOCS%%share/doc/imp/PACKAGES
|
||||
%%PORTDOCS%%share/doc/imp/README
|
||||
%%PORTDOCS%%share/doc/imp/SECURITY
|
||||
%%IMPDIR%%/compose.php
|
||||
%%IMPDIR%%/config/conf.php
|
||||
%%IMPDIR%%/config/conf.php.dist
|
||||
%%IMPDIR%%/config/filter.txt
|
||||
%%IMPDIR%%/config/filter.txt.dist
|
||||
%%IMPDIR%%/config/header.txt
|
||||
%%IMPDIR%%/config/header.txt.dist
|
||||
%%IMPDIR%%/config/html.php
|
||||
%%IMPDIR%%/config/html.php.dist
|
||||
%%IMPDIR%%/config/imp.dt
|
||||
%%IMPDIR%%/config/menu.php
|
||||
%%IMPDIR%%/config/menu.php.dist
|
||||
%%IMPDIR%%/config/mime_drivers.php
|
||||
%%IMPDIR%%/config/mime_drivers.php.dist
|
||||
%%IMPDIR%%/config/mime_drivers.php.dist.orig
|
||||
%%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/servers.php.dist.orig
|
||||
%%IMPDIR%%/config/trailer.txt
|
||||
%%IMPDIR%%/config/trailer.txt.dist
|
||||
%%IMPDIR%%/filters.php
|
||||
%%IMPDIR%%/folders.php
|
||||
%%IMPDIR%%/graphics/addressbook-blue.gif
|
||||
%%IMPDIR%%/graphics/addressbook-red.gif
|
||||
%%IMPDIR%%/graphics/addressbook-yellow.gif
|
||||
%%IMPDIR%%/graphics/alternative.gif
|
||||
%%IMPDIR%%/graphics/answered.gif
|
||||
%%IMPDIR%%/graphics/attachment.gif
|
||||
%%IMPDIR%%/graphics/checkbox.gif
|
||||
%%IMPDIR%%/graphics/compose.gif
|
||||
%%IMPDIR%%/graphics/deleted.gif
|
||||
%%IMPDIR%%/graphics/down.gif
|
||||
%%IMPDIR%%/graphics/download.gif
|
||||
%%IMPDIR%%/graphics/draft.gif
|
||||
%%IMPDIR%%/graphics/expand.gif
|
||||
%%IMPDIR%%/graphics/fetchmail.gif
|
||||
%%IMPDIR%%/graphics/filters.gif
|
||||
%%IMPDIR%%/graphics/first-grey.gif
|
||||
%%IMPDIR%%/graphics/first.gif
|
||||
%%IMPDIR%%/graphics/folders.gif
|
||||
%%IMPDIR%%/graphics/folders/collapsed.gif
|
||||
%%IMPDIR%%/graphics/folders/empty.gif
|
||||
%%IMPDIR%%/graphics/folders/expanded.gif
|
||||
%%IMPDIR%%/graphics/folders/folder.gif
|
||||
%%IMPDIR%%/graphics/folders/folder_open.gif
|
||||
%%IMPDIR%%/graphics/folders/inbox.gif
|
||||
%%IMPDIR%%/graphics/folders/mbox.gif
|
||||
%%IMPDIR%%/graphics/folders/mbox_marked.gif
|
||||
%%IMPDIR%%/graphics/folders/mbox_noselect.gif
|
||||
%%IMPDIR%%/graphics/folders/mbox_unmarked.gif
|
||||
%%IMPDIR%%/graphics/folders/spacer.gif
|
||||
%%IMPDIR%%/graphics/imp.gif
|
||||
%%IMPDIR%%/graphics/important.gif
|
||||
%%IMPDIR%%/graphics/last-grey.gif
|
||||
%%IMPDIR%%/graphics/last.gif
|
||||
%%IMPDIR%%/graphics/lhand.gif
|
||||
%%IMPDIR%%/graphics/lock.gif
|
||||
%%IMPDIR%%/graphics/manage_attachments.gif
|
||||
%%IMPDIR%%/graphics/mime/html.gif
|
||||
%%IMPDIR%%/graphics/mime/text.gif
|
||||
%%IMPDIR%%/graphics/next-grey.gif
|
||||
%%IMPDIR%%/graphics/next.gif
|
||||
%%IMPDIR%%/graphics/personal.gif
|
||||
%%IMPDIR%%/graphics/prev-grey.gif
|
||||
%%IMPDIR%%/graphics/prev.gif
|
||||
%%IMPDIR%%/graphics/print.gif
|
||||
%%IMPDIR%%/graphics/reload.gif
|
||||
%%IMPDIR%%/graphics/rhand.gif
|
||||
%%IMPDIR%%/graphics/search.gif
|
||||
%%IMPDIR%%/graphics/signed.gif
|
||||
%%IMPDIR%%/graphics/spellcheck.gif
|
||||
%%IMPDIR%%/graphics/unseen.gif
|
||||
%%IMPDIR%%/graphics/up.gif
|
||||
%%IMPDIR%%/identities.php
|
||||
%%IMPDIR%%/index.php
|
||||
%%IMPDIR%%/intro.php
|
||||
%%IMPDIR%%/lib/Folder.php
|
||||
%%IMPDIR%%/lib/IMP.php
|
||||
%%IMPDIR%%/lib/Identity/IMP.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/delete_sentmail_monthly.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/purge_trash.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/rename_sentmail_monthly.php
|
||||
%%IMPDIR%%/lib/Maintenance/imp.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/html.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/text.php
|
||||
%%IMPDIR%%/lib/Message.php
|
||||
%%IMPDIR%%/lib/Tree.php
|
||||
%%IMPDIR%%/lib/api.php
|
||||
%%IMPDIR%%/lib/base.php
|
||||
%%IMPDIR%%/lib/version.php
|
||||
%%IMPDIR%%/locale/cs_CZ/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/de_DE/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/de_DE/help.xml
|
||||
%%IMPDIR%%/locale/el_GR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/en_EN/help.xml
|
||||
%%IMPDIR%%/locale/es_ES/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/fr_FR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/fr_FR/help.xml
|
||||
%%IMPDIR%%/locale/it_IT/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/it_IT/help.xml
|
||||
%%IMPDIR%%/locale/ko_KR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/nl_NL/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/nl_NL/help.xml
|
||||
%%IMPDIR%%/locale/no_BOK/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pl_PL/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pt_BR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ru_win/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/uk/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/zh_CN/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/zh_TW/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/login.php
|
||||
%%IMPDIR%%/mailbox.php
|
||||
%%IMPDIR%%/menu.php
|
||||
%%IMPDIR%%/message.php
|
||||
%%IMPDIR%%/po/Makefile
|
||||
%%IMPDIR%%/po/README
|
||||
%%IMPDIR%%/po/cs_CZ.po
|
||||
%%IMPDIR%%/po/de_DE.po
|
||||
%%IMPDIR%%/po/el_GR.po
|
||||
%%IMPDIR%%/po/es_ES.po
|
||||
%%IMPDIR%%/po/extract.pl
|
||||
%%IMPDIR%%/po/fr_FR.po
|
||||
%%IMPDIR%%/po/it_IT.po
|
||||
%%IMPDIR%%/po/ko_KR.po
|
||||
%%IMPDIR%%/po/nl_NL.po
|
||||
%%IMPDIR%%/po/no_BOK.po
|
||||
%%IMPDIR%%/po/pl_PL.po
|
||||
%%IMPDIR%%/po/pt_BR.po
|
||||
%%IMPDIR%%/po/ru_win.po
|
||||
%%IMPDIR%%/po/shtool
|
||||
%%IMPDIR%%/po/uk.po
|
||||
%%IMPDIR%%/po/xgettext.sh
|
||||
%%IMPDIR%%/po/zh_CN.po
|
||||
%%IMPDIR%%/po/zh_TW.po
|
||||
%%IMPDIR%%/prefs.php
|
||||
%%IMPDIR%%/redirect.php
|
||||
%%IMPDIR%%/scripts/Imp.reg
|
||||
%%IMPDIR%%/scripts/imp-cleanup.cron
|
||||
%%IMPDIR%%/search.php
|
||||
%%IMPDIR%%/spelling.php
|
||||
%%IMPDIR%%/status.php
|
||||
%%IMPDIR%%/templates/common-footer.inc
|
||||
%%IMPDIR%%/templates/common-header.inc
|
||||
%%IMPDIR%%/templates/compose/bounce.inc
|
||||
%%IMPDIR%%/templates/compose/compose.inc
|
||||
%%IMPDIR%%/templates/compose/javascript.inc
|
||||
%%IMPDIR%%/templates/compose/spelling.inc
|
||||
%%IMPDIR%%/templates/filters/javascript.inc
|
||||
%%IMPDIR%%/templates/filters/list.inc
|
||||
%%IMPDIR%%/templates/filters/manage.inc
|
||||
%%IMPDIR%%/templates/folders/actions.inc
|
||||
%%IMPDIR%%/templates/folders/alert.inc
|
||||
%%IMPDIR%%/templates/folders/confirm.inc
|
||||
%%IMPDIR%%/templates/folders/foot.inc
|
||||
%%IMPDIR%%/templates/folders/head.inc
|
||||
%%IMPDIR%%/templates/folders/javascript.inc
|
||||
%%IMPDIR%%/templates/folders/row.inc
|
||||
%%IMPDIR%%/templates/identities/javascript.inc
|
||||
%%IMPDIR%%/templates/identities/manage.inc
|
||||
%%IMPDIR%%/templates/index/css.inc
|
||||
%%IMPDIR%%/templates/index/notconfigured.inc
|
||||
%%IMPDIR%%/templates/intro/main.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/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/message_footers.inc
|
||||
%%IMPDIR%%/templates/mailbox/message_headers.inc
|
||||
%%IMPDIR%%/templates/mailbox/message_summaries.inc
|
||||
%%IMPDIR%%/templates/mailbox/navbar.inc
|
||||
%%IMPDIR%%/templates/mailbox/searchfolder.inc
|
||||
%%IMPDIR%%/templates/menu/menu.inc
|
||||
%%IMPDIR%%/templates/message/headers.inc
|
||||
%%IMPDIR%%/templates/message/javascript.inc
|
||||
%%IMPDIR%%/templates/message/message.inc
|
||||
%%IMPDIR%%/templates/message/navbar.inc
|
||||
%%IMPDIR%%/templates/message/navbar_aux_bottom.inc
|
||||
%%IMPDIR%%/templates/message/navbar_aux_top.inc
|
||||
%%IMPDIR%%/templates/prefs/filters.inc
|
||||
%%IMPDIR%%/templates/prefs/folderselect.inc
|
||||
%%IMPDIR%%/templates/prefs/identityselect.inc
|
||||
%%IMPDIR%%/templates/prefs/sourceselect.inc
|
||||
%%IMPDIR%%/templates/prefs/trashselect.inc
|
||||
%%IMPDIR%%/templates/search/javascript.inc
|
||||
%%IMPDIR%%/templates/search/main.inc
|
||||
%%IMPDIR%%/view.php
|
||||
%%PORTDOCS%%@dirrm share/doc/imp
|
||||
etc/horde/httpd.conf.imp
|
||||
@dirrm %%IMPDIR%%/config
|
||||
@dirrm %%IMPDIR%%/graphics/folders
|
||||
@dirrm %%IMPDIR%%/graphics/mime
|
||||
@dirrm %%IMPDIR%%/graphics
|
||||
@dirrm %%IMPDIR%%/lib/Identity
|
||||
@dirrm %%IMPDIR%%/lib/MIME/Viewer
|
||||
@dirrm %%IMPDIR%%/lib/MIME
|
||||
@dirrm %%IMPDIR%%/lib/Maintenance/Task
|
||||
@dirrm %%IMPDIR%%/lib/Maintenance
|
||||
@dirrm %%IMPDIR%%/lib
|
||||
@dirrm %%IMPDIR%%/locale/cs_CZ/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/cs_CZ
|
||||
@dirrm %%IMPDIR%%/locale/de_DE/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/de_DE
|
||||
@dirrm %%IMPDIR%%/locale/el_GR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/el_GR
|
||||
@dirrm %%IMPDIR%%/locale/en_EN
|
||||
@dirrm %%IMPDIR%%/locale/es_ES/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/es_ES
|
||||
@dirrm %%IMPDIR%%/locale/fr_FR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/fr_FR
|
||||
@dirrm %%IMPDIR%%/locale/it_IT/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/it_IT
|
||||
@dirrm %%IMPDIR%%/locale/ko_KR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ko_KR
|
||||
@dirrm %%IMPDIR%%/locale/nl_NL/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/nl_NL
|
||||
@dirrm %%IMPDIR%%/locale/no_BOK/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/no_BOK
|
||||
@dirrm %%IMPDIR%%/locale/pl_PL/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/pl_PL
|
||||
@dirrm %%IMPDIR%%/locale/pt_BR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/pt_BR
|
||||
@dirrm %%IMPDIR%%/locale/ru_win/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ru_win
|
||||
@dirrm %%IMPDIR%%/locale/uk/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/uk
|
||||
@dirrm %%IMPDIR%%/locale/zh_CN/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/zh_CN
|
||||
@dirrm %%IMPDIR%%/locale/zh_TW/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/zh_TW
|
||||
@dirrm %%IMPDIR%%/locale
|
||||
@dirrm %%IMPDIR%%/po
|
||||
@dirrm %%IMPDIR%%/scripts
|
||||
@dirrm %%IMPDIR%%/templates/compose
|
||||
@dirrm %%IMPDIR%%/templates/filters
|
||||
@dirrm %%IMPDIR%%/templates/folders
|
||||
@dirrm %%IMPDIR%%/templates/identities
|
||||
@dirrm %%IMPDIR%%/templates/index
|
||||
@dirrm %%IMPDIR%%/templates/intro
|
||||
@dirrm %%IMPDIR%%/templates/javascript
|
||||
@dirrm %%IMPDIR%%/templates/login
|
||||
@dirrm %%IMPDIR%%/templates/mailbox
|
||||
@dirrm %%IMPDIR%%/templates/menu
|
||||
@dirrm %%IMPDIR%%/templates/message
|
||||
@dirrm %%IMPDIR%%/templates/prefs
|
||||
@dirrm %%IMPDIR%%/templates/search
|
||||
@dirrm %%IMPDIR%%/templates
|
||||
@dirrm %%IMPDIR%%
|
293
mail/imp3/Makefile
Normal file
293
mail/imp3/Makefile
Normal file
|
@ -0,0 +1,293 @@
|
|||
# Ports collection makefile for: imp-devel
|
||||
# Date created: Mon Oct 08, 2001
|
||||
# Whom: Thierry Thomas (<thierry@thomas.as>)
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= imp
|
||||
PORTVERSION= 3.0
|
||||
CATEGORIES= mail www
|
||||
MASTER_SITES= ftp://ftp.horde.org/pub/imp/tarballs/
|
||||
PKGNAMESUFFIX= -devel
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}-RC3
|
||||
|
||||
MAINTAINER= thierry@thomas.as
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
||||
|
||||
#-----------------------------------------------------------------------
|
||||
# You may define these options:
|
||||
#
|
||||
# - WITHOUT_LDAP : if you do not need OpenLDAP;
|
||||
# - WITH_LDAP1 : if you prefer OpenLDAP1.
|
||||
#
|
||||
# - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree;
|
||||
#
|
||||
# - WITHOUT_WV : if your users never receive MS-Word docs;
|
||||
#
|
||||
# - WITHOUT_XL : if your users never receive MS-Excel sheets
|
||||
# (or .ppt presentations);
|
||||
#
|
||||
# - WITHOUT_ZIP : if not interested by zipinfo;
|
||||
#
|
||||
# - WITHOUT_ASPELL : for spelling bees...
|
||||
#
|
||||
# - NOCRYPT : if crypto is restricted in your country;
|
||||
#
|
||||
# - WITHOUT_SSL : if you have not installed c-client WITH_SSL;
|
||||
#
|
||||
# - WITHOUT_TURBA : if you do not want adressbooks;
|
||||
#
|
||||
# - WITHOUT_IMAPSERVER : if your IMAP server runs on another machine;
|
||||
#
|
||||
# or you can select to work with one of these servers:
|
||||
#
|
||||
# - WITH_CYRUS-IMAPD : IMP will work with cyrus-imapd;
|
||||
#
|
||||
# - WITH_CYRUS : IMP will work with cyrus;
|
||||
#
|
||||
# - WITH_IMAP-UW : IMP will work with imap-uw;
|
||||
#
|
||||
# - WITH_COURIER-IMAP : IMP will work with courier-imap.
|
||||
#
|
||||
# These choice are mutually exclusive, and imap-uw is the default.
|
||||
#
|
||||
#-----------------------------------------------------------------------
|
||||
|
||||
LIB_DEPENDS= c-client4.8:${PORTSDIR}/mail/cclient
|
||||
|
||||
.if defined(WITHOUT_TURBA)
|
||||
.if !defined(WITHOUT_LDAP)
|
||||
.if defined(WITH_LDAP1)
|
||||
LIB_DEPENDS+= ldap.1:${PORTSDIR}/net/openldap \
|
||||
lber.1:${PORTSDIR}/net/openldap
|
||||
.else
|
||||
LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap2 \
|
||||
lber.2:${PORTSDIR}/net/openldap2
|
||||
.endif
|
||||
.endif
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/index.php:${PORTSDIR}/www/horde${PKGNAMESUFFIX}
|
||||
.else
|
||||
RUN_DEPENDS+= ${LOCALBASE}/www/horde/turba/index.php:${PORTSDIR}/mail/turba
|
||||
.endif
|
||||
|
||||
# Support of GnuPG is not implemented in this release
|
||||
#.if !defined(NOCRYPT)
|
||||
#RUN_DEPENDS+= ${LOCALBASE}/bin/gpg:${PORTSDIR}/security/gnupg
|
||||
#.endif
|
||||
|
||||
# I have no report about the support of dkimap4 by IMP,
|
||||
# but I shall be happy to add it if somebody report success with it.
|
||||
# If an IMAP server is already installed, we just record the dependence,
|
||||
# else we shall install 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)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/libexec/imapd:${PORTSDIR}/mail/imap-uw
|
||||
.elif defined(WITH_CYRUS-IMAPD)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/lib/libacap.a:${PORTSDIR}/mail/cyrus-imapd
|
||||
.elif defined(WITH_CYRUS)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/cyrus/:${PORTSDIR}/mail/cyrus
|
||||
.elif defined(WITH_COURIER-IMAP)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/libexec/courier-imap/:${PORTSDIR}/mail/courier-imap
|
||||
.else
|
||||
RUN_DEPENDS+= ${LOCALBASE}/libexec/imapd:${PORTSDIR}/mail/imap-uw
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_X11)
|
||||
.if !defined(WITHOUT_WV)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/wvHtml:${PORTSDIR}/textproc/wv
|
||||
.endif
|
||||
.if !defined(WITHOUT_XL)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/xlHtml:${PORTSDIR}/textproc/xlhtml
|
||||
.endif
|
||||
.if !defined(WITHOUT_ZIP)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/zipinfo:${PORTSDIR}/archivers/unzip
|
||||
.endif
|
||||
.if !defined(WITHOUT_ASPELL)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/aspell:${PORTSDIR}/textproc/aspell
|
||||
.endif
|
||||
.endif
|
||||
|
||||
NO_BUILD= yes
|
||||
DOCS= COPYING README docs/CHANGES docs/CREDITS \
|
||||
docs/INSTALL docs/SECURITY docs/FEATURES \
|
||||
docs/PACKAGES
|
||||
CONFFILE= conf.php filter.txt header.txt html.php menu.php \
|
||||
mime_drivers.php motd.php prefs.php servers.php \
|
||||
trailer.txt
|
||||
|
||||
LHORDEDIR?= www/horde
|
||||
LIMPDIR?= ${LHORDEDIR}/imp
|
||||
HORDESBIN?= ${PREFIX}/sbin
|
||||
|
||||
PLIST_SUB= HORDEDIR=${LHORDEDIR} IMPDIR=${LIMPDIR}
|
||||
|
||||
HORDEDIR= ${PREFIX}/${LHORDEDIR}
|
||||
IMPDIR= ${PREFIX}/${LIMPDIR}
|
||||
TURBADIR?= ${HORDEDIR}/turba
|
||||
CONFDIR= ${IMPDIR}/config
|
||||
|
||||
HORDE_INC= ${LOCALBASE}/etc/horde
|
||||
|
||||
HOSTNAME?= `/bin/hostname`
|
||||
SERVOS?= ${OPSYS}-${OSREL}
|
||||
|
||||
PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h
|
||||
|
||||
# Where you want to store the public keyrings needed for gpg
|
||||
# (in a subdirectory in that directory called .gnupg)
|
||||
GNUPG_CNFDIR?= ${LOCALBASE}/etc
|
||||
|
||||
pre-everything::
|
||||
.if !defined(WITHOUT_IMAPSERVER)
|
||||
@${ECHO_MSG} ""
|
||||
@${ECHO_MSG} "Press CTRL-C and define WITHOUT_IMAPSERVER"
|
||||
@${ECHO_MSG} "if you intend to run an IMAP server on an other machine."
|
||||
@${ECHO_MSG} ""
|
||||
.endif
|
||||
|
||||
pre-install:
|
||||
# N.B.: database dependencies are binded with mod_php#, neither by Horde nor IMP.
|
||||
@if [ -f ${IMPDIR}/index.php3 ]; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please deinstall the port mail/imp." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "c-client4.8"; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure PHP with IMAP or IMAP-SSL support." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi
|
||||
.if !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
|
||||
.if !defined(WITHOUT_LDAP)
|
||||
.if defined(WITH_LDAP1)
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "ldap.1"; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure PHP with OpenLDAP support." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi
|
||||
.else
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "ldap.2"; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure PHP with OpenLDAP2 support." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi
|
||||
.endif
|
||||
.endif
|
||||
.if !defined(NOCRYPT)
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "mcrypt.6"; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure PHP with mcrypt support." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi
|
||||
.endif
|
||||
.if !defined(WITHOUT_ASPELL)
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "pspell.4"; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure PHP with pspell support." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi
|
||||
.endif
|
||||
.if !defined(WITHOUT_SUPPORTED_DB)
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "mysqlclient.10" ; then \
|
||||
if ! ${LDCONFIG} -r | ${GREP} -q -e "pq.2" ; then \
|
||||
if ! ${LDCONFIG} -r | ${GREP} -q -e "sybdb.0" ; then \
|
||||
if ! ${LDCONFIG} -r | ${GREP} -q -e "ct.0" ; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure PHP with a database support." ; \
|
||||
${ECHO_MSG} "MySQL, PostgreSQL and Sybase (CTLIB or DBLIB)" ; \
|
||||
${ECHO_MSG} "can be used with PHP AND IMP." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "(If everything will run on this machine, do not" ; \
|
||||
${ECHO_MSG} " forget to install the database server-side!)" ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi ; \
|
||||
fi ; \
|
||||
fi ; \
|
||||
fi
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
@${MKDIR} ${IMPDIR}
|
||||
@${CP} -Rp ${WRKSRC}/config ${WRKSRC}/graphics ${WRKSRC}/lib ${IMPDIR}
|
||||
@${CP} -Rp ${WRKSRC}/locale ${WRKSRC}/scripts ${WRKSRC}/templates ${IMPDIR}
|
||||
@${CP} -Rp ${WRKSRC}/po ${IMPDIR}
|
||||
@${CP} -p ${WRKSRC}/*.php ${IMPDIR}
|
||||
.for FILE in ${CONFFILE}
|
||||
@if [ ! -f ${CONFDIR}/${FILE} ]; then \
|
||||
${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \
|
||||
fi
|
||||
.endfor
|
||||
@${PERL} -pi -e "s:example.com:${HOSTNAME}:g" ${CONFDIR}/servers.php
|
||||
@${PERL} -pi -e "s:%%LOCALBASE%%:${LOCALBASE}:g" ${CONFDIR}/mime_drivers.php
|
||||
@${PERL} -pi -e "s:IMP_VERSION:IMP_VERSION . ' / ${SERVOS}':" ${IMPDIR}/compose.php
|
||||
.if !defined(WITHOUT_ASPELL)
|
||||
@${PERL} -pi -e "s:\/\* BEGBSDASPELL::;s:ENDBSDASPELL \*\/::" \
|
||||
${CONFDIR}/mime_drivers.php
|
||||
@${PERL} -pi -e "s:spellchecker'] = '':spellchecker'] = 'true':" \
|
||||
${CONFDIR}/conf.php
|
||||
.endif
|
||||
.if !defined(WITHOUT_X11)
|
||||
.if !defined(WITHOUT_WV)
|
||||
@${PERL} -pi -e "s:\/\* BEGBSDWV::;s:ENDBSDWV \*\/::" ${CONFDIR}/mime_drivers.php
|
||||
.endif
|
||||
.if !defined(WITHOUT_XL)
|
||||
@${PERL} -pi -e "s:\/\* BEGBSDXL::;s:ENDBSDXL \*\/::g" ${CONFDIR}/mime_drivers.php
|
||||
.endif
|
||||
.endif
|
||||
#.if !defined(NOCRYPT)
|
||||
# @(if [ ! -d ${GNUPG_CNFDIR} ] ; then \
|
||||
# ${MKDIR} ${GNUPG_CNFDIR} ; \
|
||||
# fi)
|
||||
# @${PERL} -pi -e "s:pgp']['enabled'] = false:pgp']['enabled'] = true:g" \
|
||||
# ${CONFDIR}/conf.php
|
||||
# @${PERL} -pi -e "s:%%GNUPG_CNFDIR%%:${GNUPG_CNFDIR}:" \
|
||||
# ${CONFDIR}/conf.php
|
||||
#.endif
|
||||
.if !defined(WITHOUT_ZIP)
|
||||
@${PERL} -pi -e "s:\/\* BEGBSDZIP::;s:ENDBSDZIP \*\/::" ${CONFDIR}/mime_drivers.php
|
||||
.endif
|
||||
@${CHOWN} -R www:www ${IMPDIR}
|
||||
@${CHMOD} -R o-rwx ${CONFDIR}
|
||||
@${CP} -p ${FILESDIR}/httpd.conf.imp ${HORDE_INC}/httpd.conf.imp
|
||||
@${PERL} -pi -e "s:/home/httpd/html/horde/imp:${IMPDIR}:g" ${HORDE_INC}/httpd.conf.imp
|
||||
# Let's Horde use IMP for auth
|
||||
@${PERL} -pi -e "s://UNCOMMENTWHENINSTIMP::" ${HORDEDIR}/config/registry.php
|
||||
# Provide a link to IMP from Turba
|
||||
.if !defined(WITHOUT_TURBA)
|
||||
@${PERL} -pi -e "s://UNCOMMENTWHENINSTIMP::" ${TURBADIR}/config/conf.php
|
||||
.endif
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${PERL} -pi -e "s:/home/httpd/html/horde/imp:${IMPDIR}:g" ${WRKSRC}/docs/SECURITY
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
.for FILE in ${DOCS}
|
||||
@${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
|
||||
.endfor
|
||||
@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
@${ECHO_MSG}
|
||||
@${CAT} ${PKGMESSAGE} | \
|
||||
${SED} -e "s:%%IMPDIR%%:${IMPDIR}:g;s:%%PORTSDIR%%:${PORTSDIR}:g;s:%%CONFDIR%%:${CONFDIR}:g;s:%%DOCSDIR%%:${DOCSDIR}:g"
|
||||
@${ECHO_MSG}
|
||||
|
||||
.include <bsd.port.mk>
|
1
mail/imp3/distinfo
Normal file
1
mail/imp3/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (imp-3.0-RC3.tar.gz) = f02ecd032f3a3c17f96ab575bf5b6f61
|
31
mail/imp3/files/httpd.conf.imp
Normal file
31
mail/imp3/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 ================
|
||||
|
50
mail/imp3/files/patch-aa
Normal file
50
mail/imp3/files/patch-aa
Normal file
|
@ -0,0 +1,50 @@
|
|||
--- config/mime_drivers.php.dist.orig Sat Jul 14 15:30:14 2001
|
||||
+++ config/mime_drivers.php.dist Thu Nov 15 00:08:34 2001
|
||||
@@ -59,4 +59,47 @@
|
||||
$mime_drivers['imp']['html']['handles'] = array(
|
||||
'text/html', 'text/richtext' );
|
||||
|
||||
+/**
|
||||
+ * Misc utilities
|
||||
+ */
|
||||
+
|
||||
+/* Spell checker */
|
||||
+/* BEGBSDASPELL$conf['utils']['spellchecker'] = '%%LOCALBASE%%/bin/aspell';ENDBSDASPELL */
|
||||
+
|
||||
+/* MS-Word viewer */
|
||||
+/* BEGBSDWV$conf['utils']['wordviewer'] = '%%LOCALBASE%%/bin/wvHtml';ENDBSDWV */
|
||||
+
|
||||
+/* MS-Excel viewer */
|
||||
+/* BEGBSDXL$conf['utils']['excelviewer'] = '%%LOCALBASE%%/bin/xlHtml';ENDBSDXL */
|
||||
+
|
||||
+/* MS-Powerpoint viewer */
|
||||
+/* BEGBSDXL$conf['utils']['powerpointviewer'] = '%%LOCALBASE%%/bin/pptHtml';ENDBSDXL */
|
||||
+
|
||||
+/* tar archive files
|
||||
+ Remark: you might prefer GNU tar, from the port archivers/gtar */
|
||||
+$conf['utils']['tar'] = '/usr/bin/tar';
|
||||
+
|
||||
+/* Zip file viewer */
|
||||
+/* BEGBSDZIP$conf['utils']['unzip'] = '%%LOCALBASE%%/bin/zipinfo';ENDBSDZIP */
|
||||
+
|
||||
+/**
|
||||
+ ** PGP/GnuPG Configuration
|
||||
+ **/
|
||||
+
|
||||
+// Should we attempt to verify pgp/gpg signatures?
|
||||
+//$conf['pgp']['enabled'] = false;
|
||||
+
|
||||
+// If we are using gpg support, where is the gpg binary?
|
||||
+//$conf['utils']['gpg'] = '%%LOCALBASE%%/bin/gpg';
|
||||
+
|
||||
+// What kind of binary are we using? Valid values are 'gpg', 'pgp2',
|
||||
+// and 'pgp5'.
|
||||
+//$conf['pgp']['type'] = 'gpg';
|
||||
+
|
||||
+// Where should we look for keyrings?
|
||||
+//$conf['pgp']['conf_dir'] = '%%GNUPG_CNFDIR%%';
|
||||
+
|
||||
+// What keyserver should we use?
|
||||
+//$conf['pgp']['keyserver'] = 'wwwkeys.pgp.net';
|
||||
+
|
||||
?>
|
33
mail/imp3/files/patch-ab
Normal file
33
mail/imp3/files/patch-ab
Normal file
|
@ -0,0 +1,33 @@
|
|||
--- config/servers.php.dist.orig Fri Jun 22 20:08:14 2001
|
||||
+++ config/servers.php.dist Fri Nov 16 23:46:19 2001
|
||||
@@ -31,7 +31,7 @@
|
||||
* is on.
|
||||
*
|
||||
* folders: The folder path for the IMAP server. i.e. UW IMAP
|
||||
- * generally looks to "mail/" while Cyrus and Courier put folders
|
||||
+ * generally looks to "Mail/" while Cyrus and Courier put folders
|
||||
* under "INBOX." (not the trailing dot. IMPORTANT: Use this only if
|
||||
* you want to restrict users to this subfolder. If you set this to
|
||||
* 'INBOX.' with Cyrus or Courier-IMAPd, then users will not be able
|
||||
@@ -84,14 +84,17 @@
|
||||
|
||||
$servers['imap'] = array(
|
||||
'name' => 'IMAP Server',
|
||||
- 'server' => 'imap.example.com',
|
||||
+// 'server' => 'imap.example.com',
|
||||
+ 'server' => 'localhost',
|
||||
'protocol' => 'imap',
|
||||
'port' => 143,
|
||||
- 'folders' => 'mail/',
|
||||
+ 'folders' => 'Mail/',
|
||||
'namespace' => '',
|
||||
'maildomain' => 'example.com',
|
||||
- 'smtphost' => 'smtp.example.com',
|
||||
- 'realm' => 'example.com',
|
||||
+// 'smtphost' => 'smtp.example.com',
|
||||
+ 'smtphost' => 'localhost',
|
||||
+// 'realm' => 'example.com',
|
||||
+ 'realm' => '',
|
||||
'preferred' => ''
|
||||
);
|
||||
|
1
mail/imp3/pkg-comment
Normal file
1
mail/imp3/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A webmail system which accesses mail over IMAP
|
13
mail/imp3/pkg-descr
Normal file
13
mail/imp3/pkg-descr
Normal file
|
@ -0,0 +1,13 @@
|
|||
IMP 3 is currently in heavy development. Features that have been added
|
||||
include searching; a new, flexible preferences system; a hierarchical
|
||||
folder tree; and more.
|
||||
|
||||
It requires PHP4. You should use it if you want to take advantage of
|
||||
PHP4s built-in session handling and improved speed; if you want access
|
||||
to features such as the interactive spell checker and folder searching;
|
||||
or if you want to contribute a major piece to the code.
|
||||
|
||||
This code branch continues the trend of 2.2 by being slimmer, cleaner,
|
||||
and better designed code than the previous version.
|
||||
|
||||
WWW: http://www.horde.org/imp/
|
22
mail/imp3/pkg-message
Normal file
22
mail/imp3/pkg-message
Normal file
|
@ -0,0 +1,22 @@
|
|||
************************************************************************
|
||||
IMP has been installed in %%IMPDIR%% with your blank
|
||||
configuration files.
|
||||
|
||||
Horde must be configured and the tables created; if not, see
|
||||
%%PORTSDIR%%/www/horde-devel/pkg-message.
|
||||
|
||||
Then, you will have to tune the configuration files located in
|
||||
%%CONFDIR%%/, specially the files conf.php and
|
||||
servers.php.
|
||||
|
||||
To protect your configuration files, you have to restart Apache.
|
||||
|
||||
IMP requires an IMAP server. If you want to install one on this
|
||||
machine, you may install the ports mail/cyrus-imapd, or
|
||||
mail/imap-uw, or mail/courier-imap.
|
||||
|
||||
Please refer to the file %%DOCSDIR%%/SECURITY
|
||||
on how to secure the IMP installation.
|
||||
It is at least recommended that you change the default database
|
||||
password used by horde and imp.
|
||||
************************************************************************
|
265
mail/imp3/pkg-plist
Normal file
265
mail/imp3/pkg-plist
Normal file
|
@ -0,0 +1,265 @@
|
|||
%%PORTDOCS%%share/doc/imp/CHANGES
|
||||
%%PORTDOCS%%share/doc/imp/COPYING
|
||||
%%PORTDOCS%%share/doc/imp/CREDITS
|
||||
%%PORTDOCS%%share/doc/imp/FEATURES
|
||||
%%PORTDOCS%%share/doc/imp/INSTALL
|
||||
%%PORTDOCS%%share/doc/imp/PACKAGES
|
||||
%%PORTDOCS%%share/doc/imp/README
|
||||
%%PORTDOCS%%share/doc/imp/SECURITY
|
||||
%%IMPDIR%%/compose.php
|
||||
%%IMPDIR%%/config/conf.php
|
||||
%%IMPDIR%%/config/conf.php.dist
|
||||
%%IMPDIR%%/config/filter.txt
|
||||
%%IMPDIR%%/config/filter.txt.dist
|
||||
%%IMPDIR%%/config/header.txt
|
||||
%%IMPDIR%%/config/header.txt.dist
|
||||
%%IMPDIR%%/config/html.php
|
||||
%%IMPDIR%%/config/html.php.dist
|
||||
%%IMPDIR%%/config/imp.dt
|
||||
%%IMPDIR%%/config/menu.php
|
||||
%%IMPDIR%%/config/menu.php.dist
|
||||
%%IMPDIR%%/config/mime_drivers.php
|
||||
%%IMPDIR%%/config/mime_drivers.php.dist
|
||||
%%IMPDIR%%/config/mime_drivers.php.dist.orig
|
||||
%%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/servers.php.dist.orig
|
||||
%%IMPDIR%%/config/trailer.txt
|
||||
%%IMPDIR%%/config/trailer.txt.dist
|
||||
%%IMPDIR%%/filters.php
|
||||
%%IMPDIR%%/folders.php
|
||||
%%IMPDIR%%/graphics/addressbook-blue.gif
|
||||
%%IMPDIR%%/graphics/addressbook-red.gif
|
||||
%%IMPDIR%%/graphics/addressbook-yellow.gif
|
||||
%%IMPDIR%%/graphics/alternative.gif
|
||||
%%IMPDIR%%/graphics/answered.gif
|
||||
%%IMPDIR%%/graphics/attachment.gif
|
||||
%%IMPDIR%%/graphics/checkbox.gif
|
||||
%%IMPDIR%%/graphics/compose.gif
|
||||
%%IMPDIR%%/graphics/deleted.gif
|
||||
%%IMPDIR%%/graphics/down.gif
|
||||
%%IMPDIR%%/graphics/download.gif
|
||||
%%IMPDIR%%/graphics/draft.gif
|
||||
%%IMPDIR%%/graphics/expand.gif
|
||||
%%IMPDIR%%/graphics/fetchmail.gif
|
||||
%%IMPDIR%%/graphics/filters.gif
|
||||
%%IMPDIR%%/graphics/first-grey.gif
|
||||
%%IMPDIR%%/graphics/first.gif
|
||||
%%IMPDIR%%/graphics/folders.gif
|
||||
%%IMPDIR%%/graphics/folders/collapsed.gif
|
||||
%%IMPDIR%%/graphics/folders/empty.gif
|
||||
%%IMPDIR%%/graphics/folders/expanded.gif
|
||||
%%IMPDIR%%/graphics/folders/folder.gif
|
||||
%%IMPDIR%%/graphics/folders/folder_open.gif
|
||||
%%IMPDIR%%/graphics/folders/inbox.gif
|
||||
%%IMPDIR%%/graphics/folders/mbox.gif
|
||||
%%IMPDIR%%/graphics/folders/mbox_marked.gif
|
||||
%%IMPDIR%%/graphics/folders/mbox_noselect.gif
|
||||
%%IMPDIR%%/graphics/folders/mbox_unmarked.gif
|
||||
%%IMPDIR%%/graphics/folders/spacer.gif
|
||||
%%IMPDIR%%/graphics/imp.gif
|
||||
%%IMPDIR%%/graphics/important.gif
|
||||
%%IMPDIR%%/graphics/last-grey.gif
|
||||
%%IMPDIR%%/graphics/last.gif
|
||||
%%IMPDIR%%/graphics/lhand.gif
|
||||
%%IMPDIR%%/graphics/lock.gif
|
||||
%%IMPDIR%%/graphics/manage_attachments.gif
|
||||
%%IMPDIR%%/graphics/mime/html.gif
|
||||
%%IMPDIR%%/graphics/mime/text.gif
|
||||
%%IMPDIR%%/graphics/next-grey.gif
|
||||
%%IMPDIR%%/graphics/next.gif
|
||||
%%IMPDIR%%/graphics/personal.gif
|
||||
%%IMPDIR%%/graphics/prev-grey.gif
|
||||
%%IMPDIR%%/graphics/prev.gif
|
||||
%%IMPDIR%%/graphics/print.gif
|
||||
%%IMPDIR%%/graphics/reload.gif
|
||||
%%IMPDIR%%/graphics/rhand.gif
|
||||
%%IMPDIR%%/graphics/search.gif
|
||||
%%IMPDIR%%/graphics/signed.gif
|
||||
%%IMPDIR%%/graphics/spellcheck.gif
|
||||
%%IMPDIR%%/graphics/unseen.gif
|
||||
%%IMPDIR%%/graphics/up.gif
|
||||
%%IMPDIR%%/identities.php
|
||||
%%IMPDIR%%/index.php
|
||||
%%IMPDIR%%/intro.php
|
||||
%%IMPDIR%%/lib/Folder.php
|
||||
%%IMPDIR%%/lib/IMP.php
|
||||
%%IMPDIR%%/lib/Identity/IMP.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/delete_sentmail_monthly.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/purge_trash.php
|
||||
%%IMPDIR%%/lib/Maintenance/Task/rename_sentmail_monthly.php
|
||||
%%IMPDIR%%/lib/Maintenance/imp.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/html.php
|
||||
%%IMPDIR%%/lib/MIME/Viewer/text.php
|
||||
%%IMPDIR%%/lib/Message.php
|
||||
%%IMPDIR%%/lib/Tree.php
|
||||
%%IMPDIR%%/lib/api.php
|
||||
%%IMPDIR%%/lib/base.php
|
||||
%%IMPDIR%%/lib/version.php
|
||||
%%IMPDIR%%/locale/cs_CZ/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/de_DE/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/de_DE/help.xml
|
||||
%%IMPDIR%%/locale/el_GR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/en_EN/help.xml
|
||||
%%IMPDIR%%/locale/es_ES/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/fr_FR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/fr_FR/help.xml
|
||||
%%IMPDIR%%/locale/it_IT/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/it_IT/help.xml
|
||||
%%IMPDIR%%/locale/ko_KR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/nl_NL/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/nl_NL/help.xml
|
||||
%%IMPDIR%%/locale/no_BOK/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pl_PL/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/pt_BR/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/ru_win/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/uk/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/zh_CN/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/locale/zh_TW/LC_MESSAGES/imp.mo
|
||||
%%IMPDIR%%/login.php
|
||||
%%IMPDIR%%/mailbox.php
|
||||
%%IMPDIR%%/menu.php
|
||||
%%IMPDIR%%/message.php
|
||||
%%IMPDIR%%/po/Makefile
|
||||
%%IMPDIR%%/po/README
|
||||
%%IMPDIR%%/po/cs_CZ.po
|
||||
%%IMPDIR%%/po/de_DE.po
|
||||
%%IMPDIR%%/po/el_GR.po
|
||||
%%IMPDIR%%/po/es_ES.po
|
||||
%%IMPDIR%%/po/extract.pl
|
||||
%%IMPDIR%%/po/fr_FR.po
|
||||
%%IMPDIR%%/po/it_IT.po
|
||||
%%IMPDIR%%/po/ko_KR.po
|
||||
%%IMPDIR%%/po/nl_NL.po
|
||||
%%IMPDIR%%/po/no_BOK.po
|
||||
%%IMPDIR%%/po/pl_PL.po
|
||||
%%IMPDIR%%/po/pt_BR.po
|
||||
%%IMPDIR%%/po/ru_win.po
|
||||
%%IMPDIR%%/po/shtool
|
||||
%%IMPDIR%%/po/uk.po
|
||||
%%IMPDIR%%/po/xgettext.sh
|
||||
%%IMPDIR%%/po/zh_CN.po
|
||||
%%IMPDIR%%/po/zh_TW.po
|
||||
%%IMPDIR%%/prefs.php
|
||||
%%IMPDIR%%/redirect.php
|
||||
%%IMPDIR%%/scripts/Imp.reg
|
||||
%%IMPDIR%%/scripts/imp-cleanup.cron
|
||||
%%IMPDIR%%/search.php
|
||||
%%IMPDIR%%/spelling.php
|
||||
%%IMPDIR%%/status.php
|
||||
%%IMPDIR%%/templates/common-footer.inc
|
||||
%%IMPDIR%%/templates/common-header.inc
|
||||
%%IMPDIR%%/templates/compose/bounce.inc
|
||||
%%IMPDIR%%/templates/compose/compose.inc
|
||||
%%IMPDIR%%/templates/compose/javascript.inc
|
||||
%%IMPDIR%%/templates/compose/spelling.inc
|
||||
%%IMPDIR%%/templates/filters/javascript.inc
|
||||
%%IMPDIR%%/templates/filters/list.inc
|
||||
%%IMPDIR%%/templates/filters/manage.inc
|
||||
%%IMPDIR%%/templates/folders/actions.inc
|
||||
%%IMPDIR%%/templates/folders/alert.inc
|
||||
%%IMPDIR%%/templates/folders/confirm.inc
|
||||
%%IMPDIR%%/templates/folders/foot.inc
|
||||
%%IMPDIR%%/templates/folders/head.inc
|
||||
%%IMPDIR%%/templates/folders/javascript.inc
|
||||
%%IMPDIR%%/templates/folders/row.inc
|
||||
%%IMPDIR%%/templates/identities/javascript.inc
|
||||
%%IMPDIR%%/templates/identities/manage.inc
|
||||
%%IMPDIR%%/templates/index/css.inc
|
||||
%%IMPDIR%%/templates/index/notconfigured.inc
|
||||
%%IMPDIR%%/templates/intro/main.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/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/message_footers.inc
|
||||
%%IMPDIR%%/templates/mailbox/message_headers.inc
|
||||
%%IMPDIR%%/templates/mailbox/message_summaries.inc
|
||||
%%IMPDIR%%/templates/mailbox/navbar.inc
|
||||
%%IMPDIR%%/templates/mailbox/searchfolder.inc
|
||||
%%IMPDIR%%/templates/menu/menu.inc
|
||||
%%IMPDIR%%/templates/message/headers.inc
|
||||
%%IMPDIR%%/templates/message/javascript.inc
|
||||
%%IMPDIR%%/templates/message/message.inc
|
||||
%%IMPDIR%%/templates/message/navbar.inc
|
||||
%%IMPDIR%%/templates/message/navbar_aux_bottom.inc
|
||||
%%IMPDIR%%/templates/message/navbar_aux_top.inc
|
||||
%%IMPDIR%%/templates/prefs/filters.inc
|
||||
%%IMPDIR%%/templates/prefs/folderselect.inc
|
||||
%%IMPDIR%%/templates/prefs/identityselect.inc
|
||||
%%IMPDIR%%/templates/prefs/sourceselect.inc
|
||||
%%IMPDIR%%/templates/prefs/trashselect.inc
|
||||
%%IMPDIR%%/templates/search/javascript.inc
|
||||
%%IMPDIR%%/templates/search/main.inc
|
||||
%%IMPDIR%%/view.php
|
||||
%%PORTDOCS%%@dirrm share/doc/imp
|
||||
etc/horde/httpd.conf.imp
|
||||
@dirrm %%IMPDIR%%/config
|
||||
@dirrm %%IMPDIR%%/graphics/folders
|
||||
@dirrm %%IMPDIR%%/graphics/mime
|
||||
@dirrm %%IMPDIR%%/graphics
|
||||
@dirrm %%IMPDIR%%/lib/Identity
|
||||
@dirrm %%IMPDIR%%/lib/MIME/Viewer
|
||||
@dirrm %%IMPDIR%%/lib/MIME
|
||||
@dirrm %%IMPDIR%%/lib/Maintenance/Task
|
||||
@dirrm %%IMPDIR%%/lib/Maintenance
|
||||
@dirrm %%IMPDIR%%/lib
|
||||
@dirrm %%IMPDIR%%/locale/cs_CZ/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/cs_CZ
|
||||
@dirrm %%IMPDIR%%/locale/de_DE/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/de_DE
|
||||
@dirrm %%IMPDIR%%/locale/el_GR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/el_GR
|
||||
@dirrm %%IMPDIR%%/locale/en_EN
|
||||
@dirrm %%IMPDIR%%/locale/es_ES/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/es_ES
|
||||
@dirrm %%IMPDIR%%/locale/fr_FR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/fr_FR
|
||||
@dirrm %%IMPDIR%%/locale/it_IT/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/it_IT
|
||||
@dirrm %%IMPDIR%%/locale/ko_KR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ko_KR
|
||||
@dirrm %%IMPDIR%%/locale/nl_NL/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/nl_NL
|
||||
@dirrm %%IMPDIR%%/locale/no_BOK/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/no_BOK
|
||||
@dirrm %%IMPDIR%%/locale/pl_PL/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/pl_PL
|
||||
@dirrm %%IMPDIR%%/locale/pt_BR/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/pt_BR
|
||||
@dirrm %%IMPDIR%%/locale/ru_win/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/ru_win
|
||||
@dirrm %%IMPDIR%%/locale/uk/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/uk
|
||||
@dirrm %%IMPDIR%%/locale/zh_CN/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/zh_CN
|
||||
@dirrm %%IMPDIR%%/locale/zh_TW/LC_MESSAGES
|
||||
@dirrm %%IMPDIR%%/locale/zh_TW
|
||||
@dirrm %%IMPDIR%%/locale
|
||||
@dirrm %%IMPDIR%%/po
|
||||
@dirrm %%IMPDIR%%/scripts
|
||||
@dirrm %%IMPDIR%%/templates/compose
|
||||
@dirrm %%IMPDIR%%/templates/filters
|
||||
@dirrm %%IMPDIR%%/templates/folders
|
||||
@dirrm %%IMPDIR%%/templates/identities
|
||||
@dirrm %%IMPDIR%%/templates/index
|
||||
@dirrm %%IMPDIR%%/templates/intro
|
||||
@dirrm %%IMPDIR%%/templates/javascript
|
||||
@dirrm %%IMPDIR%%/templates/login
|
||||
@dirrm %%IMPDIR%%/templates/mailbox
|
||||
@dirrm %%IMPDIR%%/templates/menu
|
||||
@dirrm %%IMPDIR%%/templates/message
|
||||
@dirrm %%IMPDIR%%/templates/prefs
|
||||
@dirrm %%IMPDIR%%/templates/search
|
||||
@dirrm %%IMPDIR%%/templates
|
||||
@dirrm %%IMPDIR%%
|
Loading…
Reference in a new issue