Update horde4-imp to new Horde 4 framework
Approved by: beech (maintainer, private chat)
This commit is contained in:
parent
b1b0854717
commit
f3a3e15bc8
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=277325
4 changed files with 46 additions and 970 deletions
|
@ -6,100 +6,52 @@
|
|||
#
|
||||
|
||||
PORTNAME= imp
|
||||
PORTVERSION= 5.0.4
|
||||
DISTVERSIONPREFIX=
|
||||
DISTVERSIONSUFFIX=
|
||||
CATEGORIES= mail www
|
||||
MASTER_SITES= http://pear.horde.org/get/ \
|
||||
LOCAL/beech
|
||||
PKGNAMEPREFIX= horde4-
|
||||
EXTRACT_SUFX= .tgz
|
||||
PORTVERSION= 5.0.8
|
||||
CATEGORIES= mail www pear
|
||||
PKGNAMEPREFIX= horde-
|
||||
|
||||
MAINTAINER= beech@FreeBSD.org
|
||||
COMMENT= Webmail system for IMAP/POP3 mailboxes
|
||||
MAINTAINER= mm@FreeBSD.org
|
||||
COMMENT= Horde web based webmail system
|
||||
|
||||
#-----------------------------------------------------------------------
|
||||
# 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;
|
||||
#
|
||||
# - WITH_HTML : enable HTML composition mode;
|
||||
#-----------------------------------------------------------------------
|
||||
CONFLICTS= horde-3*
|
||||
|
||||
LATEST_LINK= horde4-imp
|
||||
RUN_DEPENDS+= ${PEARDIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL
|
||||
LICENSE= GPLv2
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
USE_PHP= imap
|
||||
. if !defined(WITHOUT_LDAP)
|
||||
USE_PHP+= ldap
|
||||
. endif
|
||||
USE_HORDE_BUILD= Horde_Role
|
||||
USE_HORDE_RUN= Horde_Role \
|
||||
horde \
|
||||
Horde_Auth \
|
||||
Horde_Browser \
|
||||
Horde_Compress \
|
||||
Horde_Core \
|
||||
Horde_Crypt \
|
||||
Horde_Date \
|
||||
Horde_Editor \
|
||||
Horde_Exception \
|
||||
Horde_Form \
|
||||
Horde_Icalendar \
|
||||
Horde_Image \
|
||||
Horde_Imap_Client \
|
||||
Horde_Itip \
|
||||
Horde_LoginTasks \
|
||||
Horde_Mail \
|
||||
Horde_Mime \
|
||||
Horde_Mime_Viewer \
|
||||
Horde_Nls \
|
||||
Horde_Notification \
|
||||
Horde_Perms \
|
||||
Horde_Serialize \
|
||||
Horde_SpellChecker \
|
||||
Horde_Support \
|
||||
Horde_Text_Filter \
|
||||
Horde_Text_Flowed \
|
||||
Horde_Token \
|
||||
Horde_Tree \
|
||||
Horde_Url \
|
||||
Horde_Util \
|
||||
Horde_View
|
||||
|
||||
.if !defined(WITHOUT_SMIME)
|
||||
USE_PHP+= openssl
|
||||
.endif
|
||||
|
||||
.if !defined(NOCRYPT)
|
||||
RUN_DEPENDS+=
|
||||
${PEARDIR}/Mail/mimeDecode.php:${PORTSDIR}/mail/pear-Mail_mimeDecode \
|
||||
${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
|
||||
|
||||
CONFLICTS= imp-4.*
|
||||
USE_HORDE= base
|
||||
USE_GETTEXT= yes
|
||||
PORTDOCS= README CHANGES CREDITS INSTALL \
|
||||
RELEASE_NOTES UPGRADING
|
||||
|
||||
pre-configure:
|
||||
.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
|
||||
|
||||
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
|
||||
|
||||
.include "${.CURDIR}/../../www/horde4-base/bsd.horde4.mk"
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.pre.mk>
|
||||
.include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk"
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (imp-5.0.4.tgz) = 502a98d40f2316d2c64949bb198b1f3b05038310c6a7190c2d052c0b2f9d2ade
|
||||
SIZE (imp-5.0.4.tgz) = 4926594
|
||||
SHA256 (Horde/imp-5.0.8.tgz) = be764ae63501e09eadde10cf38b8396b2f6864a327211adc51c31a6a0bcd6299
|
||||
SIZE (Horde/imp-5.0.8.tgz) = 4927660
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
************************************************************************
|
||||
IMP has been installed in %%HORDIR%%/ with your blank
|
||||
configuration files.
|
||||
|
||||
Horde must be configured and the tables created; if not, see
|
||||
`pkg_info -Dx horde-base'.
|
||||
|
||||
Then, you have to tune the configuration files located in
|
||||
%%HORCFG%%/, especially the file backends.php
|
||||
to define your mailserver.
|
||||
|
||||
Then, you must login to Horde as a Horde Administrator to finish the
|
||||
configuration.
|
||||
|
||||
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.
|
||||
************************************************************************
|
|
@ -1,857 +0,0 @@
|
|||
%%HORDIR%%/attachment.php
|
||||
%%HORDIR%%/bin/imp-bounce-spam
|
||||
%%HORDIR%%/bin/imp-query-imap-cache
|
||||
%%HORDIR%%/compose-dimp.php
|
||||
%%HORDIR%%/compose-mimp.php
|
||||
%%HORDIR%%/compose.php
|
||||
%%HORDIR%%/config/.htaccess
|
||||
%%HORDIR%%/config/backends.php
|
||||
%%HORDIR%%/config/conf.xml
|
||||
%%HORDIR%%/config/filter.txt.dist
|
||||
%%HORDIR%%/config/hooks.php.dist
|
||||
%%HORDIR%%/config/menu.php.dist
|
||||
%%HORDIR%%/config/mime_drivers.php
|
||||
%%HORDIR%%/config/prefs.php
|
||||
%%HORDIR%%/contacts.php
|
||||
%%HORDIR%%/folders-mimp.php
|
||||
%%HORDIR%%/folders.php
|
||||
%%HORDIR%%/index-dimp.php
|
||||
%%HORDIR%%/index.php
|
||||
%%HORDIR%%/js/acl.js
|
||||
%%HORDIR%%/js/base64url.js
|
||||
%%HORDIR%%/js/compose-base.js
|
||||
%%HORDIR%%/js/compose-dimp.js
|
||||
%%HORDIR%%/js/compose.js
|
||||
%%HORDIR%%/js/contacts.js
|
||||
%%HORDIR%%/js/dialog.js
|
||||
%%HORDIR%%/js/dimpbase.js
|
||||
%%HORDIR%%/js/dimpcore.js
|
||||
%%HORDIR%%/js/flagprefs.js
|
||||
%%HORDIR%%/js/folderprefs.js
|
||||
%%HORDIR%%/js/folders.js
|
||||
%%HORDIR%%/js/imp.js
|
||||
%%HORDIR%%/js/login.js
|
||||
%%HORDIR%%/js/mailbox-dimp.js
|
||||
%%HORDIR%%/js/mailbox.js
|
||||
%%HORDIR%%/js/message-dimp.js
|
||||
%%HORDIR%%/js/message.js
|
||||
%%HORDIR%%/js/mobile.js
|
||||
%%HORDIR%%/js/search.js
|
||||
%%HORDIR%%/js/searchesprefs.js
|
||||
%%HORDIR%%/js/signaturehtml.js
|
||||
%%HORDIR%%/js/viewport.js
|
||||
%%HORDIR%%/lib/.htaccess
|
||||
%%HORDIR%%/lib/Ajax/Application.php
|
||||
%%HORDIR%%/lib/Ajax/Imple/ContactAutoCompleter.php
|
||||
%%HORDIR%%/lib/Ajax/Imple/PassphraseDialog.php
|
||||
%%HORDIR%%/lib/Ajax/Queue.php
|
||||
%%HORDIR%%/lib/Api.php
|
||||
%%HORDIR%%/lib/Application.php
|
||||
%%HORDIR%%/lib/Auth.php
|
||||
%%HORDIR%%/lib/Block/Newmail.php
|
||||
%%HORDIR%%/lib/Block/Summary.php
|
||||
%%HORDIR%%/lib/Compose.php
|
||||
%%HORDIR%%/lib/Compose/Exception.php
|
||||
%%HORDIR%%/lib/Compose/Stationery.php
|
||||
%%HORDIR%%/lib/Contents.php
|
||||
%%HORDIR%%/lib/Crypt/Pgp.php
|
||||
%%HORDIR%%/lib/Crypt/Smime.php
|
||||
%%HORDIR%%/lib/Dimp.php
|
||||
%%HORDIR%%/lib/Exception.php
|
||||
%%HORDIR%%/lib/Factory/AuthImap.php
|
||||
%%HORDIR%%/lib/Factory/Compose.php
|
||||
%%HORDIR%%/lib/Factory/Contents.php
|
||||
%%HORDIR%%/lib/Factory/Flags.php
|
||||
%%HORDIR%%/lib/Factory/Identity.php
|
||||
%%HORDIR%%/lib/Factory/Imap.php
|
||||
%%HORDIR%%/lib/Factory/Imaptree.php
|
||||
%%HORDIR%%/lib/Factory/Mail.php
|
||||
%%HORDIR%%/lib/Factory/Mailbox.php
|
||||
%%HORDIR%%/lib/Factory/MailboxList.php
|
||||
%%HORDIR%%/lib/Factory/MimeViewer.php
|
||||
%%HORDIR%%/lib/Factory/Pgp.php
|
||||
%%HORDIR%%/lib/Factory/Quota.php
|
||||
%%HORDIR%%/lib/Factory/Search.php
|
||||
%%HORDIR%%/lib/Factory/Sentmail.php
|
||||
%%HORDIR%%/lib/Factory/Smime.php
|
||||
%%HORDIR%%/lib/Filter.php
|
||||
%%HORDIR%%/lib/Flag/Base.php
|
||||
%%HORDIR%%/lib/Flag/Imap.php
|
||||
%%HORDIR%%/lib/Flag/Imap/Answered.php
|
||||
%%HORDIR%%/lib/Flag/Imap/Deleted.php
|
||||
%%HORDIR%%/lib/Flag/Imap/Draft.php
|
||||
%%HORDIR%%/lib/Flag/Imap/Flagged.php
|
||||
%%HORDIR%%/lib/Flag/Imap/Forwarded.php
|
||||
%%HORDIR%%/lib/Flag/Imap/Junk.php
|
||||
%%HORDIR%%/lib/Flag/Imap/NotJunk.php
|
||||
%%HORDIR%%/lib/Flag/Imap/Seen.php
|
||||
%%HORDIR%%/lib/Flag/System.php
|
||||
%%HORDIR%%/lib/Flag/System/Attachment.php
|
||||
%%HORDIR%%/lib/Flag/System/Encrypted.php
|
||||
%%HORDIR%%/lib/Flag/System/HighPriority.php
|
||||
%%HORDIR%%/lib/Flag/System/LowPriority.php
|
||||
%%HORDIR%%/lib/Flag/System/Personal.php
|
||||
%%HORDIR%%/lib/Flag/System/Signed.php
|
||||
%%HORDIR%%/lib/Flag/System/Unseen.php
|
||||
%%HORDIR%%/lib/Flag/User.php
|
||||
%%HORDIR%%/lib/Flags.php
|
||||
%%HORDIR%%/lib/Folder.php
|
||||
%%HORDIR%%/lib/IMP.php
|
||||
%%HORDIR%%/lib/Imap.php
|
||||
%%HORDIR%%/lib/Imap/Acl.php
|
||||
%%HORDIR%%/lib/Imap/Exception.php
|
||||
%%HORDIR%%/lib/Imap/PermanentFlags.php
|
||||
%%HORDIR%%/lib/Imap/Thread.php
|
||||
%%HORDIR%%/lib/Imap/Tree.php
|
||||
%%HORDIR%%/lib/Indices.php
|
||||
%%HORDIR%%/lib/LoginTasks/SystemTask/GarbageCollection.php
|
||||
%%HORDIR%%/lib/LoginTasks/SystemTask/Upgrade.php
|
||||
%%HORDIR%%/lib/LoginTasks/SystemTask/UpgradeAuth.php
|
||||
%%HORDIR%%/lib/LoginTasks/Task/Autocreate.php
|
||||
%%HORDIR%%/lib/LoginTasks/Task/DeleteAttachmentsMonthly.php
|
||||
%%HORDIR%%/lib/LoginTasks/Task/DeleteSentmailMonthly.php
|
||||
%%HORDIR%%/lib/LoginTasks/Task/FilterOnLogin.php
|
||||
%%HORDIR%%/lib/LoginTasks/Task/PurgeSentmail.php
|
||||
%%HORDIR%%/lib/LoginTasks/Task/PurgeSpam.php
|
||||
%%HORDIR%%/lib/LoginTasks/Task/PurgeTrash.php
|
||||
%%HORDIR%%/lib/LoginTasks/Task/RecoverDraft.php
|
||||
%%HORDIR%%/lib/LoginTasks/Task/RenameSentmailMonthly.php
|
||||
%%HORDIR%%/lib/Mailbox.php
|
||||
%%HORDIR%%/lib/Mailbox/List.php
|
||||
%%HORDIR%%/lib/Mailbox/List/Track.php
|
||||
%%HORDIR%%/lib/Maillog.php
|
||||
%%HORDIR%%/lib/Menu/Dimp.php
|
||||
%%HORDIR%%/lib/Message.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Alternative.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Appledouble.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Enriched.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Externalbody.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Html.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Images.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Itip.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Mdn.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Partial.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Pdf.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Pgp.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Plain.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Related.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Rfc822.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Smil.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Smime.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Status.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Vcard.php
|
||||
%%HORDIR%%/lib/Mime/Viewer/Zip.php
|
||||
%%HORDIR%%/lib/Notification/Event/Status.php
|
||||
%%HORDIR%%/lib/Notification/Handler/Decorator/ImapAlerts.php
|
||||
%%HORDIR%%/lib/Notification/Handler/Decorator/NewmailNotify.php
|
||||
%%HORDIR%%/lib/Notification/Listener/AjaxStatus.php
|
||||
%%HORDIR%%/lib/Prefs/Identity.php
|
||||
%%HORDIR%%/lib/Prefs/Ui.php
|
||||
%%HORDIR%%/lib/Quota.php
|
||||
%%HORDIR%%/lib/Quota/Base.php
|
||||
%%HORDIR%%/lib/Quota/Command.php
|
||||
%%HORDIR%%/lib/Quota/Hook.php
|
||||
%%HORDIR%%/lib/Quota/Imap.php
|
||||
%%HORDIR%%/lib/Quota/Maildir.php
|
||||
%%HORDIR%%/lib/Quota/Mdaemon.php
|
||||
%%HORDIR%%/lib/Quota/Mercury32.php
|
||||
%%HORDIR%%/lib/Quota/Null.php
|
||||
%%HORDIR%%/lib/Quota/Sql.php
|
||||
%%HORDIR%%/lib/Search.php
|
||||
%%HORDIR%%/lib/Search/Element.php
|
||||
%%HORDIR%%/lib/Search/Element/Attachment.php
|
||||
%%HORDIR%%/lib/Search/Element/Bulk.php
|
||||
%%HORDIR%%/lib/Search/Element/Date.php
|
||||
%%HORDIR%%/lib/Search/Element/Flag.php
|
||||
%%HORDIR%%/lib/Search/Element/Header.php
|
||||
%%HORDIR%%/lib/Search/Element/Mailinglist.php
|
||||
%%HORDIR%%/lib/Search/Element/Or.php
|
||||
%%HORDIR%%/lib/Search/Element/Personal.php
|
||||
%%HORDIR%%/lib/Search/Element/Recipient.php
|
||||
%%HORDIR%%/lib/Search/Element/Size.php
|
||||
%%HORDIR%%/lib/Search/Element/Text.php
|
||||
%%HORDIR%%/lib/Search/Element/Within.php
|
||||
%%HORDIR%%/lib/Search/Filter.php
|
||||
%%HORDIR%%/lib/Search/Filter/Attachment.php
|
||||
%%HORDIR%%/lib/Search/Filter/Builtin.php
|
||||
%%HORDIR%%/lib/Search/Filter/Bulk.php
|
||||
%%HORDIR%%/lib/Search/Filter/Mailinglist.php
|
||||
%%HORDIR%%/lib/Search/Filter/Personal.php
|
||||
%%HORDIR%%/lib/Search/Query.php
|
||||
%%HORDIR%%/lib/Search/Vfolder.php
|
||||
%%HORDIR%%/lib/Search/Vfolder/Builtin.php
|
||||
%%HORDIR%%/lib/Search/Vfolder/Vinbox.php
|
||||
%%HORDIR%%/lib/Search/Vfolder/Vtrash.php
|
||||
%%HORDIR%%/lib/Sentmail.php
|
||||
%%HORDIR%%/lib/Sentmail/Base.php
|
||||
%%HORDIR%%/lib/Sentmail/Null.php
|
||||
%%HORDIR%%/lib/Sentmail/Sql.php
|
||||
%%HORDIR%%/lib/Spam.php
|
||||
%%HORDIR%%/lib/Test.php
|
||||
%%HORDIR%%/lib/Tree/Flist.php
|
||||
%%HORDIR%%/lib/Tree/Jquerymobile.php
|
||||
%%HORDIR%%/lib/Ui/Compose.php
|
||||
%%HORDIR%%/lib/Ui/Editor.php
|
||||
%%HORDIR%%/lib/Ui/Folder.php
|
||||
%%HORDIR%%/lib/Ui/Headers.php
|
||||
%%HORDIR%%/lib/Ui/Imageview.php
|
||||
%%HORDIR%%/lib/Ui/Mailbox.php
|
||||
%%HORDIR%%/lib/Ui/Message.php
|
||||
%%HORDIR%%/lib/Ui/Mimp.php
|
||||
%%HORDIR%%/lib/Views/Compose.php
|
||||
%%HORDIR%%/lib/Views/ListMessages.php
|
||||
%%HORDIR%%/lib/Views/ShowMessage.php
|
||||
%%HORDIR%%/locale/.htaccess
|
||||
%%HORDIR%%/locale/ar/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/ar/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/ar_OM/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/ar_OM/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/bg/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/bg/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/bs/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/bs/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/ca/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/ca/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/ca/help.xml
|
||||
%%HORDIR%%/locale/cs/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/cs/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/cs/help.xml
|
||||
%%HORDIR%%/locale/da/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/da/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/da/help.xml
|
||||
%%HORDIR%%/locale/de/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/de/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/de/help.xml
|
||||
%%HORDIR%%/locale/el/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/el/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/el/help.xml
|
||||
%%HORDIR%%/locale/en/help.xml
|
||||
%%HORDIR%%/locale/es/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/es/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/es/help.xml
|
||||
%%HORDIR%%/locale/et/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/et/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/et/help.xml
|
||||
%%HORDIR%%/locale/eu/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/eu/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/eu/help.xml
|
||||
%%HORDIR%%/locale/fa/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/fa/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/fa/help.xml
|
||||
%%HORDIR%%/locale/fi/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/fi/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/fi/help.xml
|
||||
%%HORDIR%%/locale/fr/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/fr/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/fr/help.xml
|
||||
%%HORDIR%%/locale/gl/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/gl/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/he/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/he/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/hr/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/hr/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/hr/help.xml
|
||||
%%HORDIR%%/locale/hu/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/hu/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/hu/help.xml
|
||||
%%HORDIR%%/locale/id/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/id/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/imp.pot
|
||||
%%HORDIR%%/locale/is/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/is/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/it/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/it/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/it/help.xml
|
||||
%%HORDIR%%/locale/ja/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/ja/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/km/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/km/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/ko/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/ko/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/ko/help.xml
|
||||
%%HORDIR%%/locale/lt/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/lt/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/lv/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/lv/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/mk/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/mk/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/nb/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/nb/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/nb/help.xml
|
||||
%%HORDIR%%/locale/nl/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/nl/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/nl/help.xml
|
||||
%%HORDIR%%/locale/nn/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/nn/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/pl/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/pl/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/pl/help.xml
|
||||
%%HORDIR%%/locale/pt/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/pt/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/pt/help.xml
|
||||
%%HORDIR%%/locale/pt_BR/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/pt_BR/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/pt_BR/help.xml
|
||||
%%HORDIR%%/locale/ro/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/ro/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/ru/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/ru/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/ru/help.xml
|
||||
%%HORDIR%%/locale/sk/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/sk/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/sk/help.xml
|
||||
%%HORDIR%%/locale/sl/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/sl/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/sv/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/sv/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/sv/help.xml
|
||||
%%HORDIR%%/locale/th/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/th/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/tr/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/tr/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/tr/help.xml
|
||||
%%HORDIR%%/locale/uk/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/uk/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/uk/help.xml
|
||||
%%HORDIR%%/locale/zh_CN/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/zh_CN/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/zh_CN/help.xml
|
||||
%%HORDIR%%/locale/zh_TW/LC_MESSAGES/imp.mo
|
||||
%%HORDIR%%/locale/zh_TW/LC_MESSAGES/imp.po
|
||||
%%HORDIR%%/locale/zh_TW/help.xml
|
||||
%%HORDIR%%/mailbox-mimp.php
|
||||
%%HORDIR%%/mailbox.php
|
||||
%%HORDIR%%/message-dimp.php
|
||||
%%HORDIR%%/message-mimp.php
|
||||
%%HORDIR%%/message.php
|
||||
%%HORDIR%%/migration/1_imp_base_tables.php
|
||||
%%HORDIR%%/migration/2_imp_autoincrement_sentmail.php
|
||||
%%HORDIR%%/mobile.php
|
||||
%%HORDIR%%/pgp.php
|
||||
%%HORDIR%%/rss.php
|
||||
%%HORDIR%%/saveimage.php
|
||||
%%HORDIR%%/search-basic.php
|
||||
%%HORDIR%%/search.php
|
||||
%%HORDIR%%/smime.php
|
||||
%%HORDIR%%/templates/.htaccess
|
||||
%%HORDIR%%/templates/common-header.inc
|
||||
%%HORDIR%%/templates/dimp/compose/compose-base.html
|
||||
%%HORDIR%%/templates/dimp/compose/compose.html
|
||||
%%HORDIR%%/templates/dimp/index.inc
|
||||
%%HORDIR%%/templates/dimp/javascript_defs.php
|
||||
%%HORDIR%%/templates/dimp/message/message.html
|
||||
%%HORDIR%%/templates/imp/compose/compose.html
|
||||
%%HORDIR%%/templates/imp/compose/redirect.html
|
||||
%%HORDIR%%/templates/imp/compose/success.html
|
||||
%%HORDIR%%/templates/imp/contacts/contacts.html
|
||||
%%HORDIR%%/templates/imp/flist/flist.html
|
||||
%%HORDIR%%/templates/imp/folders/actions.html
|
||||
%%HORDIR%%/templates/imp/folders/folders_confirm.html
|
||||
%%HORDIR%%/templates/imp/folders/folders_size.html
|
||||
%%HORDIR%%/templates/imp/folders/head.html
|
||||
%%HORDIR%%/templates/imp/folders/import.html
|
||||
%%HORDIR%%/templates/imp/javascript_defs.php
|
||||
%%HORDIR%%/templates/imp/mailbox/actions.html
|
||||
%%HORDIR%%/templates/imp/mailbox/actions_deleted.html
|
||||
%%HORDIR%%/templates/imp/mailbox/empty_mailbox.html
|
||||
%%HORDIR%%/templates/imp/mailbox/form_start.html
|
||||
%%HORDIR%%/templates/imp/mailbox/header.html
|
||||
%%HORDIR%%/templates/imp/mailbox/mailbox.html
|
||||
%%HORDIR%%/templates/imp/mailbox/message_headers.html
|
||||
%%HORDIR%%/templates/imp/mailbox/navbar.html
|
||||
%%HORDIR%%/templates/imp/mailbox/searchfolder.html
|
||||
%%HORDIR%%/templates/imp/menu/menu.html
|
||||
%%HORDIR%%/templates/imp/message/message.html
|
||||
%%HORDIR%%/templates/imp/message/navbar_actions.html
|
||||
%%HORDIR%%/templates/imp/message/navbar_navigate.html
|
||||
%%HORDIR%%/templates/imp/message/navbar_top.html
|
||||
%%HORDIR%%/templates/imp/search/search-basic.html
|
||||
%%HORDIR%%/templates/imp/search/search.html
|
||||
%%HORDIR%%/templates/imp/thread/thread.html
|
||||
%%HORDIR%%/templates/mimp/compose/compose.html
|
||||
%%HORDIR%%/templates/mimp/folders/folders.html
|
||||
%%HORDIR%%/templates/mimp/mailbox/mailbox.html
|
||||
%%HORDIR%%/templates/mimp/mailbox/search.html
|
||||
%%HORDIR%%/templates/mimp/message/message.html
|
||||
%%HORDIR%%/templates/mimp/message/part.html
|
||||
%%HORDIR%%/templates/mobile/folders.html.php
|
||||
%%HORDIR%%/templates/mobile/head.html.php
|
||||
%%HORDIR%%/templates/mobile/javascript_defs.php
|
||||
%%HORDIR%%/templates/mobile/mailbox.html.php
|
||||
%%HORDIR%%/templates/mobile/message.html.php
|
||||
%%HORDIR%%/templates/mobile/notice.html.php
|
||||
%%HORDIR%%/templates/pgp/import_key.html
|
||||
%%HORDIR%%/templates/prefs/acl.html
|
||||
%%HORDIR%%/templates/prefs/drafts.html
|
||||
%%HORDIR%%/templates/prefs/encrypt.html
|
||||
%%HORDIR%%/templates/prefs/flags.html
|
||||
%%HORDIR%%/templates/prefs/initialpage.html
|
||||
%%HORDIR%%/templates/prefs/mailto.html
|
||||
%%HORDIR%%/templates/prefs/newmailaudio.html
|
||||
%%HORDIR%%/templates/prefs/pgpprivatekey.html
|
||||
%%HORDIR%%/templates/prefs/pgppublickey.html
|
||||
%%HORDIR%%/templates/prefs/searches.html
|
||||
%%HORDIR%%/templates/prefs/sentmail.html
|
||||
%%HORDIR%%/templates/prefs/signaturehtml.html
|
||||
%%HORDIR%%/templates/prefs/smimeprivatekey.html
|
||||
%%HORDIR%%/templates/prefs/smimepublickey.html
|
||||
%%HORDIR%%/templates/prefs/spam.html
|
||||
%%HORDIR%%/templates/prefs/specialuse.html
|
||||
%%HORDIR%%/templates/prefs/stationery.html
|
||||
%%HORDIR%%/templates/prefs/trash.html
|
||||
%%HORDIR%%/templates/print/headers.html
|
||||
%%HORDIR%%/templates/quota/quota.html
|
||||
%%HORDIR%%/templates/rss/mailbox.rss
|
||||
%%HORDIR%%/templates/saveimage/saveimage.html
|
||||
%%HORDIR%%/templates/smime/import_key.html
|
||||
%%HORDIR%%/templates/test/mailserver.inc
|
||||
%%HORDIR%%/test/Imp/AllTests.php
|
||||
%%HORDIR%%/test/Imp/Autoload.php
|
||||
%%HORDIR%%/test/Imp/Stub/HtmlViewer.php
|
||||
%%HORDIR%%/test/Imp/Unit/Mime/Viewer/HtmlTest.php
|
||||
%%HORDIR%%/test/Imp/Unit/Mime/Viewer/ItipTest.php
|
||||
%%HORDIR%%/test/Imp/Unit/QuotaTest.php
|
||||
%%HORDIR%%/test/Imp/fixtures/maildirsize
|
||||
%%HORDIR%%/test/Imp/phpunit.xml
|
||||
%%HORDIR%%/themes/azur/screen.css
|
||||
%%HORDIR%%/themes/bluemoon/screen.css
|
||||
%%HORDIR%%/themes/bluewhite/dimp/screen.css
|
||||
%%HORDIR%%/themes/bluewhite/screen.css
|
||||
%%HORDIR%%/themes/brown/screen.css
|
||||
%%HORDIR%%/themes/burntorange/screen.css
|
||||
%%HORDIR%%/themes/cornflower/screen.css
|
||||
%%HORDIR%%/themes/default/dimp/ie7.css
|
||||
%%HORDIR%%/themes/default/dimp/screen.css
|
||||
%%HORDIR%%/themes/default/graphics/add_contact.png
|
||||
%%HORDIR%%/themes/default/graphics/addressbook_add.png
|
||||
%%HORDIR%%/themes/default/graphics/addressbook_browse.png
|
||||
%%HORDIR%%/themes/default/graphics/application_tile_horizontal.png
|
||||
%%HORDIR%%/themes/default/graphics/application_tile_vertical.png
|
||||
%%HORDIR%%/themes/default/graphics/arrow_collapsed.png
|
||||
%%HORDIR%%/themes/default/graphics/arrow_expanded.png
|
||||
%%HORDIR%%/themes/default/graphics/attachment.png
|
||||
%%HORDIR%%/themes/default/graphics/backhead_orderby.png
|
||||
%%HORDIR%%/themes/default/graphics/backhead_r.png
|
||||
%%HORDIR%%/themes/default/graphics/backhead_s2.png
|
||||
%%HORDIR%%/themes/default/graphics/backhead_shadow.png
|
||||
%%HORDIR%%/themes/default/graphics/blacklist.png
|
||||
%%HORDIR%%/themes/default/graphics/calendar.png
|
||||
%%HORDIR%%/themes/default/graphics/checkbox_off.png
|
||||
%%HORDIR%%/themes/default/graphics/checkbox_on.png
|
||||
%%HORDIR%%/themes/default/graphics/checkbox_over.png
|
||||
%%HORDIR%%/themes/default/graphics/checkmail.png
|
||||
%%HORDIR%%/themes/default/graphics/close.png
|
||||
%%HORDIR%%/themes/default/graphics/compose.png
|
||||
%%HORDIR%%/themes/default/graphics/delete.png
|
||||
%%HORDIR%%/themes/default/graphics/download.png
|
||||
%%HORDIR%%/themes/default/graphics/drafts.png
|
||||
%%HORDIR%%/themes/default/graphics/dragHandle.png
|
||||
%%HORDIR%%/themes/default/graphics/dragHandleVert.png
|
||||
%%HORDIR%%/themes/default/graphics/edit.png
|
||||
%%HORDIR%%/themes/default/graphics/empty_spam.png
|
||||
%%HORDIR%%/themes/default/graphics/empty_trash.png
|
||||
%%HORDIR%%/themes/default/graphics/encrypted.png
|
||||
%%HORDIR%%/themes/default/graphics/favicon.ico
|
||||
%%HORDIR%%/themes/default/graphics/fetchmail.png
|
||||
%%HORDIR%%/themes/default/graphics/filters.png
|
||||
%%HORDIR%%/themes/default/graphics/folders/create.png
|
||||
%%HORDIR%%/themes/default/graphics/folders/delete.png
|
||||
%%HORDIR%%/themes/default/graphics/folders/drafts.png
|
||||
%%HORDIR%%/themes/default/graphics/folders/edit.png
|
||||
%%HORDIR%%/themes/default/graphics/folders/folder.png
|
||||
%%HORDIR%%/themes/default/graphics/folders/inbox.png
|
||||
%%HORDIR%%/themes/default/graphics/folders/minus.png
|
||||
%%HORDIR%%/themes/default/graphics/folders/open.png
|
||||
%%HORDIR%%/themes/default/graphics/folders/plus.png
|
||||
%%HORDIR%%/themes/default/graphics/folders/sent.png
|
||||
%%HORDIR%%/themes/default/graphics/folders/spam.png
|
||||
%%HORDIR%%/themes/default/graphics/folders/trash.png
|
||||
%%HORDIR%%/themes/default/graphics/forward.png
|
||||
%%HORDIR%%/themes/default/graphics/gallery.png
|
||||
%%HORDIR%%/themes/default/graphics/ham.png
|
||||
%%HORDIR%%/themes/default/graphics/help.png
|
||||
%%HORDIR%%/themes/default/graphics/ico_message_off.png
|
||||
%%HORDIR%%/themes/default/graphics/imp.png
|
||||
%%HORDIR%%/themes/default/graphics/info_icon.png
|
||||
%%HORDIR%%/themes/default/graphics/key_down.png
|
||||
%%HORDIR%%/themes/default/graphics/key_up.png
|
||||
%%HORDIR%%/themes/default/graphics/loading.gif
|
||||
%%HORDIR%%/themes/default/graphics/locked.png
|
||||
%%HORDIR%%/themes/default/graphics/logo.png
|
||||
%%HORDIR%%/themes/default/graphics/logout.png
|
||||
%%HORDIR%%/themes/default/graphics/mail_answered.png
|
||||
%%HORDIR%%/themes/default/graphics/mail_clearflag.png
|
||||
%%HORDIR%%/themes/default/graphics/mail_deleted.png
|
||||
%%HORDIR%%/themes/default/graphics/mail_draft.png
|
||||
%%HORDIR%%/themes/default/graphics/mail_flagged.png
|
||||
%%HORDIR%%/themes/default/graphics/mail_forwarded.png
|
||||
%%HORDIR%%/themes/default/graphics/mail_personal.png
|
||||
%%HORDIR%%/themes/default/graphics/mail_priority_high.png
|
||||
%%HORDIR%%/themes/default/graphics/mail_priority_low.png
|
||||
%%HORDIR%%/themes/default/graphics/mail_seen.png
|
||||
%%HORDIR%%/themes/default/graphics/mail_unseen.png
|
||||
%%HORDIR%%/themes/default/graphics/manage_attachments.png
|
||||
%%HORDIR%%/themes/default/graphics/message_source.png
|
||||
%%HORDIR%%/themes/default/graphics/mime/apple.png
|
||||
%%HORDIR%%/themes/default/graphics/mime/compressed.png
|
||||
%%HORDIR%%/themes/default/graphics/mime/itip.png
|
||||
%%HORDIR%%/themes/default/graphics/mini-error.png
|
||||
%%HORDIR%%/themes/default/graphics/newmail.png
|
||||
%%HORDIR%%/themes/default/graphics/newwin.png
|
||||
%%HORDIR%%/themes/default/graphics/plus.png
|
||||
%%HORDIR%%/themes/default/graphics/popdown.png
|
||||
%%HORDIR%%/themes/default/graphics/prefs.png
|
||||
%%HORDIR%%/themes/default/graphics/preview.png
|
||||
%%HORDIR%%/themes/default/graphics/print.png
|
||||
%%HORDIR%%/themes/default/graphics/quotaback.jpg
|
||||
%%HORDIR%%/themes/default/graphics/quotauncover.gif
|
||||
%%HORDIR%%/themes/default/graphics/reload.png
|
||||
%%HORDIR%%/themes/default/graphics/reply.png
|
||||
%%HORDIR%%/themes/default/graphics/replyall.png
|
||||
%%HORDIR%%/themes/default/graphics/sbcursor_bottom.png
|
||||
%%HORDIR%%/themes/default/graphics/sbcursor_top.png
|
||||
%%HORDIR%%/themes/default/graphics/scroller.png
|
||||
%%HORDIR%%/themes/default/graphics/scroller_back.png
|
||||
%%HORDIR%%/themes/default/graphics/search.png
|
||||
%%HORDIR%%/themes/default/graphics/select.png
|
||||
%%HORDIR%%/themes/default/graphics/shared.png
|
||||
%%HORDIR%%/themes/default/graphics/signed.png
|
||||
%%HORDIR%%/themes/default/graphics/sortdown.png
|
||||
%%HORDIR%%/themes/default/graphics/sortup.png
|
||||
%%HORDIR%%/themes/default/graphics/spacer_red.png
|
||||
%%HORDIR%%/themes/default/graphics/spam.png
|
||||
%%HORDIR%%/themes/default/graphics/spellcheck.png
|
||||
%%HORDIR%%/themes/default/graphics/undelete.png
|
||||
%%HORDIR%%/themes/default/graphics/warning.png
|
||||
%%HORDIR%%/themes/default/graphics/whitelist.png
|
||||
%%HORDIR%%/themes/default/ie6_or_less.css
|
||||
%%HORDIR%%/themes/default/ie7.css
|
||||
%%HORDIR%%/themes/default/mimp/screen.css
|
||||
%%HORDIR%%/themes/default/mobile.css
|
||||
%%HORDIR%%/themes/default/rtl.css
|
||||
%%HORDIR%%/themes/default/screen.css
|
||||
%%HORDIR%%/themes/fadetogreen/screen.css
|
||||
%%HORDIR%%/themes/gennevilliers/screen.css
|
||||
%%HORDIR%%/themes/green/screen.css
|
||||
%%HORDIR%%/themes/grey/screen.css
|
||||
%%HORDIR%%/themes/ideas/screen.css
|
||||
%%HORDIR%%/themes/lavander/screen.css
|
||||
%%HORDIR%%/themes/luc/screen.css
|
||||
%%HORDIR%%/themes/lucblue/screen.css
|
||||
%%HORDIR%%/themes/mozilla/screen.css
|
||||
%%HORDIR%%/themes/postnuke/screen.css
|
||||
%%HORDIR%%/themes/purple/dimp/screen.css
|
||||
%%HORDIR%%/themes/purple/screen.css
|
||||
%%HORDIR%%/themes/silver/dimp/screen.css
|
||||
%%HORDIR%%/themes/silver/graphics/add_contact.png
|
||||
%%HORDIR%%/themes/silver/graphics/addressbook_add.png
|
||||
%%HORDIR%%/themes/silver/graphics/addressbook_browse.png
|
||||
%%HORDIR%%/themes/silver/graphics/application_tile_horizontal.png
|
||||
%%HORDIR%%/themes/silver/graphics/application_tile_vertical.png
|
||||
%%HORDIR%%/themes/silver/graphics/arrow_collapsed.png
|
||||
%%HORDIR%%/themes/silver/graphics/arrow_expanded.png
|
||||
%%HORDIR%%/themes/silver/graphics/attachment.png
|
||||
%%HORDIR%%/themes/silver/graphics/blacklist.png
|
||||
%%HORDIR%%/themes/silver/graphics/calendar.png
|
||||
%%HORDIR%%/themes/silver/graphics/checkmail.png
|
||||
%%HORDIR%%/themes/silver/graphics/close.png
|
||||
%%HORDIR%%/themes/silver/graphics/compose.png
|
||||
%%HORDIR%%/themes/silver/graphics/delete.png
|
||||
%%HORDIR%%/themes/silver/graphics/drafts.png
|
||||
%%HORDIR%%/themes/silver/graphics/edit.png
|
||||
%%HORDIR%%/themes/silver/graphics/empty_spam.png
|
||||
%%HORDIR%%/themes/silver/graphics/empty_trash.png
|
||||
%%HORDIR%%/themes/silver/graphics/encrypted.png
|
||||
%%HORDIR%%/themes/silver/graphics/fetchmail.png
|
||||
%%HORDIR%%/themes/silver/graphics/filters.png
|
||||
%%HORDIR%%/themes/silver/graphics/folders/create.png
|
||||
%%HORDIR%%/themes/silver/graphics/folders/delete.png
|
||||
%%HORDIR%%/themes/silver/graphics/folders/drafts.png
|
||||
%%HORDIR%%/themes/silver/graphics/folders/edit.png
|
||||
%%HORDIR%%/themes/silver/graphics/folders/explore.png
|
||||
%%HORDIR%%/themes/silver/graphics/folders/folder.png
|
||||
%%HORDIR%%/themes/silver/graphics/folders/inbox.png
|
||||
%%HORDIR%%/themes/silver/graphics/folders/minus.png
|
||||
%%HORDIR%%/themes/silver/graphics/folders/open.png
|
||||
%%HORDIR%%/themes/silver/graphics/folders/plus.png
|
||||
%%HORDIR%%/themes/silver/graphics/folders/sent.png
|
||||
%%HORDIR%%/themes/silver/graphics/folders/spam.png
|
||||
%%HORDIR%%/themes/silver/graphics/folders/trash.png
|
||||
%%HORDIR%%/themes/silver/graphics/forward.png
|
||||
%%HORDIR%%/themes/silver/graphics/ham.png
|
||||
%%HORDIR%%/themes/silver/graphics/help.png
|
||||
%%HORDIR%%/themes/silver/graphics/imp.png
|
||||
%%HORDIR%%/themes/silver/graphics/info_icon.png
|
||||
%%HORDIR%%/themes/silver/graphics/locked.png
|
||||
%%HORDIR%%/themes/silver/graphics/logout.png
|
||||
%%HORDIR%%/themes/silver/graphics/mail_answered.png
|
||||
%%HORDIR%%/themes/silver/graphics/mail_clearflag.png
|
||||
%%HORDIR%%/themes/silver/graphics/mail_deleted.png
|
||||
%%HORDIR%%/themes/silver/graphics/mail_draft.png
|
||||
%%HORDIR%%/themes/silver/graphics/mail_flagged.png
|
||||
%%HORDIR%%/themes/silver/graphics/mail_forwarded.png
|
||||
%%HORDIR%%/themes/silver/graphics/mail_personal.png
|
||||
%%HORDIR%%/themes/silver/graphics/mail_priority_high.png
|
||||
%%HORDIR%%/themes/silver/graphics/mail_priority_low.png
|
||||
%%HORDIR%%/themes/silver/graphics/mail_seen.png
|
||||
%%HORDIR%%/themes/silver/graphics/mail_unseen.png
|
||||
%%HORDIR%%/themes/silver/graphics/manage_attachments.png
|
||||
%%HORDIR%%/themes/silver/graphics/message_source.png
|
||||
%%HORDIR%%/themes/silver/graphics/newmail.png
|
||||
%%HORDIR%%/themes/silver/graphics/newwin.png
|
||||
%%HORDIR%%/themes/silver/graphics/plus.png
|
||||
%%HORDIR%%/themes/silver/graphics/popdown.png
|
||||
%%HORDIR%%/themes/silver/graphics/prefs.png
|
||||
%%HORDIR%%/themes/silver/graphics/preview.png
|
||||
%%HORDIR%%/themes/silver/graphics/print.png
|
||||
%%HORDIR%%/themes/silver/graphics/reload.png
|
||||
%%HORDIR%%/themes/silver/graphics/reply.png
|
||||
%%HORDIR%%/themes/silver/graphics/replyall.png
|
||||
%%HORDIR%%/themes/silver/graphics/search.png
|
||||
%%HORDIR%%/themes/silver/graphics/shared.png
|
||||
%%HORDIR%%/themes/silver/graphics/signed.png
|
||||
%%HORDIR%%/themes/silver/graphics/sortdown.png
|
||||
%%HORDIR%%/themes/silver/graphics/sortup.png
|
||||
%%HORDIR%%/themes/silver/graphics/spam.png
|
||||
%%HORDIR%%/themes/silver/graphics/spellcheck.png
|
||||
%%HORDIR%%/themes/silver/graphics/undelete.png
|
||||
%%HORDIR%%/themes/silver/graphics/warning.png
|
||||
%%HORDIR%%/themes/silver/graphics/whitelist.png
|
||||
%%HORDIR%%/themes/silver/screen.css
|
||||
%%HORDIR%%/themes/simplex/screen.css
|
||||
%%HORDIR%%/themes/tango-blue/dimp/screen.css
|
||||
%%HORDIR%%/themes/tango-blue/graphics/addressbook_browse.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/attachment.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/calendar.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/close.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/compose.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/empty_trash.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/encrypted.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/favicon.ico
|
||||
%%HORDIR%%/themes/tango-blue/graphics/fetchmail.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/filters.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/folders/drafts.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/folders/folder.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/folders/inbox.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/folders/open.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/folders/sent.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/folders/spam.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/folders/trash.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/imp.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/mail_answered.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/mail_deleted.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/mail_draft.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/mail_flagged.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/mail_personal.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/mail_priority_high.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/mail_priority_low.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/mail_unseen.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/manage_attachments.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/newmail.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/reload.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/shared.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/signed.png
|
||||
%%HORDIR%%/themes/tango-blue/graphics/spellcheck.png
|
||||
%%HORDIR%%/themes/tango-blue/screen.css
|
||||
%%HORDIR%%/thread.php
|
||||
%%HORDIR%%/view.php
|
||||
@dirrm %%HORDIR%%/themes/tango-blue/graphics/folders
|
||||
@dirrm %%HORDIR%%/themes/tango-blue/graphics
|
||||
@dirrm %%HORDIR%%/themes/tango-blue/dimp
|
||||
@dirrm %%HORDIR%%/themes/tango-blue
|
||||
@dirrm %%HORDIR%%/themes/simplex
|
||||
@dirrm %%HORDIR%%/themes/silver/graphics/folders
|
||||
@dirrm %%HORDIR%%/themes/silver/graphics
|
||||
@dirrm %%HORDIR%%/themes/silver/dimp
|
||||
@dirrm %%HORDIR%%/themes/silver
|
||||
@dirrm %%HORDIR%%/themes/purple/dimp
|
||||
@dirrm %%HORDIR%%/themes/purple
|
||||
@dirrm %%HORDIR%%/themes/postnuke
|
||||
@dirrm %%HORDIR%%/themes/mozilla
|
||||
@dirrm %%HORDIR%%/themes/lucblue
|
||||
@dirrm %%HORDIR%%/themes/luc
|
||||
@dirrm %%HORDIR%%/themes/lavander
|
||||
@dirrm %%HORDIR%%/themes/ideas
|
||||
@dirrm %%HORDIR%%/themes/grey
|
||||
@dirrm %%HORDIR%%/themes/green
|
||||
@dirrm %%HORDIR%%/themes/gennevilliers
|
||||
@dirrm %%HORDIR%%/themes/fadetogreen
|
||||
@dirrm %%HORDIR%%/themes/default/mimp
|
||||
@dirrm %%HORDIR%%/themes/default/graphics/mime
|
||||
@dirrm %%HORDIR%%/themes/default/graphics/folders
|
||||
@dirrm %%HORDIR%%/themes/default/graphics
|
||||
@dirrm %%HORDIR%%/themes/default/dimp
|
||||
@dirrm %%HORDIR%%/themes/default
|
||||
@dirrm %%HORDIR%%/themes/cornflower
|
||||
@dirrm %%HORDIR%%/themes/burntorange
|
||||
@dirrm %%HORDIR%%/themes/brown
|
||||
@dirrm %%HORDIR%%/themes/bluewhite/dimp
|
||||
@dirrm %%HORDIR%%/themes/bluewhite
|
||||
@dirrm %%HORDIR%%/themes/bluemoon
|
||||
@dirrm %%HORDIR%%/themes/azur
|
||||
@dirrm %%HORDIR%%/themes
|
||||
@dirrm %%HORDIR%%/test/Imp/fixtures
|
||||
@dirrm %%HORDIR%%/test/Imp/Unit/Mime/Viewer
|
||||
@dirrm %%HORDIR%%/test/Imp/Unit/Mime
|
||||
@dirrm %%HORDIR%%/test/Imp/Unit
|
||||
@dirrm %%HORDIR%%/test/Imp/Stub
|
||||
@dirrm %%HORDIR%%/test/Imp
|
||||
@dirrm %%HORDIR%%/test
|
||||
@dirrm %%HORDIR%%/templates/test
|
||||
@dirrm %%HORDIR%%/templates/smime
|
||||
@dirrm %%HORDIR%%/templates/saveimage
|
||||
@dirrm %%HORDIR%%/templates/rss
|
||||
@dirrm %%HORDIR%%/templates/quota
|
||||
@dirrm %%HORDIR%%/templates/print
|
||||
@dirrm %%HORDIR%%/templates/prefs
|
||||
@dirrm %%HORDIR%%/templates/pgp
|
||||
@dirrm %%HORDIR%%/templates/mobile
|
||||
@dirrm %%HORDIR%%/templates/mimp/message
|
||||
@dirrm %%HORDIR%%/templates/mimp/mailbox
|
||||
@dirrm %%HORDIR%%/templates/mimp/folders
|
||||
@dirrm %%HORDIR%%/templates/mimp/compose
|
||||
@dirrm %%HORDIR%%/templates/mimp
|
||||
@dirrm %%HORDIR%%/templates/imp/thread
|
||||
@dirrm %%HORDIR%%/templates/imp/search
|
||||
@dirrm %%HORDIR%%/templates/imp/message
|
||||
@dirrm %%HORDIR%%/templates/imp/menu
|
||||
@dirrm %%HORDIR%%/templates/imp/mailbox
|
||||
@dirrm %%HORDIR%%/templates/imp/folders
|
||||
@dirrm %%HORDIR%%/templates/imp/flist
|
||||
@dirrm %%HORDIR%%/templates/imp/contacts
|
||||
@dirrm %%HORDIR%%/templates/imp/compose
|
||||
@dirrm %%HORDIR%%/templates/imp
|
||||
@dirrm %%HORDIR%%/templates/dimp/message
|
||||
@dirrm %%HORDIR%%/templates/dimp/compose
|
||||
@dirrm %%HORDIR%%/templates/dimp
|
||||
@dirrm %%HORDIR%%/templates
|
||||
@dirrm %%HORDIR%%/migration
|
||||
@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/zh_TW
|
||||
@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/zh_CN
|
||||
@dirrm %%HORDIR%%/locale/uk/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/uk
|
||||
@dirrm %%HORDIR%%/locale/tr/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/tr
|
||||
@dirrm %%HORDIR%%/locale/th/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/th
|
||||
@dirrm %%HORDIR%%/locale/sv/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/sv
|
||||
@dirrm %%HORDIR%%/locale/sl/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/sl
|
||||
@dirrm %%HORDIR%%/locale/sk/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/sk
|
||||
@dirrm %%HORDIR%%/locale/ru/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/ru
|
||||
@dirrm %%HORDIR%%/locale/ro/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/ro
|
||||
@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/pt_BR
|
||||
@dirrm %%HORDIR%%/locale/pt/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/pt
|
||||
@dirrm %%HORDIR%%/locale/pl/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/pl
|
||||
@dirrm %%HORDIR%%/locale/nn/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/nn
|
||||
@dirrm %%HORDIR%%/locale/nl/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/nl
|
||||
@dirrm %%HORDIR%%/locale/nb/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/nb
|
||||
@dirrm %%HORDIR%%/locale/mk/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/mk
|
||||
@dirrm %%HORDIR%%/locale/lv/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/lv
|
||||
@dirrm %%HORDIR%%/locale/lt/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/lt
|
||||
@dirrm %%HORDIR%%/locale/ko/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/ko
|
||||
@dirrm %%HORDIR%%/locale/km/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/km
|
||||
@dirrm %%HORDIR%%/locale/ja/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/ja
|
||||
@dirrm %%HORDIR%%/locale/it/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/it
|
||||
@dirrm %%HORDIR%%/locale/is/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/is
|
||||
@dirrm %%HORDIR%%/locale/id/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/id
|
||||
@dirrm %%HORDIR%%/locale/hu/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/hu
|
||||
@dirrm %%HORDIR%%/locale/hr/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/hr
|
||||
@dirrm %%HORDIR%%/locale/he/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/he
|
||||
@dirrm %%HORDIR%%/locale/gl/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/gl
|
||||
@dirrm %%HORDIR%%/locale/fr/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/fr
|
||||
@dirrm %%HORDIR%%/locale/fi/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/fi
|
||||
@dirrm %%HORDIR%%/locale/fa/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/fa
|
||||
@dirrm %%HORDIR%%/locale/eu/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/eu
|
||||
@dirrm %%HORDIR%%/locale/et/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/et
|
||||
@dirrm %%HORDIR%%/locale/es/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/es
|
||||
@dirrm %%HORDIR%%/locale/en
|
||||
@dirrm %%HORDIR%%/locale/el/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/el
|
||||
@dirrm %%HORDIR%%/locale/de/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/de
|
||||
@dirrm %%HORDIR%%/locale/da/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/da
|
||||
@dirrm %%HORDIR%%/locale/cs/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/cs
|
||||
@dirrm %%HORDIR%%/locale/ca/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/ca
|
||||
@dirrm %%HORDIR%%/locale/bs/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/bs
|
||||
@dirrm %%HORDIR%%/locale/bg/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/bg
|
||||
@dirrm %%HORDIR%%/locale/ar_OM/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/ar_OM
|
||||
@dirrm %%HORDIR%%/locale/ar/LC_MESSAGES
|
||||
@dirrm %%HORDIR%%/locale/ar
|
||||
@dirrm %%HORDIR%%/locale
|
||||
@dirrm %%HORDIR%%/lib/Views
|
||||
@dirrm %%HORDIR%%/lib/Ui
|
||||
@dirrm %%HORDIR%%/lib/Tree
|
||||
@dirrm %%HORDIR%%/lib/Sentmail
|
||||
@dirrm %%HORDIR%%/lib/Search/Vfolder
|
||||
@dirrm %%HORDIR%%/lib/Search/Filter
|
||||
@dirrm %%HORDIR%%/lib/Search/Element
|
||||
@dirrm %%HORDIR%%/lib/Search
|
||||
@dirrm %%HORDIR%%/lib/Quota
|
||||
@dirrm %%HORDIR%%/lib/Prefs
|
||||
@dirrm %%HORDIR%%/lib/Notification/Listener
|
||||
@dirrm %%HORDIR%%/lib/Notification/Handler/Decorator
|
||||
@dirrm %%HORDIR%%/lib/Notification/Handler
|
||||
@dirrm %%HORDIR%%/lib/Notification/Event
|
||||
@dirrm %%HORDIR%%/lib/Notification
|
||||
@dirrm %%HORDIR%%/lib/Mime/Viewer
|
||||
@dirrm %%HORDIR%%/lib/Mime
|
||||
@dirrm %%HORDIR%%/lib/Menu
|
||||
@dirrm %%HORDIR%%/lib/Mailbox/List
|
||||
@dirrm %%HORDIR%%/lib/Mailbox
|
||||
@dirrm %%HORDIR%%/lib/LoginTasks/Task
|
||||
@dirrm %%HORDIR%%/lib/LoginTasks/SystemTask
|
||||
@dirrm %%HORDIR%%/lib/LoginTasks
|
||||
@dirrm %%HORDIR%%/lib/Imap
|
||||
@dirrm %%HORDIR%%/lib/Flag/System
|
||||
@dirrm %%HORDIR%%/lib/Flag/Imap
|
||||
@dirrm %%HORDIR%%/lib/Flag
|
||||
@dirrm %%HORDIR%%/lib/Factory
|
||||
@dirrm %%HORDIR%%/lib/Crypt
|
||||
@dirrm %%HORDIR%%/lib/Compose
|
||||
@dirrm %%HORDIR%%/lib/Block
|
||||
@dirrm %%HORDIR%%/lib/Ajax/Imple
|
||||
@dirrm %%HORDIR%%/lib/Ajax
|
||||
@dirrm %%HORDIR%%/lib
|
||||
@dirrm %%HORDIR%%/js
|
||||
@dirrmtry %%HORDIR%%/config
|
||||
@dirrm %%HORDIR%%/bin
|
||||
@dirrmtry %%HORDIR%%
|
||||
@dirrmtry %%HORBAS%%
|
Loading…
Reference in a new issue