diff options
-rw-r--r-- | mail/evolution/Makefile | 131 | ||||
-rw-r--r-- | mail/evolution/distinfo | 3 | ||||
-rwxr-xr-x | mail/evolution/files/fix-plugins.sh | 49 | ||||
-rw-r--r-- | mail/evolution/files/patch-aa | 36 | ||||
-rw-r--r-- | mail/evolution/files/patch-modules_addressbook_evolution-module-addressbook.c | 19 | ||||
-rw-r--r-- | mail/evolution/pkg-descr | 9 | ||||
-rw-r--r-- | mail/evolution/pkg-plist | 2257 |
7 files changed, 2504 insertions, 0 deletions
diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile new file mode 100644 index 000000000..02b7969d7 --- /dev/null +++ b/mail/evolution/Makefile @@ -0,0 +1,131 @@ +# New ports collection makefile for: evolution +# Date created: 28th June 2000 +# Whom: Ade Lovett <ade@FreeBSD.org> +# +# $FreeBSD$ +# $MCom$ +# + +PORTNAME= evolution +PORTVERSION= 2.31.3 +CATEGORIES= mail gnome +MASTER_SITES= GNOME +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= An integrated mail, calendar and address book distributed suite + +LIB_DEPENDS= nss3.1:${PORTSDIR}/security/nss \ + unique-1.0.2:${PORTSDIR}/x11-toolkits/unique \ + notify.1:${PORTSDIR}/devel/libnotify \ + gtkimageview.0:${PORTSDIR}/x11-toolkits/gtkimageview +RUN_DEPENDS= ${LOCALBASE}/lib/gnome-spell/libgnome-spell-component-0.3.so:${PORTSDIR}/textproc/gnome-spell + +USE_BZIP2= yes +USE_GMAKE= yes +USE_BISON= build +USE_GETTEXT= yes +USE_GNOME= gnomeprefix gnomehack intlhack evolutiondataserver gtkhtml3 \ + desktopfileutils gnomedocutils ltasneededhack gnomedesktop \ + libgnomecanvas +USE_AUTOTOOLS= libtool:22 +USE_GSTREAMER= yes +INSTALLS_OMF= yes +INSTALLS_ICONS= yes +USE_LDCONFIG= yes +LDCONFIG_DIRS= %%PREFIX%%/lib/evolution/%%VERSION%% +CONFIGURE_ARGS= --enable-nss=yes \ + --enable-mono=no \ + --disable-nm \ + --with-sub-version=" FreeBSD GNOME Team Port" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +GCONF_SCHEMAS= apps_evolution_addressbook.schemas \ + apps-evolution-attachment-reminder.schemas \ + apps_evolution_calendar.schemas \ + apps_evolution_email_custom_header.schemas \ + apps-evolution-mail-notification.schemas \ + apps-evolution-mail-prompts-checkdefault.schemas \ + apps_evolution_shell.schemas \ + apps-evolution-template-placeholders.schemas \ + bogo-junk-plugin.schemas \ + evolution-mail.schemas + +EVO_VERSION= 3.0 +PLIST_SUB= VERSION=${EVO_VERSION} \ + PORTVERSION=2.12 + +OPTIONS= PILOT "Enable Palm Pilot sync support" off \ + LDAP "Enable LDAP support" on \ + CANBERRA "Enable canberra plugin" on \ + SPAMASSASSIN "Enable SpamAssassin spam filtering" off + +.include <bsd.port.pre.mk> + +USE_LDCONFIG= ${PREFIX}/lib/evolution/${EVO_VERSION} + +.if defined(WITH_PILOT) +LIB_DEPENDS+= gpilotdconduit.2:${PORTSDIR}/palm/gnome-pilot +CONFIGURE_ARGS+= --with-pisock=${LOCALBASE} \ + --enable-pilot-conduits=yes +PLIST_SUB+= PILOT="" +.else +PLIST_SUB+= PILOT="@comment " +.endif + +.if !defined(WITHOUT_LDAP) +USE_OPENLDAP= yes +CONFIGURE_ARGS+=--with-openldap=${LOCALBASE} +.else +CONFIGURE_ARGS+=--with-openldap=no +.endif + +.if defined(WITH_SPAMASSASSIN) +RUN_DEPENDS+= spamassassin:${PORTSDIR}/mail/p5-Mail-SpamAssassin +.endif + +.if defined(HEIMDAL_HOME) || defined(WITH_HEIMDAL) || defined(NO_KERBEROS) +HEIMDAL_HOME?= ${LOCALBASE} +LIB_DEPENDS+= krb5:${PORTSDIR}/security/heimdal +CONFIGURE_ARGS+= --with-krb5=${HEIMDAL_HOME} \ + --with-krb5-includes=${HEIMDAL_HOME}/include +KRB5_LIB= `${HEIMDAL_HOME}/bin/krb5-config gssapi --libs` +.elif !defined(NO_KERBEROS) +CONFIGURE_ARGS+= --with-krb5=/usr +KRB5_LIB= `/usr/bin/krb5-config gssapi --libs` +.endif + +.if defined(WITH_CANBERRA) +LIB_DEPENDS+= canberra-gtk.0:${PORTSDIR}/audio/libcanberra +CONFIGURE_ARGS+=--enable-canberra=yes +PLIST_SUB+= CANBERRA="" +.else +CONFIGURE_ARGS+=--enable-canberra=no +PLIST_SUB+= CANBERRA="@comment " +.endif + +# needs newer libpst version 0.6.41 or higher +#.if defined (WITH_PST) +#CONFIGURE_ARGS+= --enable-pst-import +#BUILD_DEPENDS+= lspst:${PORTSDIR}/mail/libpst +#RUN_DEPENDS+= lspst:${PORTSDIR}/mail/libpst +#PLIST_SUB+= PST="" +#.else +CONFIGURE_ARGS+= --disable-pst-import +PLIST_SUB+= PST="@comment " +#.endif + +post-patch: + @${REINPLACE_CMD} -e '/^plugins_standard_always/s/audio-inline//' \ + -e 's|-lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lgssapi|${KRB5_LIB}|g' \ + -e 's|-Wl,--no-undefined||g' \ + -e 's|-Wmissing-include-dirs||g' \ + ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|/usr|${LOCALBASE}|g' \ + ${WRKSRC}/plugins/bogo-junk-plugin/bf-junk-filter.c + @${REINPLACE_CMD} -e 's|/usr/sbin|${LOCALBASE}/bin|g' \ + ${WRKSRC}/plugins/sa-junk-plugin/em-junk-filter.c + @${SH} ${FILESDIR}/fix-plugins.sh ${WRKSRC} + +.include <bsd.port.post.mk> diff --git a/mail/evolution/distinfo b/mail/evolution/distinfo new file mode 100644 index 000000000..1daab39e0 --- /dev/null +++ b/mail/evolution/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome2/evolution-2.31.3.tar.bz2) = 006ae66cf24385195ad6bf439f79b0c9 +SHA256 (gnome2/evolution-2.31.3.tar.bz2) = 25c01089a3be139a3d8c9ed95b19b0fca965665d9ef41675acdef7462b0c5584 +SIZE (gnome2/evolution-2.31.3.tar.bz2) = 31300166 diff --git a/mail/evolution/files/fix-plugins.sh b/mail/evolution/files/fix-plugins.sh new file mode 100755 index 000000000..76216fa1a --- /dev/null +++ b/mail/evolution/files/fix-plugins.sh @@ -0,0 +1,49 @@ +#!/bin/sh + +plugin_srcs="addressbook-file/addressbook-file.c attachment-reminder/attachment-reminder.c audio-inline/audio-inline.c backup-restore/backup-restore.c bbdb/bbdb.c bogo-junk-plugin/bf-junk-filter.c caldav/caldav-source.c calendar-file/calendar-file.c calendar-http/calendar-http.c calendar-weather/calendar-weather.c contacts-map/contacts-map.c default-mailer/default-mailer.c default-source/default-source.c email-custom-header/email-custom-header.c external-editor/external-editor.c face/face.c google-account-setup/google-source.c groupwise-features/install-shared.c hula-account-setup/hula-account-setup.c image-inline/image-inline.c imap-features/imap-headers.c itip-formatter/itip-formatter.c mail-notification/mail-notification.c mail-to-task/mail-to-task.c mailing-list-actions/mailing-list-actions.c mark-all-read/mark-all-read.c plugin-manager/plugin-manager.c prefer-plain/prefer-plain.c profiler/profiler.c pst-import/pst-importer.c publish-calendar/publish-calendar.c sa-junk-plugin/em-junk-filter.c save-calendar/save-calendar.c startup-wizard/startup-wizard.c subject-thread/subject-thread.c templates/templates.c tnef-attachments/tnef-plugin.c vcard-inline/vcard-inline.c webdav-account-setup/webdav-contacts-source.c" + +module_srcs="addressbook/evolution-module-addressbook.c calendar/evolution-module-calendar.c mail/evolution-module-mail.c plugin-lib/evolution-module-plugin-lib.c plugin-mono/evolution-module-plugin-mono.c plugin-python/evolution-module-plugin-python.c" + +WRKSRC=$1 + +for i in ${plugin_srcs}; do + if [ ! -f ${WRKSRC}/plugins/${i} ]; then + echo "WARNING: Failed to find plugin source file ${WRKSRC}/plugins/${i}" + continue + fi + cp ${WRKSRC}/plugins/${i} ${WRKSRC}/plugins/${i}.bak + printf "const char * g_module_check_init (gpointer module);\n" >> ${WRKSRC}/plugins/${i} + printf "const char *\ng_module_check_init (gpointer module) {\n\treturn NULL;\n}\n" >> ${WRKSRC}/plugins/${i} + printf "void g_module_unload (gpointer module);\n" >> ${WRKSRC}/plugins/${i} + printf "void\ng_module_unload (gpointer module) {\n\treturn;\n}\n" >> ${WRKSRC}/plugins/${i} + dir=$(dirname ${WRKSRC}/plugins/${i}) + if ! grep -q e_plugin_lib_enable ${dir}/*.c; then + printf "#include <e-util/e-config.h>\n" >> ${WRKSRC}/plugins/${i} + printf "gint e_plugin_lib_enable (EPlugin *ep, gint enable);\n" >> ${WRKSRC}/plugins/${i} + printf "gint\ne_plugin_lib_enable (EPlugin *ep, gint enable) {\n\treturn 0;\n}\n" >> ${WRKSRC}/plugins/${i} + fi + if ! grep -q e_plugin_lib_get_configure_widget ${dir}/*.c; then + printf "#include <e-util/e-config.h>\n" >> ${WRKSRC}/plugins/${i} + printf "GtkWidget *e_plugin_lib_get_configure_widget (EPlugin *plugin);\n" >> ${WRKSRC}/plugins/${i} + printf "GtkWidget *\ne_plugin_lib_get_configure_widget (EPlugin *plugin) {\n\treturn NULL;\n}" >> ${WRKSRC}/plugins/${i} + fi +done + +for i in ${module_srcs}; do + if [ ! -f ${WRKSRC}/modules/${i} ]; then + echo "WARNING: Failed to find module source file ${WRKSRC}/modules/${i}" + continue + fi + cp ${WRKSRC}/modules/${i} ${WRKSRC}/modules/${i}.bak + dir=$(dirname ${WRKSRC}/modules/${i}) + if ! grep -q g_module_check_init ${dir}/*.c; then + printf "const char * g_module_check_init (gpointer module);\n" >> ${WRKSRC}/modules/${i} + printf "const char *\ng_module_check_init (gpointer module) {\n\treturn NULL;\n}\n" >> ${WRKSRC}/modules/${i} + fi + if ! grep g_module_unload ${dir}/*.c; then + printf "void g_module_unload (gpointer module);\n" >> ${WRKSRC}/modules/${i} + printf "void\ng_module_unload (gpointer module) {\n\treturn;\n}\n" >> ${WRKSRC}/modules/${i} + fi +done + + diff --git a/mail/evolution/files/patch-aa b/mail/evolution/files/patch-aa new file mode 100644 index 000000000..3b9eb7094 --- /dev/null +++ b/mail/evolution/files/patch-aa @@ -0,0 +1,36 @@ +--- configure.orig 2009-12-26 20:42:20.000000000 +0100 ++++ configure 2009-12-26 20:49:17.000000000 +0100 +@@ -4329,7 +4329,7 @@ + -Wdeclaration-after-statement + -Werror-implicit-function-declaration + -Wformat-security -Winit-self +- -Wmissing-declarations -Wmissing-include-dirs ++ -Wmissing-declarations + -Wmissing-noreturn -Wnested-externs -Wpointer-arith + -Wredundant-decls -Wundef -Wwrite-strings" + flags_supported="" +@@ -16441,6 +16441,16 @@ + CHAMPLAIN_REQUIREMENT='' + GEOCLUE_REQUIREMENT='' + ;; ++*freebsd*) ++ os_win32=no ++ NO_UNDEFINED='' ++ SOCKET_LIBS='' ++ SOEXT='.so' ++ SA_JUNK_PLUGIN=sa-junk-plugin ++ BF_JUNK_PLUGIN=bogo-junk-plugin ++ DL_LIB='' ++ SOFTOKN3_LIB='-lsoftokn3' ++ ;; + *) + os_win32=no + NO_UNDEFINED='-no-undefined' +@@ -18544,6 +18554,7 @@ + #include <sys/socket.h> + #include <netinet/in.h> + #include <netdb.h> ++ #include <stdio.h> + + #define BUFSIZE (sizeof(struct hostent)+10) + diff --git a/mail/evolution/files/patch-modules_addressbook_evolution-module-addressbook.c b/mail/evolution/files/patch-modules_addressbook_evolution-module-addressbook.c new file mode 100644 index 000000000..0df6bd970 --- /dev/null +++ b/mail/evolution/files/patch-modules_addressbook_evolution-module-addressbook.c @@ -0,0 +1,19 @@ +--- modules/addressbook/evolution-module-addressbook.c.orig 2010-04-11 12:47:18.000000000 -0400 ++++ modules/addressbook/evolution-module-addressbook.c 2010-04-11 12:48:06.000000000 -0400 +@@ -47,3 +47,16 @@ G_MODULE_EXPORT void + e_module_unload (GTypeModule *type_module) + { + } ++ ++G_MODULE_EXPORT const gchar * ++g_module_check_init (GModule *module) ++{ ++ /* FIXME Until addressbook is split into a module library and a ++ * reusable shared library, prevent the module from ++ * being unloaded. Unloading the module resets all ++ * static variables, which screws up foo_get_type() ++ * functions among other things. */ ++ g_module_make_resident (module); ++ ++ return NULL; ++} diff --git a/mail/evolution/pkg-descr b/mail/evolution/pkg-descr new file mode 100644 index 000000000..068e19e1a --- /dev/null +++ b/mail/evolution/pkg-descr @@ -0,0 +1,9 @@ +Ximian Evolution[tm] is the premier personal and workgroup information +management solution for UNIX. Evolution seamlessly integrates email, +calendaring, meeting scheduling, contact management and online task lists +in one powerful, fast, and easy to use application. It also delivers a +comprehensive set of features that help keep work organized and projects +on track. The unique Ximian vFolders[tm] are virtual folders used to +create and save powerful contextual views of email messages. + +WWW: http://www.gnome.org/projects/evolution/ diff --git a/mail/evolution/pkg-plist b/mail/evolution/pkg-plist new file mode 100644 index 000000000..569638d76 --- /dev/null +++ b/mail/evolution/pkg-plist @@ -0,0 +1,2257 @@ +bin/evolution +bin/evolution-settings +etc/xdg/autostart/evolution-alarm-notify.desktop +include/evolution-%%VERSION%%/addressbook/gui/widgets/eab-config.h +include/evolution-%%VERSION%%/calendar/common/authentication.h +%%PILOT%%include/evolution-%%VERSION%%/calendar/conduits/common/libecalendar-common-conduit.h +include/evolution-%%VERSION%%/calendar/gui/cal-editor-utils.h +include/evolution-%%VERSION%%/calendar/gui/calendar-config-keys.h +include/evolution-%%VERSION%%/calendar/gui/calendar-config.h +include/evolution-%%VERSION%%/calendar/gui/calendar-view-factory.h +include/evolution-%%VERSION%%/calendar/gui/calendar-view.h +include/evolution-%%VERSION%%/calendar/gui/comp-util.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/alarm-dialog.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/alarm-list-dialog.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/cal-prefs-dialog.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/calendar-setup.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/cancel-comp.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/changed-comp.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/comp-editor-page.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/comp-editor-util.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/comp-editor.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/copy-source-dialog.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/delete-comp.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/delete-error.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/e-delegate-dialog.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/e-send-options-utils.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/event-editor.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/event-page.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/memo-editor.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/memo-page.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/recur-comp.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/recurrence-page.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/save-comp.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/schedule-page.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/select-source-dialog.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/send-comp.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/task-details-page.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/task-editor.h +include/evolution-%%VERSION%%/calendar/gui/dialogs/task-page.h +include/evolution-%%VERSION%%/calendar/gui/e-alarm-list.h +include/evolution-%%VERSION%%/calendar/gui/e-cal-config.h +include/evolution-%%VERSION%%/calendar/gui/e-cal-event.h +include/evolution-%%VERSION%%/calendar/gui/e-cal-list-view.h +include/evolution-%%VERSION%%/calendar/gui/e-cal-model-calendar.h +include/evolution-%%VERSION%%/calendar/gui/e-cal-model.h +include/evolution-%%VERSION%%/calendar/gui/e-calendar-selector.h +include/evolution-%%VERSION%%/calendar/gui/e-calendar-view.h +include/evolution-%%VERSION%%/calendar/gui/e-cell-date-edit-text.h +include/evolution-%%VERSION%%/calendar/gui/e-date-time-list.h +include/evolution-%%VERSION%%/calendar/gui/e-day-view-layout.h +include/evolution-%%VERSION%%/calendar/gui/e-day-view-main-item.h +include/evolution-%%VERSION%%/calendar/gui/e-day-view-time-item.h +include/evolution-%%VERSION%%/calendar/gui/e-day-view-top-item.h +include/evolution-%%VERSION%%/calendar/gui/e-day-view.h +include/evolution-%%VERSION%%/calendar/gui/e-meeting-attendee.h +include/evolution-%%VERSION%%/calendar/gui/e-meeting-list-view.h +include/evolution-%%VERSION%%/calendar/gui/e-meeting-store.h +include/evolution-%%VERSION%%/calendar/gui/e-meeting-time-sel-item.h +include/evolution-%%VERSION%%/calendar/gui/e-meeting-time-sel.h +include/evolution-%%VERSION%%/calendar/gui/e-meeting-types.h +include/evolution-%%VERSION%%/calendar/gui/e-meeting-utils.h +include/evolution-%%VERSION%%/calendar/gui/e-select-names-editable.h +include/evolution-%%VERSION%%/calendar/gui/e-select-names-renderer.h +include/evolution-%%VERSION%%/calendar/gui/e-timezone-entry.h +include/evolution-%%VERSION%%/calendar/gui/e-week-view-event-item.h +include/evolution-%%VERSION%%/calendar/gui/e-week-view-layout.h +include/evolution-%%VERSION%%/calendar/gui/e-week-view-main-item.h +include/evolution-%%VERSION%%/calendar/gui/e-week-view-titles-item.h +include/evolution-%%VERSION%%/calendar/gui/e-week-view.h +include/evolution-%%VERSION%%/calendar/gui/gnome-cal.h +include/evolution-%%VERSION%%/calendar/gui/goto.h +include/evolution-%%VERSION%%/calendar/gui/itip-utils.h +include/evolution-%%VERSION%%/calendar/gui/misc.h +include/evolution-%%VERSION%%/calendar/gui/tag-calendar.h +include/evolution-%%VERSION%%/calendar/gui/weekday-picker.h +include/evolution-%%VERSION%%/composer/e-composer-actions.h +include/evolution-%%VERSION%%/composer/e-composer-autosave.h +include/evolution-%%VERSION%%/composer/e-composer-common.h +include/evolution-%%VERSION%%/composer/e-composer-from-header.h +include/evolution-%%VERSION%%/composer/e-composer-header-table.h +include/evolution-%%VERSION%%/composer/e-composer-header.h +include/evolution-%%VERSION%%/composer/e-composer-name-header.h +include/evolution-%%VERSION%%/composer/e-composer-post-header.h +include/evolution-%%VERSION%%/composer/e-composer-private.h +include/evolution-%%VERSION%%/composer/e-composer-text-header.h +include/evolution-%%VERSION%%/composer/e-msg-composer.h +include/evolution-%%VERSION%%/e-conduit/e-pilot-map.h +include/evolution-%%VERSION%%/e-conduit/e-pilot-util.h +include/evolution-%%VERSION%%/e-util/e-account-utils.h +include/evolution-%%VERSION%%/e-util/e-activity.h +include/evolution-%%VERSION%%/e-util/e-alert-activity.h +include/evolution-%%VERSION%%/e-util/e-alert-dialog.h +include/evolution-%%VERSION%%/e-util/e-alert.h +include/evolution-%%VERSION%%/e-util/e-binding.h +include/evolution-%%VERSION%%/e-util/e-bit-array.h +include/evolution-%%VERSION%%/e-util/e-categories-config.h +include/evolution-%%VERSION%%/e-util/e-charset.h +include/evolution-%%VERSION%%/e-util/e-config.h +include/evolution-%%VERSION%%/e-util/e-datetime-format.h +include/evolution-%%VERSION%%/e-util/e-dialog-utils.h +include/evolution-%%VERSION%%/e-util/e-dialog-widgets.h +include/evolution-%%VERSION%%/e-util/e-event.h +include/evolution-%%VERSION%%/e-util/e-extensible.h +include/evolution-%%VERSION%%/e-util/e-extension.h +include/evolution-%%VERSION%%/e-util/e-file-utils.h +include/evolution-%%VERSION%%/e-util/e-html-utils.h +include/evolution-%%VERSION%%/e-util/e-icon-factory.h +include/evolution-%%VERSION%%/e-util/e-io-activity.h +include/evolution-%%VERSION%%/e-util/e-import.h +include/evolution-%%VERSION%%/e-util/e-logger.h +include/evolution-%%VERSION%%/e-util/e-marshal.h +include/evolution-%%VERSION%%/e-util/e-mktemp.h +include/evolution-%%VERSION%%/e-util/e-module.h +include/evolution-%%VERSION%%/e-util/e-non-intrusive-error-dialog.h +include/evolution-%%VERSION%%/e-util/e-plugin-ui.h +include/evolution-%%VERSION%%/e-util/e-plugin-util.h +include/evolution-%%VERSION%%/e-util/e-plugin.h +include/evolution-%%VERSION%%/e-util/e-poolv.h +include/evolution-%%VERSION%%/e-util/e-print.h +include/evolution-%%VERSION%%/e-util/e-profile-event.h +include/evolution-%%VERSION%%/e-util/e-selection.h +include/evolution-%%VERSION%%/e-util/e-signature-list.h +include/evolution-%%VERSION%%/e-util/e-signature-utils.h +include/evolution-%%VERSION%%/e-util/e-signature.h +include/evolution-%%VERSION%%/e-util/e-sorter-array.h +include/evolution-%%VERSION%%/e-util/e-sorter.h +include/evolution-%%VERSION%%/e-util/e-text-event-processor-emacs-like.h +include/evolution-%%VERSION%%/e-util/e-text-event-processor-types.h +include/evolution-%%VERSION%%/e-util/e-text-event-processor.h +include/evolution-%%VERSION%%/e-util/e-timeout-activity.h +include/evolution-%%VERSION%%/e-util/e-ui-manager.h +include/evolution-%%VERSION%%/e-util/e-unicode.h +include/evolution-%%VERSION%%/e-util/e-util.h +include/evolution-%%VERSION%%/e-util/e-xml-utils.h +include/evolution-%%VERSION%%/e-util/gconf-bridge.h +include/evolution-%%VERSION%%/em-format/em-format-quote.h +include/evolution-%%VERSION%%/em-format/em-format.h +include/evolution-%%VERSION%%/em-format/em-stripsig-filter.h +include/evolution-%%VERSION%%/filter/e-filter-code.h +include/evolution-%%VERSION%%/filter/e-filter-color.h +include/evolution-%%VERSION%%/filter/e-filter-datespec.h +include/evolution-%%VERSION%%/filter/e-filter-element.h +include/evolution-%%VERSION%%/filter/e-filter-file.h +include/evolution-%%VERSION%%/filter/e-filter-input.h +include/evolution-%%VERSION%%/filter/e-filter-int.h +include/evolution-%%VERSION%%/filter/e-filter-option.h +include/evolution-%%VERSION%%/filter/e-filter-part.h +include/evolution-%%VERSION%%/filter/e-filter-rule.h +include/evolution-%%VERSION%%/filter/e-rule-context.h +include/evolution-%%VERSION%%/filter/e-rule-editor.h +include/evolution-%%VERSION%%/mail/e-mail-attachment-bar.h +include/evolution-%%VERSION%%/mail/e-mail-backend.h +include/evolution-%%VERSION%%/mail/e-mail-browser.h +include/evolution-%%VERSION%%/mail/e-mail-display.h +include/evolution-%%VERSION%%/mail/e-mail-label-action.h +include/evolution-%%VERSION%%/mail/e-mail-label-dialog.h +include/evolution-%%VERSION%%/mail/e-mail-label-list-store.h +include/evolution-%%VERSION%%/mail/e-mail-label-manager.h +include/evolution-%%VERSION%%/mail/e-mail-label-tree-view.h +include/evolution-%%VERSION%%/mail/e-mail-local.h +include/evolution-%%VERSION%%/mail/e-mail-migrate.h +include/evolution-%%VERSION%%/mail/e-mail-reader-utils.h +include/evolution-%%VERSION%%/mail/e-mail-reader.h +include/evolution-%%VERSION%%/mail/e-mail-sidebar.h +include/evolution-%%VERSION%%/mail/e-mail-store.h +include/evolution-%%VERSION%%/mail/e-mail-tag-editor.h +include/evolution-%%VERSION%%/mail/em-account-editor.h +include/evolution-%%VERSION%%/mail/em-composer-utils.h +include/evolution-%%VERSION%%/mail/em-config.h +include/evolution-%%VERSION%%/mail/em-event.h +include/evolution-%%VERSION%%/mail/em-filter-context.h +include/evolution-%%VERSION%%/mail/em-filter-editor.h +include/evolution-%%VERSION%%/mail/em-filter-folder-element.h +include/evolution-%%VERSION%%/mail/em-filter-rule.h +include/evolution-%%VERSION%%/mail/em-filter-source-element.h +include/evolution-%%VERSION%%/mail/em-folder-properties.h +include/evolution-%%VERSION%%/mail/em-folder-selection-button.h +include/evolution-%%VERSION%%/mail/em-folder-selector.h +include/evolution-%%VERSION%%/mail/em-folder-tree-model.h +include/evolution-%%VERSION%%/mail/em-folder-tree.h +include/evolution-%%VERSION%%/mail/em-folder-utils.h +include/evolution-%%VERSION%%/mail/em-format-hook.h +include/evolution-%%VERSION%%/mail/em-format-html-display.h +include/evolution-%%VERSION%%/mail/em-format-html-print.h +include/evolution-%%VERSION%%/mail/em-format-html.h +include/evolution-%%VERSION%%/mail/em-html-stream.h +include/evolution-%%VERSION%%/mail/em-inline-filter.h +include/evolution-%%VERSION%%/mail/em-junk.h +include/evolution-%%VERSION%%/mail/em-search-context.h +include/evolution-%%VERSION%%/mail/em-subscribe-editor.h +include/evolution-%%VERSION%%/mail/em-sync-stream.h +include/evolution-%%VERSION%%/mail/em-utils.h +include/evolution-%%VERSION%%/mail/em-vfolder-context.h +include/evolution-%%VERSION%%/mail/em-vfolder-editor.h +include/evolution-%%VERSION%%/mail/em-vfolder-rule.h +include/evolution-%%VERSION%%/mail/mail-autofilter.h +include/evolution-%%VERSION%%/mail/mail-config.h +include/evolution-%%VERSION%%/mail/mail-folder-cache.h +include/evolution-%%VERSION%%/mail/mail-mt.h +include/evolution-%%VERSION%%/mail/mail-ops.h +include/evolution-%%VERSION%%/mail/mail-send-recv.h +include/evolution-%%VERSION%%/mail/mail-session.h +include/evolution-%%VERSION%%/mail/mail-tools.h +include/evolution-%%VERSION%%/mail/mail-vfolder.h +include/evolution-%%VERSION%%/mail/message-list.h +include/evolution-%%VERSION%%/menus/gal-define-views-dialog.h +include/evolution-%%VERSION%%/menus/gal-define-views-model.h +include/evolution-%%VERSION%%/menus/gal-view-collection.h +include/evolution-%%VERSION%%/menus/gal-view-etable.h +include/evolution-%%VERSION%%/menus/gal-view-factory-etable.h +include/evolution-%%VERSION%%/menus/gal-view-factory.h +include/evolution-%%VERSION%%/menus/gal-view-instance-save-as-dialog.h +include/evolution-%%VERSION%%/menus/gal-view-instance.h +include/evolution-%%VERSION%%/menus/gal-view-new-dialog.h +include/evolution-%%VERSION%%/menus/gal-view.h +include/evolution-%%VERSION%%/misc/e-account-combo-box.h +include/evolution-%%VERSION%%/misc/e-account-manager.h +include/evolution-%%VERSION%%/misc/e-account-tree-view.h +include/evolution-%%VERSION%%/misc/e-action-combo-box.h +include/evolution-%%VERSION%%/misc/e-activity-proxy.h +include/evolution-%%VERSION%%/misc/e-attachment-button.h +include/evolution-%%VERSION%%/misc/e-attachment-dialog.h +include/evolution-%%VERSION%%/misc/e-attachment-handler-image.h +include/evolution-%%VERSION%%/misc/e-attachment-handler-sendto.h +include/evolution-%%VERSION%%/misc/e-attachment-handler.h +include/evolution-%%VERSION%%/misc/e-attachment-icon-view.h +include/evolution-%%VERSION%%/misc/e-attachment-paned.h +include/evolution-%%VERSION%%/misc/e-attachment-store.h +include/evolution-%%VERSION%%/misc/e-attachment-tree-view.h +include/evolution-%%VERSION%%/misc/e-attachment-view.h +include/evolution-%%VERSION%%/misc/e-attachment.h +include/evolution-%%VERSION%%/misc/e-buffer-tagger.h +include/evolution-%%VERSION%%/misc/e-calendar-item.h +include/evolution-%%VERSION%%/misc/e-calendar.h +include/evolution-%%VERSION%%/misc/e-canvas-background.h +include/evolution-%%VERSION%%/misc/e-canvas-utils.h +include/evolution-%%VERSION%%/misc/e-canvas-vbox.h +include/evolution-%%VERSION%%/misc/e-canvas.h +include/evolution-%%VERSION%%/misc/e-cell-renderer-combo.h +include/evolution-%%VERSION%%/misc/e-charset-combo-box.h +include/evolution-%%VERSION%%/misc/e-combo-cell-editable.h +include/evolution-%%VERSION%%/misc/e-dateedit.h +include/evolution-%%VERSION%%/misc/e-focus-tracker.h +include/evolution-%%VERSION%%/misc/e-hinted-entry.h +include/evolution-%%VERSION%%/misc/e-hsv-utils.h +include/evolution-%%VERSION%%/misc/e-image-chooser.h +include/evolution-%%VERSION%%/misc/e-import-assistant.h +include/evolution-%%VERSION%%/misc/e-map.h +include/evolution-%%VERSION%%/misc/e-menu-tool-action.h +include/evolution-%%VERSION%%/misc/e-menu-tool-button.h +include/evolution-%%VERSION%%/misc/e-online-button.h +include/evolution-%%VERSION%%/misc/e-paned.h +%%PILOT%%include/evolution-%%VERSION%%/misc/e-pilot-settings.h +include/evolution-%%VERSION%%/misc/e-popup-action.h +include/evolution-%%VERSION%%/misc/e-popup-menu.h +include/evolution-%%VERSION%%/misc/e-preferences-window.h +include/evolution-%%VERSION%%/misc/e-preview-pane.h +include/evolution-%%VERSION%%/misc/e-printable.h +include/evolution-%%VERSION%%/misc/e-search-bar.h +include/evolution-%%VERSION%%/misc/e-searching-tokenizer.h +include/evolution-%%VERSION%%/misc/e-selectable.h +include/evolution-%%VERSION%%/misc/e-selection-model-array.h +include/evolution-%%VERSION%%/misc/e-selection-model-simple.h +include/evolution-%%VERSION%%/misc/e-selection-model.h +include/evolution-%%VERSION%%/misc/e-send-options.h +include/evolution-%%VERSION%%/misc/e-signature-combo-box.h +include/evolution-%%VERSION%%/misc/e-signature-editor.h +include/evolution-%%VERSION%%/misc/e-signature-manager.h +include/evolution-%%VERSION%%/misc/e-signature-preview.h +include/evolution-%%VERSION%%/misc/e-signature-script-dialog.h +include/evolution-%%VERSION%%/misc/e-signature-tree-view.h +include/evolution-%%VERSION%%/misc/e-web-view.h +include/evolution-%%VERSION%%/misc/e-web-view-preview.h +include/evolution-%%VERSION%%/misc/e-url-entry.h +include/evolution-%%VERSION%%/misc/ea-calendar-cell.h +include/evolution-%%VERSION%%/misc/ea-calendar-item.h +include/evolution-%%VERSION%%/misc/ea-cell-table.h +include/evolution-%%VERSION%%/misc/ea-widgets.h +include/evolution-%%VERSION%%/shell/e-shell-backend.h +include/evolution-%%VERSION%%/shell/e-shell-common.h +include/evolution-%%VERSION%%/shell/e-shell-content.h +include/evolution-%%VERSION%%/shell/e-shell-searchbar.h +include/evolution-%%VERSION%%/shell/e-shell-settings.h +include/evolution-%%VERSION%%/shell/e-shell-sidebar.h +include/evolution-%%VERSION%%/shell/e-shell-switcher.h +include/evolution-%%VERSION%%/shell/e-shell-taskbar.h +include/evolution-%%VERSION%%/shell/e-shell-utils.h +include/evolution-%%VERSION%%/shell/e-shell-view.h +include/evolution-%%VERSION%%/shell/e-shell-window-actions.h +include/evolution-%%VERSION%%/shell/e-shell-window.h +include/evolution-%%VERSION%%/shell/e-shell.h +include/evolution-%%VERSION%%/shell/es-event.h +include/evolution-%%VERSION%%/table/e-cell-checkbox.h +include/evolution-%%VERSION%%/table/e-cell-combo.h +include/evolution-%%VERSION%%/table/e-cell-date.h +include/evolution-%%VERSION%%/table/e-cell-date-edit.h +include/evolution-%%VERSION%%/table/e-cell-hbox.h +include/evolution-%%VERSION%%/table/e-cell-number.h +include/evolution-%%VERSION%%/table/e-cell-pixbuf.h +include/evolution-%%VERSION%%/table/e-cell-popup.h +include/evolution-%%VERSION%%/table/e-cell-percent.h +include/evolution-%%VERSION%%/table/e-cell-size.h +include/evolution-%%VERSION%%/table/e-cell-text.h +include/evolution-%%VERSION%%/table/e-cell-toggle.h +include/evolution-%%VERSION%%/table/e-cell-tree.h +include/evolution-%%VERSION%%/table/e-cell-vbox.h +include/evolution-%%VERSION%%/table/e-cell.h +include/evolution-%%VERSION%%/table/e-table-click-to-add.h +include/evolution-%%VERSION%%/table/e-table-col-dnd.h +include/evolution-%%VERSION%%/table/e-table-col.h +include/evolution-%%VERSION%%/table/e-table-column-specification.h +include/evolution-%%VERSION%%/table/e-table-config.h +include/evolution-%%VERSION%%/table/e-table-defines.h +include/evolution-%%VERSION%%/table/e-table-extras.h +include/evolution-%%VERSION%%/table/e-table-field-chooser-dialog.h +include/evolution-%%VERSION%%/table/e-table-field-chooser-item.h +include/evolution-%%VERSION%%/table/e-table-field-chooser.h +include/evolution-%%VERSION%%/table/e-table-group-container.h +include/evolution-%%VERSION%%/table/e-table-group-leaf.h +include/evolution-%%VERSION%%/table/e-table-group.h +include/evolution-%%VERSION%%/table/e-table-header-item.h +include/evolution-%%VERSION%%/table/e-table-header-utils.h +include/evolution-%%VERSION%%/table/e-table-header.h +include/evolution-%%VERSION%%/table/e-table-item.h +include/evolution-%%VERSION%%/table/e-table-memory-callbacks.h +include/evolution-%%VERSION%%/table/e-table-memory-store.h +include/evolution-%%VERSION%%/table/e-table-memory.h +include/evolution-%%VERSION%%/table/e-table-model.h +include/evolution-%%VERSION%%/table/e-table-one.h +include/evolution-%%VERSION%%/table/e-table-search.h +include/evolution-%%VERSION%%/table/e-table-selection-model.h +include/evolution-%%VERSION%%/table/e-table-sort-info.h +include/evolution-%%VERSION%%/table/e-table-sorted-variable.h +include/evolution-%%VERSION%%/table/e-table-sorted.h +include/evolution-%%VERSION%%/table/e-table-sorter.h +include/evolution-%%VERSION%%/table/e-table-sorting-utils.h +include/evolution-%%VERSION%%/table/e-table-specification.h +include/evolution-%%VERSION%%/table/e-table-state.h +include/evolution-%%VERSION%%/table/e-table-subset-variable.h +include/evolution-%%VERSION%%/table/e-table-subset.h +include/evolution-%%VERSION%%/table/e-table-utils.h +include/evolution-%%VERSION%%/table/e-table-without.h +include/evolution-%%VERSION%%/table/e-table.h +include/evolution-%%VERSION%%/table/e-tree-memory-callbacks.h +include/evolution-%%VERSION%%/table/e-tree-memory.h +include/evolution-%%VERSION%%/table/e-tree-model.h +include/evolution-%%VERSION%%/table/e-tree-selection-model.h +include/evolution-%%VERSION%%/table/e-tree-sorted.h +include/evolution-%%VERSION%%/table/e-tree-table-adapter.h +include/evolution-%%VERSION%%/table/e-tree.h +include/evolution-%%VERSION%%/table/gal-a11y-e-cell-popup.h +include/evolution-%%VERSION%%/table/gal-a11y-e-cell-registry.h +include/evolution-%%VERSION%%/table/gal-a11y-e-cell-text.h +include/evolution-%%VERSION%%/table/gal-a11y-e-cell-toggle.h +include/evolution-%%VERSION%%/table/gal-a11y-e-cell-tree.h +include/evolution-%%VERSION%%/table/gal-a11y-e-cell-vbox.h +include/evolution-%%VERSION%%/table/gal-a11y-e-cell.h +include/evolution-%%VERSION%%/table/gal-a11y-e-table-click-to-add-factory.h +include/evolution-%%VERSION%%/table/gal-a11y-e-table-click-to-add.h +include/evolution-%%VERSION%%/table/gal-a11y-e-table-column-header.h +include/evolution-%%VERSION%%/table/gal-a11y-e-table-factory.h +include/evolution-%%VERSION%%/table/gal-a11y-e-table-item-factory.h +include/evolution-%%VERSION%%/table/gal-a11y-e-table-item.h +include/evolution-%%VERSION%%/table/gal-a11y-e-table.h +include/evolution-%%VERSION%%/table/gal-a11y-e-tree-factory.h +include/evolution-%%VERSION%%/table/gal-a11y-e-tree.h +include/evolution-%%VERSION%%/text/e-reflow-model.h +include/evolution-%%VERSION%%/text/e-reflow.h +include/evolution-%%VERSION%%/text/e-text-model-repos.h +include/evolution-%%VERSION%%/text/e-text-model.h +include/evolution-%%VERSION%%/text/e-text.h +include/evolution-%%VERSION%%/text/gal-a11y-e-text-factory.h +include/evolution-%%VERSION%%/text/gal-a11y-e-text.h +%%PILOT%%lib/evolution/%%VERSION%%/conduits/libeaddress_conduit.a +%%PILOT%%lib/evolution/%%VERSION%%/conduits/libeaddress_conduit.la +%%PILOT%%lib/evolution/%%VERSION%%/conduits/libeaddress_conduit.so +%%PILOT%%lib/evolution/%%VERSION%%/conduits/libecalendar_conduit.a +%%PILOT%%lib/evolution/%%VERSION%%/conduits/libecalendar_conduit.la +%%PILOT%%lib/evolution/%%VERSION%%/conduits/libecalendar_conduit.so +%%PILOT%%lib/evolution/%%VERSION%%/conduits/libecalendar_common_conduit.a +%%PILOT%%lib/evolution/%%VERSION%%/conduits/libecalendar_common_conduit.la +%%PILOT%%lib/evolution/%%VERSION%%/conduits/libecalendar_common_conduit.so +%%PILOT%%lib/evolution/%%VERSION%%/conduits/libememo_conduit.a +%%PILOT%%lib/evolution/%%VERSION%%/conduits/libememo_conduit.la +%%PILOT%%lib/evolution/%%VERSION%%/conduits/libememo_conduit.so +%%PILOT%%lib/evolution/%%VERSION%%/conduits/libetodo_conduit.a +%%PILOT%%lib/evolution/%%VERSION%%/conduits/libetodo_conduit.la +%%PILOT%%lib/evolution/%%VERSION%%/conduits/libetodo_conduit.so +lib/evolution/%%VERSION%%/libeabutil.a +lib/evolution/%%VERSION%%/libeabutil.la +lib/evolution/%%VERSION%%/libeabutil.so +lib/evolution/%%VERSION%%/libeabutil.so.0 +lib/evolution/%%VERSION%%/libcomposer.a +lib/evolution/%%VERSION%%/libcomposer.la +lib/evolution/%%VERSION%%/libcomposer.so +lib/evolution/%%VERSION%%/libcomposer.so.0 +lib/evolution/%%VERSION%%/libeconduit.a +lib/evolution/%%VERSION%%/libeconduit.la +lib/evolution/%%VERSION%%/libeconduit.so +lib/evolution/%%VERSION%%/libeconduit.so.0 +lib/evolution/%%VERSION%%/libecontacteditor.a +lib/evolution/%%VERSION%%/libecontacteditor.la +lib/evolution/%%VERSION%%/libecontacteditor.so +lib/evolution/%%VERSION%%/libecontacteditor.so.0 +lib/evolution/%%VERSION%%/libecontactlisteditor.a +lib/evolution/%%VERSION%%/libecontactlisteditor.la +lib/evolution/%%VERSION%%/libecontactlisteditor.so +lib/evolution/%%VERSION%%/libecontactlisteditor.so.0 +lib/evolution/%%VERSION%%/libemformat.a +lib/evolution/%%VERSION%%/libemformat.la +lib/evolution/%%VERSION%%/libemformat.so +lib/evolution/%%VERSION%%/libemformat.so.0 +lib/evolution/%%VERSION%%/libemiscwidgets.a +lib/evolution/%%VERSION%%/libemiscwidgets.la +lib/evolution/%%VERSION%%/libemiscwidgets.so +lib/evolution/%%VERSION%%/libemiscwidgets.so.0 +lib/evolution/%%VERSION%%/libeshell.a +lib/evolution/%%VERSION%%/libeshell.la +lib/evolution/%%VERSION%%/libeshell.so +lib/evolution/%%VERSION%%/libeshell.so.0 +lib/evolution/%%VERSION%%/libessmime.a +lib/evolution/%%VERSION%%/libessmime.la +lib/evolution/%%VERSION%%/libessmime.so +lib/evolution/%%VERSION%%/libessmime.so.0 +lib/evolution/%%VERSION%%/libetable.a +lib/evolution/%%VERSION%%/libetable.la +lib/evolution/%%VERSION%%/libetable.so +lib/evolution/%%VERSION%%/libetable.so.0 +lib/evolution/%%VERSION%%/libetext.a +lib/evolution/%%VERSION%%/libetext.la +lib/evolution/%%VERSION%%/libetext.so +lib/evolution/%%VERSION%%/libetext.so.0 +lib/evolution/%%VERSION%%/libetimezonedialog.a +lib/evolution/%%VERSION%%/libetimezonedialog.la +lib/evolution/%%VERSION%%/libetimezonedialog.so +lib/evolution/%%VERSION%%/libetimezonedialog.so.0 +lib/evolution/%%VERSION%%/libeutil.a +lib/evolution/%%VERSION%%/libeutil.la +lib/evolution/%%VERSION%%/libeutil.so +lib/evolution/%%VERSION%%/libeutil.so.0 +lib/evolution/%%VERSION%%/libevolution-a11y.a +lib/evolution/%%VERSION%%/libevolution-a11y.la +lib/evolution/%%VERSION%%/libevolution-a11y.so +lib/evolution/%%VERSION%%/libevolution-a11y.so.0 +lib/evolution/%%VERSION%%/libevolution-addressbook-importers.a +lib/evolution/%%VERSION%%/libevolution-addressbook-importers.la +lib/evolution/%%VERSION%%/libevolution-addressbook-importers.so +lib/evolution/%%VERSION%%/libevolution-addressbook-importers.so.0 +lib/evolution/%%VERSION%%/libevolution-calendar.a +lib/evolution/%%VERSION%%/libevolution-calendar.la +lib/evolution/%%VERSION%%/libevolution-calendar.so +lib/evolution/%%VERSION%%/libevolution-calendar.so.0 +lib/evolution/%%VERSION%%/libevolution-calendar-importers.a +lib/evolution/%%VERSION%%/libevolution-calendar-importers.la +lib/evolution/%%VERSION%%/libevolution-calendar-importers.so +lib/evolution/%%VERSION%%/libevolution-calendar-importers.so.0 +lib/evolution/%%VERSION%%/libevolution-mail.a +lib/evolution/%%VERSION%%/libevolution-mail.la +lib/evolution/%%VERSION%%/libevolution-mail.so +lib/evolution/%%VERSION%%/libevolution-mail.so.0 +lib/evolution/%%VERSION%%/libevolution-mail-importers.a +lib/evolution/%%VERSION%%/libevolution-mail-importers.la +lib/evolution/%%VERSION%%/libevolution-mail-importers.so +lib/evolution/%%VERSION%%/libevolution-mail-importers.so.0 +lib/evolution/%%VERSION%%/libevolution-mail-settings.a +lib/evolution/%%VERSION%%/libevolution-mail-settings.la +lib/evolution/%%VERSION%%/libevolution-mail-settings.so +lib/evolution/%%VERSION%%/libevolution-mail-settings.so.0 +lib/evolution/%%VERSION%%/libevolution-smime.a +lib/evolution/%%VERSION%%/libevolution-smime.la +lib/evolution/%%VERSION%%/libevolution-smime.so +lib/evolution/%%VERSION%%/libevolution-smime.so.0 +lib/evolution/%%VERSION%%/libfilter.a +lib/evolution/%%VERSION%%/libfilter.la +lib/evolution/%%VERSION%%/libfilter.so +lib/evolution/%%VERSION%%/libfilter.so.0 +lib/evolution/%%VERSION%%/libmenus.a +lib/evolution/%%VERSION%%/libmenus.la +lib/evolution/%%VERSION%%/libmenus.so +lib/evolution/%%VERSION%%/libmenus.so.0 +lib/evolution/%%VERSION%%/modules/libevolution-module-mailto-handler.a +lib/evolution/%%VERSION%%/modules/libevolution-module-mailto-handler.la +lib/evolution/%%VERSION%%/modules/libevolution-module-mailto-handler.so +lib/evolution/%%VERSION%%/modules/libevolution-module-addressbook.a +lib/evolution/%%VERSION%%/modules/libevolution-module-addressbook.la +lib/evolution/%%VERSION%%/modules/libevolution-module-addressbook.so +lib/evolution/%%VERSION%%/modules/libevolution-module-calendar.a +lib/evolution/%%VERSION%%/modules/libevolution-module-calendar.la +lib/evolution/%%VERSION%%/modules/libevolution-module-calendar.so +lib/evolution/%%VERSION%%/modules/libevolution-module-mail.a +lib/evolution/%%VERSION%%/modules/libevolution-module-mail.la +lib/evolution/%%VERSION%%/modules/libevolution-module-mail.so +lib/evolution/%%VERSION%%/modules/libevolution-module-plugin-lib.a +lib/evolution/%%VERSION%%/modules/libevolution-module-plugin-lib.la +lib/evolution/%%VERSION%%/modules/libevolution-module-plugin-lib.so +lib/evolution/%%VERSION%%/modules/libevolution-module-startup-wizard.a +lib/evolution/%%VERSION%%/modules/libevolution-module-startup-wizard.la +lib/evolution/%%VERSION%%/modules/libevolution-module-startup-wizard.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-addressbook-file.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-addressbook-file.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-addressbook-file.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-audio-inline.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-audio-inline.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-audio-inline.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-backup-restore.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-backup-restore.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-backup-restore.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-bogo-junk-plugin.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-bogo-junk-plugin.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-bogo-junk-plugin.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-file.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-file.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-file.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-http.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-http.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-http.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-weather.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-weather.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-weather.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-default-source.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-default-source.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-default-source.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-email-custom-header.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-email-custom-header.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-email-custom-header.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-attachment-reminder.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-attachment-reminder.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-attachment-reminder.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-bbdb.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-bbdb.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-bbdb.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-caldav.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-caldav.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-caldav.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-google.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-google.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-google.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-webdav.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-webdav.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-webdav.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-groupwise-features.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-groupwise-features.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-groupwise-features.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-image-inline.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-image-inline.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-image-inline.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-imap-features.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-imap-features.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-imap-features.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-itip-formatter.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-itip-formatter.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-itip-formatter.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-mail-notification.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-mail-notification.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-mail-notification.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-mail-to-task.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-mail-to-task.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-mail-to-task.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-mailing-list-actions.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-mailing-list-actions.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-mailing-list-actions.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-mark-all-read.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-mark-all-read.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-mark-all-read.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-plugin-manager.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-plugin-manager.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-plugin-manager.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-prefer-plain.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-prefer-plain.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-prefer-plain.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-publish-calendar.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-publish-calendar.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-publish-calendar.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-sa-junk-plugin.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-sa-junk-plugin.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-sa-junk-plugin.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-save-calendar.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-save-calendar.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-save-calendar.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-subject-thread.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-subject-thread.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-subject-thread.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-templates.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-templates.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-templates.so +lib/evolution/%%VERSION%%/plugins/liborg-gnome-vcard-inline.a +lib/evolution/%%VERSION%%/plugins/liborg-gnome-vcard-inline.la +lib/evolution/%%VERSION%%/plugins/liborg-gnome-vcard-inline.so +lib/evolution/%%VERSION%%/plugins/org-gnome-addressbook-file.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-audio-inline.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-backup-restore.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-bogo-junk-plugin.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-calendar-file.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-calendar-http.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-calendar-weather.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-compose-send-options.xml +lib/evolution/%%VERSION%%/plugins/org-gnome-default-source.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-email-custom-header.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-evolution-attachment-reminder.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-evolution-bbdb.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-evolution-caldav.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-evolution-google.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-evolution-webdav.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-groupwise-features.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-image-inline.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-imap-features.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-itip-formatter.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-mail-notification.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-mail-to-task.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-mailing-list-actions.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-mark-all-read.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-plugin-manager.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-prefer-plain.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-publish-calendar.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-sa-junk-plugin.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-save-calendar.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-subject-thread.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-templates.eplug +lib/evolution/%%VERSION%%/plugins/org-gnome-vcard-inline.eplug +libdata/pkgconfig/evolution-calendar.pc +libdata/pkgconfig/evolution-mail.pc +libdata/pkgconfig/evolution-plugin.pc +libdata/pkgconfig/evolution-shell.pc +libexec/evolution/%%VERSION%%/csv2vcard +libexec/evolution/%%VERSION%%/evolution-addressbook-clean +libexec/evolution/%%VERSION%%/evolution-addressbook-export +libexec/evolution/%%VERSION%%/evolution-alarm-notify +libexec/evolution/%%VERSION%%/evolution-backup +libexec/evolution/%%VERSION%%/killev +share/applications/evolution.desktop +share/applications/evolution-settings.desktop +share/doc/eshell/EExtensible.html +share/doc/eshell/EExtension.html +share/doc/eshell/EModule.html +share/doc/eshell/EShell.html +share/doc/eshell/EShellBackend.html +share/doc/eshell/EShellContent.html +share/doc/eshell/EShellSearchbar.html +share/doc/eshell/EShellSettings.html +share/doc/eshell/EShellSidebar.html +share/doc/eshell/EShellSwitcher.html +share/doc/eshell/EShellTaskbar.html +share/doc/eshell/EShellView.html +share/doc/eshell/EShellWindow.html +share/doc/eshell/ch01.html +share/doc/eshell/ch02.html +share/doc/eshell/ch03.html +share/doc/eshell/ch04.html +share/doc/eshell/ch05.html +share/doc/eshell/eshell-Action-Groups.html +share/doc/eshell/eshell-Bit-Arrays-(Legacy).html +share/doc/eshell/eshell-Categories.html +share/doc/eshell/eshell-Container-for-Signatures.html +share/doc/eshell/eshell-Date-and-Time-Formatting.html +share/doc/eshell/eshell-Dialog-Utilities-(Legacy).html +share/doc/eshell/eshell-EPoolv.html +share/doc/eshell/eshell-Error-Logging.html +share/doc/eshell/eshell-GConf-Bridge.html +share/doc/eshell/eshell-GObject-Property-Bindings.html +share/doc/eshell/eshell-Icon-Utilities-(Legacy).html +share/doc/eshell/eshell-Mail-Accounts.html +share/doc/eshell/eshell-Miscellaneous-Utilities.html +share/doc/eshell/eshell-More-Signature-Utilities.html +share/doc/eshell/eshell-Personalized-Signatures.html +share/doc/eshell/eshell-Printing.html +share/doc/eshell/eshell-Reading-and-Writing-XML.html +share/doc/eshell/eshell-Selections.html +share/doc/eshell/eshell-Shell-Actions.html +share/doc/eshell/eshell-Shell-Utilities.html +share/doc/eshell/eshell-Text-to-HTML-Conversion.html +share/doc/eshell/eshell-User-Alert-Handling.html +share/doc/eshell/eshell.devhelp +share/doc/eshell/eshell.devhelp2 +share/doc/eshell/home.png +share/doc/eshell/index.html +share/doc/eshell/index.sgml +share/doc/eshell/ix01.html +share/doc/eshell/left.png +share/doc/eshell/right.png +share/doc/eshell/style.css +share/doc/eshell/up.png +%%DATADIR%%/%%VERSION%%/addresstypes.xml +%%DATADIR%%/%%VERSION%%/caltypes.xml +%%DATADIR%%/%%VERSION%%/default/C/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/ca/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/cs/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/de/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/es/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/fi/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/fr/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/hu/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/it/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/ja/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/ko/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/lt/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/mk/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/nl/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/pl/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/pt/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/ro/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/sr/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/sr@latin/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/sv/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/default/zh_CN/mail/local/Inbox +%%DATADIR%%/%%VERSION%%/ecps/medbook.ecps +%%DATADIR%%/%%VERSION%%/ecps/phonelist.ecps +%%DATADIR%%/%%VERSION%%/ecps/smallbook.ecps +%%DATADIR%%/%%VERSION%%/errors/addressbook.error +%%DATADIR%%/%%VERSION%%/errors/calendar.error +%%DATADIR%%/%%VERSION%%/errors/e-system.error +%%DATADIR%%/%%VERSION%%/errors/filter.error +%%DATADIR%%/%%VERSION%%/errors/mail-composer.error +%%DATADIR%%/%%VERSION%%/errors/mail.error +%%DATADIR%%/%%VERSION%%/errors/org-gnome-attachment-reminder.error +%%DATADIR%%/%%VERSION%%/errors/org-gnome-backup-restore.error +%%DATADIR%%/%%VERSION%%/errors/org-gnome-itip-formatter.error +%%DATADIR%%/%%VERSION%%/errors/org-gnome-mail-retract.error +%%DATADIR%%/%%VERSION%%/errors/org-gnome-mailing-list-actions.error +%%DATADIR%%/%%VERSION%%/errors/org-gnome-process-meeting.error +%%DATADIR%%/%%VERSION%%/errors/org-gnome-proxy-login.error +%%DATADIR%%/%%VERSION%%/errors/org-gnome-proxy.error +%%DATADIR%%/%%VERSION%%/errors/org-gnome-shared-folder.error +%%DATADIR%%/%%VERSION%%/errors/shell.error +%%DATADIR%%/%%VERSION%%/etspec/e-addressbook-view.etspec +%%DATADIR%%/%%VERSION%%/etspec/e-cal-list-view.etspec +%%DATADIR%%/%%VERSION%%/etspec/e-calendar-table.etspec +%%DATADIR%%/%%VERSION%%/etspec/e-meeting-time-sel.etspec +%%DATADIR%%/%%VERSION%%/etspec/e-memo-table.etspec +%%DATADIR%%/%%VERSION%%/etspec/message-list.etspec +%%DATADIR%%/%%VERSION%%/filtertypes.xml +%%DATADIR%%/%%VERSION%%/help/quickref/C/quickref.pdf +%%DATADIR%%/%%VERSION%%/help/quickref/ca/quickref.pdf +%%DATADIR%%/%%VERSION%%/help/quickref/cs/quickref.pdf +%%DATADIR%%/%%VERSION%%/help/quickref/de/quickref.pdf +%%DATADIR%%/%%VERSION%%/help/quickref/es/quickref.pdf +%%DATADIR%%/%%VERSION%%/help/quickref/fr/quickref.pdf +%%DATADIR%%/%%VERSION%%/help/quickref/hu/quickref.pdf +%%DATADIR%%/%%VERSION%%/help/quickref/it/quickref.pdf +%%DATADIR%%/%%VERSION%%/help/quickref/pl/quickref.pdf +%%DATADIR%%/%%VERSION%%/help/quickref/pt/quickref.pdf +%%DATADIR%%/%%VERSION%%/help/quickref/sq/quickref.pdf +%%DATADIR%%/%%VERSION%%/help/quickref/sv/quickref.pdf +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/folder-copy.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/folder-move.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/go-today.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/mail-copy.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/mail-move.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/view-calendar-day.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/view-calendar-list.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/view-calendar-month.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/view-calendar-week.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/view-calendar-workweek.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_bell.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_contact-list.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_insert-note.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_insert-rule.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_insert-table.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_mail-filters-apply.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_mail-flag-for-followup-done.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_mail-flag-for-followup.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_mail-open-multiple.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_mail-unread-multiple.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_new-24h-appointment.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_new-meeting.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_notes.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_people.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_shared-by-me.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_shared-to-me.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_show-all.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_task-assigned-to.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_task-assigned.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_task-recurring.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_task.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_text-monospaced.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_timezone.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_todo.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_video-conferencing.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/stock_view-details.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/apps/contact-editor.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/places/mail-inbox.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/places/mail-outbox.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/places/mail-sent.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/status/stock_check-filled.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/status/stock_score-high.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/status/stock_score-higher.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/status/stock_score-highest.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/status/stock_score-low.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/status/stock_score-lower.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/status/stock_score-lowest.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/status/stock_score-normal.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/status/stock_signature-bad.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/status/stock_signature-ok.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/status/stock_signature.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/status/wrapped.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/actions/go-today.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/actions/view-calendar-day.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/actions/view-calendar-list.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/actions/view-calendar-month.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/actions/view-calendar-week.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/actions/view-calendar-workweek.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_contact-list.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_insert-note.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_insert-rule.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_insert-table.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_mail-filters-apply.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_mail-open-multiple.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_mail-unread-multiple.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_new-24h-appointment.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_new-meeting.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_notes.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_people.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_shared-by-me.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_shared-to-me.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_show-all.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_task-assigned-to.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_task-assigned.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_task-recurring.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_task.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_text-monospaced.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_timezone.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_todo.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/stock_video-conferencing.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/apps/contact-editor.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/places/mail-inbox.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/places/mail-outbox.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/places/mail-sent.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/go-today.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/query-free-busy.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/view-calendar-day.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/view-calendar-list.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/view-calendar-month.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/view-calendar-week.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/view-calendar-workweek.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/apps/contact-editor.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/places/mail-inbox.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/places/mail-outbox.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/places/mail-sent.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/status/stock_signature-bad.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/status/stock_signature-ok.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/status/stock_signature.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/actions/view-calendar-day.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/actions/view-calendar-list.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/actions/view-calendar-month.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/actions/view-calendar-week.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/actions/view-calendar-workweek.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/apps/contact-editor.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/status/offline.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/status/online.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/actions/stock_alarm.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/actions/stock_mail-flag-for-followup-done.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/actions/stock_mail-flag-for-followup.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/actions/stock_new-24h-appointment.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/actions/stock_new-meeting.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/actions/stock_notes.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/actions/stock_people.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/actions/stock_timezone.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/actions/stock_todo.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/apps/contact-editor.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories/preferences-autocompletion.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories/preferences-calendar-and-tasks.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories/preferences-certificates.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories/preferences-composer.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories/preferences-mail-accounts.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories/preferences-mail.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories/preferences-system-network-proxy.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/status/stock_signature-bad.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/status/stock_signature-ok.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/status/stock_signature.png +%%DATADIR%%/%%VERSION%%/icons/hicolor/scalable/actions/view-calendar-day.svg +%%DATADIR%%/%%VERSION%%/icons/hicolor/scalable/actions/view-calendar-list.svg +%%DATADIR%%/%%VERSION%%/icons/hicolor/scalable/actions/view-calendar-month.svg +%%DATADIR%%/%%VERSION%%/icons/hicolor/scalable/actions/view-calendar-week.svg +%%DATADIR%%/%%VERSION%%/icons/hicolor/scalable/actions/view-calendar-workweek.svg +%%DATADIR%%/%%VERSION%%/images/minus.png +%%DATADIR%%/%%VERSION%%/images/plus.png +%%DATADIR%%/%%VERSION%%/images/world_map-960.png +%%DATADIR%%/%%VERSION%%/mail-autoconfig/a.memail.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/abc.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/agate.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/amail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/amber.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/amethyst.broba.cc +%%DATADIR%%/%%VERSION%%/mail-autoconfig/aol.com +%%DATADIR%%/%%VERSION%%/mail-autoconfig/apost.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/aqua.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/arcor.de +%%DATADIR%%/%%VERSION%%/mail-autoconfig/ballade.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/bay.gunmanet.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/bb-niigata.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/bc.iij4u.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/beige.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/blue.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/bmail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/bolero.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/bpost.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/brown.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/camel.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/cameo.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/cc9.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/cek.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/clio.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/cmail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/co1.wind.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/co2.wind.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/co3.wind.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/cocoa.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/coda.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/comcast.net +%%DATADIR%%/%%VERSION%%/mail-autoconfig/concerto.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/coral.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/courante.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/cpost.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/cream.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/dan.gunmanet.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/dance.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/dmail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/e23.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/earthlink.net +%%DATADIR%%/%%VERSION%%/mail-autoconfig/ebony.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/email.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/fantasy.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/flamenco.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/fmail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/free.fr +%%DATADIR%%/%%VERSION%%/mail-autoconfig/freenet.de +%%DATADIR%%/%%VERSION%%/mail-autoconfig/fuga.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/gmail.com +%%DATADIR%%/%%VERSION%%/mail-autoconfig/gmail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/gmx.com +%%DATADIR%%/%%VERSION%%/mail-autoconfig/gmx.net +%%DATADIR%%/%%VERSION%%/mail-autoconfig/go.tvm.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/goo.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/googlemail.com +%%DATADIR%%/%%VERSION%%/mail-autoconfig/grape.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/gray.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/hal.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/hana.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/hotmail.co.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/hotmail.co.uk +%%DATADIR%%/%%VERSION%%/mail-autoconfig/hotmail.com +%%DATADIR%%/%%VERSION%%/mail-autoconfig/hotmail.de +%%DATADIR%%/%%VERSION%%/mail-autoconfig/hotmail.fr +%%DATADIR%%/%%VERSION%%/mail-autoconfig/hotmail.it +%%DATADIR%%/%%VERSION%%/mail-autoconfig/ic-net.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/iiyama-catv.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/imail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/inbox.lt +%%DATADIR%%/%%VERSION%%/mail-autoconfig/inbox.lv +%%DATADIR%%/%%VERSION%%/mail-autoconfig/indigo.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/inet-shibata.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/ivory.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/iwafune.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/jade.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/janis.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/jet.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/ji.jet.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/jmail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/k1.wind.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/khaki.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/kmail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/kokuyou.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/lapis.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/laposte.net +%%DATADIR%%/%%VERSION%%/mail-autoconfig/lemon.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/lilac.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/lime.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/live.co.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/live.co.uk +%%DATADIR%%/%%VERSION%%/mail-autoconfig/live.com +%%DATADIR%%/%%VERSION%%/mail-autoconfig/live.de +%%DATADIR%%/%%VERSION%%/mail-autoconfig/live.fr +%%DATADIR%%/%%VERSION%%/mail-autoconfig/live.it +%%DATADIR%%/%%VERSION%%/mail-autoconfig/ma100.tiki.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/mac.com +%%DATADIR%%/%%VERSION%%/mail-autoconfig/mahoroba.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/mail.gunmanet.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/mail.iwafune.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/maroon.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/me.com +%%DATADIR%%/%%VERSION%%/mail-autoconfig/minuet.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/ml.murakami.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/ml.shibata.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/mnet.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/mopera.net +%%DATADIR%%/%%VERSION%%/mail-autoconfig/msn.com +%%DATADIR%%/%%VERSION%%/mail-autoconfig/navy.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/nifty.com +%%DATADIR%%/%%VERSION%%/mail-autoconfig/nsat.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/olive.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/online.de +%%DATADIR%%/%%VERSION%%/mail-autoconfig/opal.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/orange.fr +%%DATADIR%%/%%VERSION%%/mail-autoconfig/orange.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/orchid.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/pal.kijimadaira.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/palette.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/parabox.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/peach.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/peoplepc.com +%%DATADIR%%/%%VERSION%%/mail-autoconfig/plum.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/po.dcn.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/po.wind.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/polka.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/pop.shibata.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/purple.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/rainbow.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/red.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/rmail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/rondo.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/rose.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/rouge.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/ruby.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/sakunet.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/sea.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/sepia.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/serenade.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/silk.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/silver.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/sky.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/smail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/snow.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/so.wind.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/sonata.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/suite.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/symphony.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/t-online.de +%%DATADIR%%/%%VERSION%%/mail-autoconfig/taupe.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/tiki.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/tmail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/toccata.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/topaz.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/trio.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/umail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/verizon.net +%%DATADIR%%/%%VERSION%%/mail-autoconfig/violet.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/vm.aikis.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/vmail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/vp.tiki.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/waltz.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/wanadoo.fr +%%DATADIR%%/%%VERSION%%/mail-autoconfig/wave.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/web.de +%%DATADIR%%/%%VERSION%%/mail-autoconfig/white.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/wine.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/wmail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/xmail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/xp.wind.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/xpost.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/xs4all.nl +%%DATADIR%%/%%VERSION%%/mail-autoconfig/yahoo.com +%%DATADIR%%/%%VERSION%%/mail-autoconfig/ybb.ne.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/yellow.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/ymail.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/ypost.plala.or.jp +%%DATADIR%%/%%VERSION%%/mail-autoconfig/zmail.plala.or.jp +%%DATADIR%%/%%VERSION%%/memotypes.xml +%%DATADIR%%/%%VERSION%%/searchtypes.xml +%%DATADIR%%/%%VERSION%%/sounds/default_alarm.wav +%%DATADIR%%/%%VERSION%%/tasktypes.xml +%%DATADIR%%/%%VERSION%%/ui/alarm-dialog.ui +%%DATADIR%%/%%VERSION%%/ui/alarm-list-dialog.ui +%%DATADIR%%/%%VERSION%%/ui/alarm-notify.ui +%%DATADIR%%/%%VERSION%%/ui/cal-prefs-dialog.ui +%%DATADIR%%/%%VERSION%%/ui/contact-editor.ui +%%DATADIR%%/%%VERSION%%/ui/contact-list-editor.ui +%%DATADIR%%/%%VERSION%%/ui/e-delegate-dialog.ui +%%DATADIR%%/%%VERSION%%/ui/e-itip-control.ui +%%DATADIR%%/%%VERSION%%/ui/e-send-options.ui +%%DATADIR%%/%%VERSION%%/ui/e-table-config.ui +%%DATADIR%%/%%VERSION%%/ui/e-timezone-dialog.ui +%%DATADIR%%/%%VERSION%%/ui/eab-contact-commit-duplicate-detected.ui +%%DATADIR%%/%%VERSION%%/ui/eab-contact-duplicate-detected.ui +%%DATADIR%%/%%VERSION%%/ui/event-page.ui +%%DATADIR%%/%%VERSION%%/ui/evolution-calendars.ui +%%DATADIR%%/%%VERSION%%/ui/evolution-composer.ui +%%DATADIR%%/%%VERSION%%/ui/evolution-contacts.ui +%%DATADIR%%/%%VERSION%%/ui/evolution-mail-reader.ui +%%DATADIR%%/%%VERSION%%/ui/evolution-mail.ui +%%DATADIR%%/%%VERSION%%/ui/evolution-memos.ui +%%DATADIR%%/%%VERSION%%/ui/evolution-shell.ui +%%DATADIR%%/%%VERSION%%/ui/evolution-tasks.ui +%%DATADIR%%/%%VERSION%%/ui/filter.ui +%%DATADIR%%/%%VERSION%%/ui/fullname.ui +%%DATADIR%%/%%VERSION%%/ui/gal-define-views.ui +%%DATADIR%%/%%VERSION%%/ui/gal-view-instance-save-as-dialog.ui +%%DATADIR%%/%%VERSION%%/ui/gal-view-new-dialog.ui +%%DATADIR%%/%%VERSION%%/ui/goto-dialog.ui +%%DATADIR%%/%%VERSION%%/ui/imap-headers.ui +%%DATADIR%%/%%VERSION%%/ui/junk-settings.ui +%%DATADIR%%/%%VERSION%%/ui/ldap-config.ui +%%DATADIR%%/%%VERSION%%/ui/mail-config.ui +%%DATADIR%%/%%VERSION%%/ui/mail-dialogs.ui +%%DATADIR%%/%%VERSION%%/ui/memo-page.ui +%%DATADIR%%/%%VERSION%%/ui/org-gnome-email-custom-header.ui +%%DATADIR%%/%%VERSION%%/ui/properties.ui +%%DATADIR%%/%%VERSION%%/ui/proxy-add-dialog.ui +%%DATADIR%%/%%VERSION%%/ui/proxy-listing.ui +%%DATADIR%%/%%VERSION%%/ui/proxy-login-dialog.ui +%%DATADIR%%/%%VERSION%%/ui/publish-calendar.ui +%%DATADIR%%/%%VERSION%%/ui/recurrence-page.ui +%%DATADIR%%/%%VERSION%%/ui/schedule-page.ui +%%DATADIR%%/%%VERSION%%/ui/smime-ui.ui +%%DATADIR%%/%%VERSION%%/ui/task-details-page.ui +%%DATADIR%%/%%VERSION%%/ui/task-page.ui +%%DATADIR%%/%%VERSION%%/vfoldertypes.xml +%%DATADIR%%/%%VERSION%%/views/addressbook/Address_Cards.galview +%%DATADIR%%/%%VERSION%%/views/addressbook/By_Company.galview +%%DATADIR%%/%%VERSION%%/views/addressbook/Phone_List.galview +%%DATADIR%%/%%VERSION%%/views/addressbook/galview.xml +%%DATADIR%%/%%VERSION%%/views/calendar/List_View.galview +%%DATADIR%%/%%VERSION%%/views/calendar/galview.xml +%%DATADIR%%/%%VERSION%%/views/mail/As_Sent_Folder.galview +%%DATADIR%%/%%VERSION%%/views/mail/By_Follow_Up_Flag.galview +%%DATADIR%%/%%VERSION%%/views/mail/By_Sender.galview +%%DATADIR%%/%%VERSION%%/views/mail/By_Status.galview +%%DATADIR%%/%%VERSION%%/views/mail/By_Subject.galview +%%DATADIR%%/%%VERSION%%/views/mail/Messages.galview +%%DATADIR%%/%%VERSION%%/views/mail/Wide_View_Normal.galview +%%DATADIR%%/%%VERSION%%/views/mail/Wide_View_Sent.galview +%%DATADIR%%/%%VERSION%%/views/mail/galview.xml +%%DATADIR%%/%%VERSION%%/views/memos/Memos.galview +%%DATADIR%%/%%VERSION%%/views/memos/galview.xml +%%DATADIR%%/%%VERSION%%/views/tasks/Tasks.galview +%%DATADIR%%/%%VERSION%%/views/tasks/With_DueDate.galview +%%DATADIR%%/%%VERSION%%/views/tasks/With_Status.galview +%%DATADIR%%/%%VERSION%%/views/tasks/galview.xml +share/gnome/help/evolution/C/evolution.xml +share/gnome/help/evolution/C/figures/attach_reminder_a.png +share/gnome/help/evolution/C/figures/calendar_preference_display.png +share/gnome/help/evolution/C/figures/categories_a.png +share/gnome/help/evolution/C/figures/contacts_mainwindow_a.png +share/gnome/help/evolution/C/figures/delgt-add.png +share/gnome/help/evolution/C/figures/evo_Wcal_prop_a.png +share/gnome/help/evolution/C/figures/evo_adv_search_a.png +share/gnome/help/evolution/C/figures/evo_attachreminder_plugin.png +share/gnome/help/evolution/C/figures/evo_backup_prgsbar.png +share/gnome/help/evolution/C/figures/evo_backup_warning.png +share/gnome/help/evolution/C/figures/evo_blink.png +share/gnome/help/evolution/C/figures/evo_cal_callout_a.png +share/gnome/help/evolution/C/figures/evo_calender_appointmnt.png +share/gnome/help/evolution/C/figures/evo_calstatus_a.png +share/gnome/help/evolution/C/figures/evo_caltasks_a.png +share/gnome/help/evolution/C/figures/evo_contacteditor_a.png +share/gnome/help/evolution/C/figures/evo_delegate_permission_a.png +share/gnome/help/evolution/C/figures/evo_dialog-info.png +share/gnome/help/evolution/C/figures/evo_dialog-warning.png +share/gnome/help/evolution/C/figures/evo_edit_search.png +share/gnome/help/evolution/C/figures/evo_exchng_mapi.png +share/gnome/help/evolution/C/figures/evo_flag_follow_up_a.png +share/gnome/help/evolution/C/figures/evo_gwreceive_a.png +share/gnome/help/evolution/C/figures/evo_gwstatustrack.png +share/gnome/help/evolution/C/figures/evo_imapreceive_a.png +share/gnome/help/evolution/C/figures/evo_junk_a.png +share/gnome/help/evolution/C/figures/evo_label_a.png +share/gnome/help/evolution/C/figures/evo_labels_a.png +share/gnome/help/evolution/C/figures/evo_mail_a.png +share/gnome/help/evolution/C/figures/evo_mail_callout_a.png +share/gnome/help/evolution/C/figures/evo_maildirreceive_a.png +share/gnome/help/evolution/C/figures/evo_mboxreceive_a.png +share/gnome/help/evolution/C/figures/evo_memo_a.png +share/gnome/help/evolution/C/figures/evo_mhreceive_a.png +share/gnome/help/evolution/C/figures/evo_newmail.png +share/gnome/help/evolution/C/figures/evo_newmess_a.png +share/gnome/help/evolution/C/figures/evo_offline.png +share/gnome/help/evolution/C/figures/evo_popreceive_a.png +share/gnome/help/evolution/C/figures/evo_proxyadd_a.png +share/gnome/help/evolution/C/figures/evo_rule_a.png +share/gnome/help/evolution/C/figures/evo_send_option_a.png +share/gnome/help/evolution/C/figures/evo_send_setup_a.png +share/gnome/help/evolution/C/figures/evo_sendstatus_a.png +share/gnome/help/evolution/C/figures/evo_shd_memo_a.png +share/gnome/help/evolution/C/figures/evo_usereceive_a.png +share/gnome/help/evolution/C/figures/evolution_contact_preference.png +share/gnome/help/evolution/C/figures/evolution_mail_preference.png +share/gnome/help/evolution/C/figures/exchng-rec-mails.png +share/gnome/help/evolution/C/figures/exchng-rec-options.png +share/gnome/help/evolution/C/figures/filter-new-fig.png +share/gnome/help/evolution/C/figures/folder_plus.png +share/gnome/help/evolution/C/figures/folder_size_mapi.png +share/gnome/help/evolution/C/figures/folder_size_preference.png +share/gnome/help/evolution/C/figures/google_cal_view.png +share/gnome/help/evolution/C/figures/groupwise_resend.png +share/gnome/help/evolution/C/figures/groupwise_resend_retract.png +share/gnome/help/evolution/C/figures/local_ics_calendar.png +share/gnome/help/evolution/C/figures/mailer_preferences.png +share/gnome/help/evolution/C/figures/meeting.png +share/gnome/help/evolution/C/figures/minus.png +share/gnome/help/evolution/C/figures/plus.png +share/gnome/help/evolution/C/figures/quick_add_a.png +share/gnome/help/evolution/C/figures/quick_reference.png +share/gnome/help/evolution/C/figures/stock_search.png +share/gnome/help/evolution/C/figures/ver_view_a.png +share/gnome/help/evolution/cs/evolution.xml +share/gnome/help/evolution/cs/figures/attach_reminder_a.png +share/gnome/help/evolution/cs/figures/calendar_preference_display.png +share/gnome/help/evolution/cs/figures/categories_a.png +share/gnome/help/evolution/cs/figures/contacts_mainwindow_a.png +share/gnome/help/evolution/cs/figures/delgt-add.png +share/gnome/help/evolution/cs/figures/evo_Wcal_prop_a.png +share/gnome/help/evolution/cs/figures/evo_adv_search_a.png +share/gnome/help/evolution/cs/figures/evo_attachreminder_plugin.png +share/gnome/help/evolution/cs/figures/evo_backup_prgsbar.png +share/gnome/help/evolution/cs/figures/evo_backup_warning.png +share/gnome/help/evolution/cs/figures/evo_blink.png +share/gnome/help/evolution/cs/figures/evo_cal_callout_a.png +share/gnome/help/evolution/cs/figures/evo_calender_appointmnt.png +share/gnome/help/evolution/cs/figures/evo_calstatus_a.png +share/gnome/help/evolution/cs/figures/evo_caltasks_a.png +share/gnome/help/evolution/cs/figures/evo_contacteditor_a.png +share/gnome/help/evolution/cs/figures/evo_delegate_permission_a.png +share/gnome/help/evolution/cs/figures/evo_dialog-info.png +share/gnome/help/evolution/cs/figures/evo_dialog-warning.png +share/gnome/help/evolution/cs/figures/evo_edit_search.png +share/gnome/help/evolution/cs/figures/evo_exchng_mapi.png +share/gnome/help/evolution/cs/figures/evo_flag_follow_up_a.png +share/gnome/help/evolution/cs/figures/evo_gwreceive_a.png +share/gnome/help/evolution/cs/figures/evo_gwstatustrack.png +share/gnome/help/evolution/cs/figures/evo_imapreceive_a.png +share/gnome/help/evolution/cs/figures/evo_junk_a.png +share/gnome/help/evolution/cs/figures/evo_label_a.png +share/gnome/help/evolution/cs/figures/evo_labels_a.png +share/gnome/help/evolution/cs/figures/evo_mail_a.png +share/gnome/help/evolution/cs/figures/evo_mail_callout_a.png +share/gnome/help/evolution/cs/figures/evo_maildirreceive_a.png +share/gnome/help/evolution/cs/figures/evo_mboxreceive_a.png +share/gnome/help/evolution/cs/figures/evo_memo_a.png +share/gnome/help/evolution/cs/figures/evo_mhreceive_a.png +share/gnome/help/evolution/cs/figures/evo_newmail.png +share/gnome/help/evolution/cs/figures/evo_newmess_a.png +share/gnome/help/evolution/cs/figures/evo_offline.png +share/gnome/help/evolution/cs/figures/evo_popreceive_a.png +share/gnome/help/evolution/cs/figures/evo_proxyadd_a.png +share/gnome/help/evolution/cs/figures/evo_rule_a.png +share/gnome/help/evolution/cs/figures/evo_send_option_a.png +share/gnome/help/evolution/cs/figures/evo_send_setup_a.png +share/gnome/help/evolution/cs/figures/evo_sendstatus_a.png +share/gnome/help/evolution/cs/figures/evo_shd_memo_a.png +share/gnome/help/evolution/cs/figures/evo_usereceive_a.png +share/gnome/help/evolution/cs/figures/evolution_contact_preference.png +share/gnome/help/evolution/cs/figures/evolution_mail_preference.png +share/gnome/help/evolution/cs/figures/exchng-rec-mails.png +share/gnome/help/evolution/cs/figures/exchng-rec-options.png +share/gnome/help/evolution/cs/figures/filter-new-fig.png +share/gnome/help/evolution/cs/figures/folder_plus.png +share/gnome/help/evolution/cs/figures/folder_size_mapi.png +share/gnome/help/evolution/cs/figures/folder_size_preference.png +share/gnome/help/evolution/cs/figures/google_cal_view.png +share/gnome/help/evolution/cs/figures/groupwise_resend.png +share/gnome/help/evolution/cs/figures/groupwise_resend_retract.png +share/gnome/help/evolution/cs/figures/local_ics_calendar.png +share/gnome/help/evolution/cs/figures/mailer_preferences.png +share/gnome/help/evolution/cs/figures/meeting.png +share/gnome/help/evolution/cs/figures/minus.png +share/gnome/help/evolution/cs/figures/plus.png +share/gnome/help/evolution/cs/figures/quick_add_a.png +share/gnome/help/evolution/cs/figures/quick_reference.png +share/gnome/help/evolution/cs/figures/stock_search.png +share/gnome/help/evolution/cs/figures/ver_view_a.png +share/gnome/help/evolution/de/evolution.xml +share/gnome/help/evolution/de/figures/attach_reminder_a.png +share/gnome/help/evolution/de/figures/calendar_preference_display.png +share/gnome/help/evolution/de/figures/categories_a.png +share/gnome/help/evolution/de/figures/contacts_mainwindow_a.png +share/gnome/help/evolution/de/figures/delgt-add.png +share/gnome/help/evolution/de/figures/evo_Wcal_prop_a.png +share/gnome/help/evolution/de/figures/evo_adv_search_a.png +share/gnome/help/evolution/de/figures/evo_attachreminder_plugin.png +share/gnome/help/evolution/de/figures/evo_backup_prgsbar.png +share/gnome/help/evolution/de/figures/evo_backup_warning.png +share/gnome/help/evolution/de/figures/evo_blink.png +share/gnome/help/evolution/de/figures/evo_cal_callout_a.png +share/gnome/help/evolution/de/figures/evo_calender_appointmnt.png +share/gnome/help/evolution/de/figures/evo_calstatus_a.png +share/gnome/help/evolution/de/figures/evo_caltasks_a.png +share/gnome/help/evolution/de/figures/evo_contacteditor_a.png +share/gnome/help/evolution/de/figures/evo_delegate_permission_a.png +share/gnome/help/evolution/de/figures/evo_dialog-info.png +share/gnome/help/evolution/de/figures/evo_dialog-warning.png +share/gnome/help/evolution/de/figures/evo_edit_search.png +share/gnome/help/evolution/de/figures/evo_exchng_mapi.png +share/gnome/help/evolution/de/figures/evo_flag_follow_up_a.png +share/gnome/help/evolution/de/figures/evo_gwreceive_a.png +share/gnome/help/evolution/de/figures/evo_gwstatustrack.png +share/gnome/help/evolution/de/figures/evo_imapreceive_a.png +share/gnome/help/evolution/de/figures/evo_junk_a.png +share/gnome/help/evolution/de/figures/evo_label_a.png +share/gnome/help/evolution/de/figures/evo_labels_a.png +share/gnome/help/evolution/de/figures/evo_mail_a.png +share/gnome/help/evolution/de/figures/evo_mail_callout_a.png +share/gnome/help/evolution/de/figures/evo_maildirreceive_a.png +share/gnome/help/evolution/de/figures/evo_mboxreceive_a.png +share/gnome/help/evolution/de/figures/evo_memo_a.png +share/gnome/help/evolution/de/figures/evo_mhreceive_a.png +share/gnome/help/evolution/de/figures/evo_newmail.png +share/gnome/help/evolution/de/figures/evo_newmess_a.png +share/gnome/help/evolution/de/figures/evo_offline.png +share/gnome/help/evolution/de/figures/evo_popreceive_a.png +share/gnome/help/evolution/de/figures/evo_proxyadd_a.png +share/gnome/help/evolution/de/figures/evo_rule_a.png +share/gnome/help/evolution/de/figures/evo_send_option_a.png +share/gnome/help/evolution/de/figures/evo_send_setup_a.png +share/gnome/help/evolution/de/figures/evo_sendstatus_a.png +share/gnome/help/evolution/de/figures/evo_shd_memo_a.png +share/gnome/help/evolution/de/figures/evo_usereceive_a.png +share/gnome/help/evolution/de/figures/evolution_contact_preference.png +share/gnome/help/evolution/de/figures/evolution_mail_preference.png +share/gnome/help/evolution/de/figures/exchng-rec-mails.png +share/gnome/help/evolution/de/figures/exchng-rec-options.png +share/gnome/help/evolution/de/figures/filter-new-fig.png +share/gnome/help/evolution/de/figures/folder_plus.png +share/gnome/help/evolution/de/figures/folder_size_mapi.png +share/gnome/help/evolution/de/figures/folder_size_preference.png +share/gnome/help/evolution/de/figures/google_cal_view.png +share/gnome/help/evolution/de/figures/groupwise_resend.png +share/gnome/help/evolution/de/figures/groupwise_resend_retract.png +share/gnome/help/evolution/de/figures/local_ics_calendar.png +share/gnome/help/evolution/de/figures/mailer_preferences.png +share/gnome/help/evolution/de/figures/meeting.png +share/gnome/help/evolution/de/figures/minus.png +share/gnome/help/evolution/de/figures/plus.png +share/gnome/help/evolution/de/figures/quick_add_a.png +share/gnome/help/evolution/de/figures/quick_reference.png +share/gnome/help/evolution/de/figures/stock_search.png +share/gnome/help/evolution/de/figures/ver_view_a.png +share/gnome/help/evolution/el/evolution.xml +share/gnome/help/evolution/el/figures/attach_reminder_a.png +share/gnome/help/evolution/el/figures/calendar_preference_display.png +share/gnome/help/evolution/el/figures/categories_a.png +share/gnome/help/evolution/el/figures/contacts_mainwindow_a.png +share/gnome/help/evolution/el/figures/delgt-add.png +share/gnome/help/evolution/el/figures/evo_Wcal_prop_a.png +share/gnome/help/evolution/el/figures/evo_adv_search_a.png +share/gnome/help/evolution/el/figures/evo_attachreminder_plugin.png +share/gnome/help/evolution/el/figures/evo_backup_prgsbar.png +share/gnome/help/evolution/el/figures/evo_backup_warning.png +share/gnome/help/evolution/el/figures/evo_blink.png +share/gnome/help/evolution/el/figures/evo_cal_callout_a.png +share/gnome/help/evolution/el/figures/evo_calender_appointmnt.png +share/gnome/help/evolution/el/figures/evo_calstatus_a.png +share/gnome/help/evolution/el/figures/evo_caltasks_a.png +share/gnome/help/evolution/el/figures/evo_contacteditor_a.png +share/gnome/help/evolution/el/figures/evo_delegate_permission_a.png +share/gnome/help/evolution/el/figures/evo_dialog-info.png +share/gnome/help/evolution/el/figures/evo_dialog-warning.png +share/gnome/help/evolution/el/figures/evo_edit_search.png +share/gnome/help/evolution/el/figures/evo_exchng_mapi.png +share/gnome/help/evolution/el/figures/evo_flag_follow_up_a.png +share/gnome/help/evolution/el/figures/evo_gwreceive_a.png +share/gnome/help/evolution/el/figures/evo_gwstatustrack.png +share/gnome/help/evolution/el/figures/evo_imapreceive_a.png +share/gnome/help/evolution/el/figures/evo_junk_a.png +share/gnome/help/evolution/el/figures/evo_label_a.png +share/gnome/help/evolution/el/figures/evo_labels_a.png +share/gnome/help/evolution/el/figures/evo_mail_a.png +share/gnome/help/evolution/el/figures/evo_mail_callout_a.png +share/gnome/help/evolution/el/figures/evo_maildirreceive_a.png +share/gnome/help/evolution/el/figures/evo_mboxreceive_a.png +share/gnome/help/evolution/el/figures/evo_memo_a.png +share/gnome/help/evolution/el/figures/evo_mhreceive_a.png +share/gnome/help/evolution/el/figures/evo_newmail.png +share/gnome/help/evolution/el/figures/evo_newmess_a.png +share/gnome/help/evolution/el/figures/evo_offline.png +share/gnome/help/evolution/el/figures/evo_popreceive_a.png +share/gnome/help/evolution/el/figures/evo_proxyadd_a.png +share/gnome/help/evolution/el/figures/evo_rule_a.png +share/gnome/help/evolution/el/figures/evo_send_option_a.png +share/gnome/help/evolution/el/figures/evo_send_setup_a.png +share/gnome/help/evolution/el/figures/evo_sendstatus_a.png +share/gnome/help/evolution/el/figures/evo_shd_memo_a.png +share/gnome/help/evolution/el/figures/evo_usereceive_a.png +share/gnome/help/evolution/el/figures/evolution_contact_preference.png +share/gnome/help/evolution/el/figures/evolution_mail_preference.png +share/gnome/help/evolution/el/figures/exchng-rec-mails.png +share/gnome/help/evolution/el/figures/exchng-rec-options.png +share/gnome/help/evolution/el/figures/filter-new-fig.png +share/gnome/help/evolution/el/figures/folder_plus.png +share/gnome/help/evolution/el/figures/folder_size_mapi.png +share/gnome/help/evolution/el/figures/folder_size_preference.png +share/gnome/help/evolution/el/figures/google_cal_view.png +share/gnome/help/evolution/el/figures/groupwise_resend.png +share/gnome/help/evolution/el/figures/groupwise_resend_retract.png +share/gnome/help/evolution/el/figures/local_ics_calendar.png +share/gnome/help/evolution/el/figures/mailer_preferences.png +share/gnome/help/evolution/el/figures/meeting.png +share/gnome/help/evolution/el/figures/minus.png +share/gnome/help/evolution/el/figures/plus.png +share/gnome/help/evolution/el/figures/quick_add_a.png +share/gnome/help/evolution/el/figures/quick_reference.png +share/gnome/help/evolution/el/figures/stock_search.png +share/gnome/help/evolution/el/figures/ver_view_a.png +share/gnome/help/evolution/en_GB/evolution.xml +share/gnome/help/evolution/en_GB/figures/attach_reminder_a.png +share/gnome/help/evolution/en_GB/figures/calendar_preference_display.png +share/gnome/help/evolution/en_GB/figures/categories_a.png +share/gnome/help/evolution/en_GB/figures/contacts_mainwindow_a.png +share/gnome/help/evolution/en_GB/figures/delgt-add.png +share/gnome/help/evolution/en_GB/figures/evo_Wcal_prop_a.png +share/gnome/help/evolution/en_GB/figures/evo_adv_search_a.png +share/gnome/help/evolution/en_GB/figures/evo_attachreminder_plugin.png +share/gnome/help/evolution/en_GB/figures/evo_backup_prgsbar.png +share/gnome/help/evolution/en_GB/figures/evo_backup_warning.png +share/gnome/help/evolution/en_GB/figures/evo_blink.png +share/gnome/help/evolution/en_GB/figures/evo_cal_callout_a.png +share/gnome/help/evolution/en_GB/figures/evo_calender_appointmnt.png +share/gnome/help/evolution/en_GB/figures/evo_calstatus_a.png +share/gnome/help/evolution/en_GB/figures/evo_caltasks_a.png +share/gnome/help/evolution/en_GB/figures/evo_contacteditor_a.png +share/gnome/help/evolution/en_GB/figures/evo_delegate_permission_a.png +share/gnome/help/evolution/en_GB/figures/evo_dialog-info.png +share/gnome/help/evolution/en_GB/figures/evo_dialog-warning.png +share/gnome/help/evolution/en_GB/figures/evo_edit_search.png +share/gnome/help/evolution/en_GB/figures/evo_exchng_mapi.png +share/gnome/help/evolution/en_GB/figures/evo_flag_follow_up_a.png +share/gnome/help/evolution/en_GB/figures/evo_gwreceive_a.png +share/gnome/help/evolution/en_GB/figures/evo_gwstatustrack.png +share/gnome/help/evolution/en_GB/figures/evo_imapreceive_a.png +share/gnome/help/evolution/en_GB/figures/evo_junk_a.png +share/gnome/help/evolution/en_GB/figures/evo_label_a.png +share/gnome/help/evolution/en_GB/figures/evo_labels_a.png +share/gnome/help/evolution/en_GB/figures/evo_mail_a.png +share/gnome/help/evolution/en_GB/figures/evo_mail_callout_a.png +share/gnome/help/evolution/en_GB/figures/evo_maildirreceive_a.png +share/gnome/help/evolution/en_GB/figures/evo_mboxreceive_a.png +share/gnome/help/evolution/en_GB/figures/evo_memo_a.png +share/gnome/help/evolution/en_GB/figures/evo_mhreceive_a.png +share/gnome/help/evolution/en_GB/figures/evo_newmail.png +share/gnome/help/evolution/en_GB/figures/evo_newmess_a.png +share/gnome/help/evolution/en_GB/figures/evo_offline.png +share/gnome/help/evolution/en_GB/figures/evo_popreceive_a.png +share/gnome/help/evolution/en_GB/figures/evo_proxyadd_a.png +share/gnome/help/evolution/en_GB/figures/evo_rule_a.png +share/gnome/help/evolution/en_GB/figures/evo_send_option_a.png +share/gnome/help/evolution/en_GB/figures/evo_send_setup_a.png +share/gnome/help/evolution/en_GB/figures/evo_sendstatus_a.png +share/gnome/help/evolution/en_GB/figures/evo_shd_memo_a.png +share/gnome/help/evolution/en_GB/figures/evo_usereceive_a.png +share/gnome/help/evolution/en_GB/figures/evolution_contact_preference.png +share/gnome/help/evolution/en_GB/figures/evolution_mail_preference.png +share/gnome/help/evolution/en_GB/figures/exchng-rec-mails.png +share/gnome/help/evolution/en_GB/figures/exchng-rec-options.png +share/gnome/help/evolution/en_GB/figures/filter-new-fig.png +share/gnome/help/evolution/en_GB/figures/folder_plus.png +share/gnome/help/evolution/en_GB/figures/folder_size_mapi.png +share/gnome/help/evolution/en_GB/figures/folder_size_preference.png +share/gnome/help/evolution/en_GB/figures/google_cal_view.png +share/gnome/help/evolution/en_GB/figures/groupwise_resend.png +share/gnome/help/evolution/en_GB/figures/groupwise_resend_retract.png +share/gnome/help/evolution/en_GB/figures/local_ics_calendar.png +share/gnome/help/evolution/en_GB/figures/mailer_preferences.png +share/gnome/help/evolution/en_GB/figures/meeting.png +share/gnome/help/evolution/en_GB/figures/minus.png +share/gnome/help/evolution/en_GB/figures/plus.png +share/gnome/help/evolution/en_GB/figures/quick_add_a.png +share/gnome/help/evolution/en_GB/figures/quick_reference.png +share/gnome/help/evolution/en_GB/figures/stock_search.png +share/gnome/help/evolution/en_GB/figures/ver_view_a.png +share/gnome/help/evolution/es/evolution.xml +share/gnome/help/evolution/es/figures/attach_reminder_a.png +share/gnome/help/evolution/es/figures/calendar_preference_display.png +share/gnome/help/evolution/es/figures/categories_a.png +share/gnome/help/evolution/es/figures/contacts_mainwindow_a.png +share/gnome/help/evolution/es/figures/delgt-add.png +share/gnome/help/evolution/es/figures/evo_Wcal_prop_a.png +share/gnome/help/evolution/es/figures/evo_adv_search_a.png +share/gnome/help/evolution/es/figures/evo_attachreminder_plugin.png +share/gnome/help/evolution/es/figures/evo_backup_prgsbar.png +share/gnome/help/evolution/es/figures/evo_backup_warning.png +share/gnome/help/evolution/es/figures/evo_blink.png +share/gnome/help/evolution/es/figures/evo_cal_callout_a.png +share/gnome/help/evolution/es/figures/evo_calender_appointmnt.png +share/gnome/help/evolution/es/figures/evo_calstatus_a.png +share/gnome/help/evolution/es/figures/evo_caltasks_a.png +share/gnome/help/evolution/es/figures/evo_contacteditor_a.png +share/gnome/help/evolution/es/figures/evo_delegate_permission_a.png +share/gnome/help/evolution/es/figures/evo_dialog-info.png +share/gnome/help/evolution/es/figures/evo_dialog-warning.png +share/gnome/help/evolution/es/figures/evo_edit_search.png +share/gnome/help/evolution/es/figures/evo_exchng_mapi.png +share/gnome/help/evolution/es/figures/evo_flag_follow_up_a.png +share/gnome/help/evolution/es/figures/evo_gwreceive_a.png +share/gnome/help/evolution/es/figures/evo_gwstatustrack.png +share/gnome/help/evolution/es/figures/evo_imapreceive_a.png +share/gnome/help/evolution/es/figures/evo_junk_a.png +share/gnome/help/evolution/es/figures/evo_label_a.png +share/gnome/help/evolution/es/figures/evo_labels_a.png +share/gnome/help/evolution/es/figures/evo_mail_a.png +share/gnome/help/evolution/es/figures/evo_mail_callout_a.png +share/gnome/help/evolution/es/figures/evo_maildirreceive_a.png +share/gnome/help/evolution/es/figures/evo_mboxreceive_a.png +share/gnome/help/evolution/es/figures/evo_memo_a.png +share/gnome/help/evolution/es/figures/evo_mhreceive_a.png +share/gnome/help/evolution/es/figures/evo_newmail.png +share/gnome/help/evolution/es/figures/evo_newmess_a.png +share/gnome/help/evolution/es/figures/evo_offline.png +share/gnome/help/evolution/es/figures/evo_popreceive_a.png +share/gnome/help/evolution/es/figures/evo_proxyadd_a.png +share/gnome/help/evolution/es/figures/evo_rule_a.png +share/gnome/help/evolution/es/figures/evo_send_option_a.png +share/gnome/help/evolution/es/figures/evo_send_setup_a.png +share/gnome/help/evolution/es/figures/evo_sendstatus_a.png +share/gnome/help/evolution/es/figures/evo_shd_memo_a.png +share/gnome/help/evolution/es/figures/evo_usereceive_a.png +share/gnome/help/evolution/es/figures/evolution_contact_preference.png +share/gnome/help/evolution/es/figures/evolution_mail_preference.png +share/gnome/help/evolution/es/figures/exchng-rec-mails.png +share/gnome/help/evolution/es/figures/exchng-rec-options.png +share/gnome/help/evolution/es/figures/filter-new-fig.png +share/gnome/help/evolution/es/figures/folder_plus.png +share/gnome/help/evolution/es/figures/folder_size_mapi.png +share/gnome/help/evolution/es/figures/folder_size_preference.png +share/gnome/help/evolution/es/figures/google_cal_view.png +share/gnome/help/evolution/es/figures/groupwise_resend.png +share/gnome/help/evolution/es/figures/groupwise_resend_retract.png +share/gnome/help/evolution/es/figures/local_ics_calendar.png +share/gnome/help/evolution/es/figures/mailer_preferences.png +share/gnome/help/evolution/es/figures/meeting.png +share/gnome/help/evolution/es/figures/minus.png +share/gnome/help/evolution/es/figures/plus.png +share/gnome/help/evolution/es/figures/quick_add_a.png +share/gnome/help/evolution/es/figures/quick_reference.png +share/gnome/help/evolution/es/figures/stock_search.png +share/gnome/help/evolution/es/figures/ver_view_a.png +share/gnome/help/evolution/eu/evolution.xml +share/gnome/help/evolution/eu/figures/attach_reminder_a.png +share/gnome/help/evolution/eu/figures/calendar_preference_display.png +share/gnome/help/evolution/eu/figures/categories_a.png +share/gnome/help/evolution/eu/figures/contacts_mainwindow_a.png +share/gnome/help/evolution/eu/figures/delgt-add.png +share/gnome/help/evolution/eu/figures/evo_Wcal_prop_a.png +share/gnome/help/evolution/eu/figures/evo_adv_search_a.png +share/gnome/help/evolution/eu/figures/evo_attachreminder_plugin.png +share/gnome/help/evolution/eu/figures/evo_backup_prgsbar.png +share/gnome/help/evolution/eu/figures/evo_backup_warning.png +share/gnome/help/evolution/eu/figures/evo_blink.png +share/gnome/help/evolution/eu/figures/evo_cal_callout_a.png +share/gnome/help/evolution/eu/figures/evo_calender_appointmnt.png +share/gnome/help/evolution/eu/figures/evo_calstatus_a.png +share/gnome/help/evolution/eu/figures/evo_caltasks_a.png +share/gnome/help/evolution/eu/figures/evo_contacteditor_a.png +share/gnome/help/evolution/eu/figures/evo_delegate_permission_a.png +share/gnome/help/evolution/eu/figures/evo_dialog-info.png +share/gnome/help/evolution/eu/figures/evo_dialog-warning.png +share/gnome/help/evolution/eu/figures/evo_edit_search.png +share/gnome/help/evolution/eu/figures/evo_exchng_mapi.png +share/gnome/help/evolution/eu/figures/evo_flag_follow_up_a.png +share/gnome/help/evolution/eu/figures/evo_gwreceive_a.png +share/gnome/help/evolution/eu/figures/evo_gwstatustrack.png +share/gnome/help/evolution/eu/figures/evo_imapreceive_a.png +share/gnome/help/evolution/eu/figures/evo_junk_a.png +share/gnome/help/evolution/eu/figures/evo_label_a.png +share/gnome/help/evolution/eu/figures/evo_labels_a.png +share/gnome/help/evolution/eu/figures/evo_mail_a.png +share/gnome/help/evolution/eu/figures/evo_mail_callout_a.png +share/gnome/help/evolution/eu/figures/evo_maildirreceive_a.png +share/gnome/help/evolution/eu/figures/evo_mboxreceive_a.png +share/gnome/help/evolution/eu/figures/evo_memo_a.png +share/gnome/help/evolution/eu/figures/evo_mhreceive_a.png +share/gnome/help/evolution/eu/figures/evo_newmail.png +share/gnome/help/evolution/eu/figures/evo_newmess_a.png +share/gnome/help/evolution/eu/figures/evo_offline.png +share/gnome/help/evolution/eu/figures/evo_popreceive_a.png +share/gnome/help/evolution/eu/figures/evo_proxyadd_a.png +share/gnome/help/evolution/eu/figures/evo_rule_a.png +share/gnome/help/evolution/eu/figures/evo_send_option_a.png +share/gnome/help/evolution/eu/figures/evo_send_setup_a.png +share/gnome/help/evolution/eu/figures/evo_sendstatus_a.png +share/gnome/help/evolution/eu/figures/evo_shd_memo_a.png +share/gnome/help/evolution/eu/figures/evo_usereceive_a.png +share/gnome/help/evolution/eu/figures/evolution_contact_preference.png +share/gnome/help/evolution/eu/figures/evolution_mail_preference.png +share/gnome/help/evolution/eu/figures/exchng-rec-mails.png +share/gnome/help/evolution/eu/figures/exchng-rec-options.png +share/gnome/help/evolution/eu/figures/filter-new-fig.png +share/gnome/help/evolution/eu/figures/folder_plus.png +share/gnome/help/evolution/eu/figures/folder_size_mapi.png +share/gnome/help/evolution/eu/figures/folder_size_preference.png +share/gnome/help/evolution/eu/figures/google_cal_view.png +share/gnome/help/evolution/eu/figures/groupwise_resend.png +share/gnome/help/evolution/eu/figures/groupwise_resend_retract.png +share/gnome/help/evolution/eu/figures/local_ics_calendar.png +share/gnome/help/evolution/eu/figures/mailer_preferences.png +share/gnome/help/evolution/eu/figures/meeting.png +share/gnome/help/evolution/eu/figures/minus.png +share/gnome/help/evolution/eu/figures/plus.png +share/gnome/help/evolution/eu/figures/quick_add_a.png +share/gnome/help/evolution/eu/figures/quick_reference.png +share/gnome/help/evolution/eu/figures/stock_search.png +share/gnome/help/evolution/eu/figures/ver_view_a.png +share/gnome/help/evolution/fr/evolution.xml +share/gnome/help/evolution/fr/figures/attach_reminder_a.png +share/gnome/help/evolution/fr/figures/calendar_preference_display.png +share/gnome/help/evolution/fr/figures/categories_a.png +share/gnome/help/evolution/fr/figures/contacts_mainwindow_a.png +share/gnome/help/evolution/fr/figures/delgt-add.png +share/gnome/help/evolution/fr/figures/evo_Wcal_prop_a.png +share/gnome/help/evolution/fr/figures/evo_adv_search_a.png +share/gnome/help/evolution/fr/figures/evo_attachreminder_plugin.png +share/gnome/help/evolution/fr/figures/evo_backup_prgsbar.png +share/gnome/help/evolution/fr/figures/evo_backup_warning.png +share/gnome/help/evolution/fr/figures/evo_blink.png +share/gnome/help/evolution/fr/figures/evo_cal_callout_a.png +share/gnome/help/evolution/fr/figures/evo_calender_appointmnt.png +share/gnome/help/evolution/fr/figures/evo_calstatus_a.png +share/gnome/help/evolution/fr/figures/evo_caltasks_a.png +share/gnome/help/evolution/fr/figures/evo_contacteditor_a.png +share/gnome/help/evolution/fr/figures/evo_delegate_permission_a.png +share/gnome/help/evolution/fr/figures/evo_dialog-info.png +share/gnome/help/evolution/fr/figures/evo_dialog-warning.png +share/gnome/help/evolution/fr/figures/evo_edit_search.png +share/gnome/help/evolution/fr/figures/evo_exchng_mapi.png +share/gnome/help/evolution/fr/figures/evo_flag_follow_up_a.png +share/gnome/help/evolution/fr/figures/evo_gwreceive_a.png +share/gnome/help/evolution/fr/figures/evo_gwstatustrack.png +share/gnome/help/evolution/fr/figures/evo_imapreceive_a.png +share/gnome/help/evolution/fr/figures/evo_junk_a.png +share/gnome/help/evolution/fr/figures/evo_label_a.png +share/gnome/help/evolution/fr/figures/evo_labels_a.png +share/gnome/help/evolution/fr/figures/evo_mail_a.png +share/gnome/help/evolution/fr/figures/evo_mail_callout_a.png +share/gnome/help/evolution/fr/figures/evo_maildirreceive_a.png +share/gnome/help/evolution/fr/figures/evo_mboxreceive_a.png +share/gnome/help/evolution/fr/figures/evo_memo_a.png +share/gnome/help/evolution/fr/figures/evo_mhreceive_a.png +share/gnome/help/evolution/fr/figures/evo_newmail.png +share/gnome/help/evolution/fr/figures/evo_newmess_a.png +share/gnome/help/evolution/fr/figures/evo_offline.png +share/gnome/help/evolution/fr/figures/evo_popreceive_a.png +share/gnome/help/evolution/fr/figures/evo_proxyadd_a.png +share/gnome/help/evolution/fr/figures/evo_rule_a.png +share/gnome/help/evolution/fr/figures/evo_send_option_a.png +share/gnome/help/evolution/fr/figures/evo_send_setup_a.png +share/gnome/help/evolution/fr/figures/evo_sendstatus_a.png +share/gnome/help/evolution/fr/figures/evo_shd_memo_a.png +share/gnome/help/evolution/fr/figures/evo_usereceive_a.png +share/gnome/help/evolution/fr/figures/evolution_contact_preference.png +share/gnome/help/evolution/fr/figures/evolution_mail_preference.png +share/gnome/help/evolution/fr/figures/exchng-rec-mails.png +share/gnome/help/evolution/fr/figures/exchng-rec-options.png +share/gnome/help/evolution/fr/figures/filter-new-fig.png +share/gnome/help/evolution/fr/figures/folder_plus.png +share/gnome/help/evolution/fr/figures/folder_size_mapi.png +share/gnome/help/evolution/fr/figures/folder_size_preference.png +share/gnome/help/evolution/fr/figures/google_cal_view.png +share/gnome/help/evolution/fr/figures/groupwise_resend.png +share/gnome/help/evolution/fr/figures/groupwise_resend_retract.png +share/gnome/help/evolution/fr/figures/local_ics_calendar.png +share/gnome/help/evolution/fr/figures/mailer_preferences.png +share/gnome/help/evolution/fr/figures/meeting.png +share/gnome/help/evolution/fr/figures/minus.png +share/gnome/help/evolution/fr/figures/plus.png +share/gnome/help/evolution/fr/figures/quick_add_a.png +share/gnome/help/evolution/fr/figures/quick_reference.png +share/gnome/help/evolution/fr/figures/stock_search.png +share/gnome/help/evolution/fr/figures/ver_view_a.png +share/gnome/help/evolution/mk/evolution.xml +share/gnome/help/evolution/mk/figures/attach_reminder_a.png +share/gnome/help/evolution/mk/figures/calendar_preference_display.png +share/gnome/help/evolution/mk/figures/categories_a.png +share/gnome/help/evolution/mk/figures/contacts_mainwindow_a.png +share/gnome/help/evolution/mk/figures/delgt-add.png +share/gnome/help/evolution/mk/figures/evo_Wcal_prop_a.png +share/gnome/help/evolution/mk/figures/evo_adv_search_a.png +share/gnome/help/evolution/mk/figures/evo_attachreminder_plugin.png +share/gnome/help/evolution/mk/figures/evo_backup_prgsbar.png +share/gnome/help/evolution/mk/figures/evo_backup_warning.png +share/gnome/help/evolution/mk/figures/evo_blink.png +share/gnome/help/evolution/mk/figures/evo_cal_callout_a.png +share/gnome/help/evolution/mk/figures/evo_calender_appointmnt.png +share/gnome/help/evolution/mk/figures/evo_calstatus_a.png +share/gnome/help/evolution/mk/figures/evo_caltasks_a.png +share/gnome/help/evolution/mk/figures/evo_contacteditor_a.png +share/gnome/help/evolution/mk/figures/evo_delegate_permission_a.png +share/gnome/help/evolution/mk/figures/evo_dialog-info.png +share/gnome/help/evolution/mk/figures/evo_dialog-warning.png +share/gnome/help/evolution/mk/figures/evo_edit_search.png +share/gnome/help/evolution/mk/figures/evo_exchng_mapi.png +share/gnome/help/evolution/mk/figures/evo_flag_follow_up_a.png +share/gnome/help/evolution/mk/figures/evo_gwreceive_a.png +share/gnome/help/evolution/mk/figures/evo_gwstatustrack.png +share/gnome/help/evolution/mk/figures/evo_imapreceive_a.png +share/gnome/help/evolution/mk/figures/evo_junk_a.png +share/gnome/help/evolution/mk/figures/evo_label_a.png +share/gnome/help/evolution/mk/figures/evo_labels_a.png +share/gnome/help/evolution/mk/figures/evo_mail_a.png +share/gnome/help/evolution/mk/figures/evo_mail_callout_a.png +share/gnome/help/evolution/mk/figures/evo_maildirreceive_a.png +share/gnome/help/evolution/mk/figures/evo_mboxreceive_a.png +share/gnome/help/evolution/mk/figures/evo_memo_a.png +share/gnome/help/evolution/mk/figures/evo_mhreceive_a.png +share/gnome/help/evolution/mk/figures/evo_newmail.png +share/gnome/help/evolution/mk/figures/evo_newmess_a.png +share/gnome/help/evolution/mk/figures/evo_offline.png +share/gnome/help/evolution/mk/figures/evo_popreceive_a.png +share/gnome/help/evolution/mk/figures/evo_proxyadd_a.png +share/gnome/help/evolution/mk/figures/evo_rule_a.png +share/gnome/help/evolution/mk/figures/evo_send_option_a.png +share/gnome/help/evolution/mk/figures/evo_send_setup_a.png +share/gnome/help/evolution/mk/figures/evo_sendstatus_a.png +share/gnome/help/evolution/mk/figures/evo_shd_memo_a.png +share/gnome/help/evolution/mk/figures/evo_usereceive_a.png +share/gnome/help/evolution/mk/figures/evolution_contact_preference.png +share/gnome/help/evolution/mk/figures/evolution_mail_preference.png +share/gnome/help/evolution/mk/figures/exchng-rec-mails.png +share/gnome/help/evolution/mk/figures/exchng-rec-options.png +share/gnome/help/evolution/mk/figures/filter-new-fig.png +share/gnome/help/evolution/mk/figures/folder_plus.png +share/gnome/help/evolution/mk/figures/folder_size_mapi.png +share/gnome/help/evolution/mk/figures/folder_size_preference.png +share/gnome/help/evolution/mk/figures/google_cal_view.png +share/gnome/help/evolution/mk/figures/groupwise_resend.png +share/gnome/help/evolution/mk/figures/groupwise_resend_retract.png +share/gnome/help/evolution/mk/figures/local_ics_calendar.png +share/gnome/help/evolution/mk/figures/mailer_preferences.png +share/gnome/help/evolution/mk/figures/meeting.png +share/gnome/help/evolution/mk/figures/minus.png +share/gnome/help/evolution/mk/figures/plus.png +share/gnome/help/evolution/mk/figures/quick_add_a.png +share/gnome/help/evolution/mk/figures/quick_reference.png +share/gnome/help/evolution/mk/figures/stock_search.png +share/gnome/help/evolution/mk/figures/ver_view_a.png +share/gnome/help/evolution/oc/evolution.xml +share/gnome/help/evolution/oc/figures/attach_reminder_a.png +share/gnome/help/evolution/oc/figures/calendar_preference_display.png +share/gnome/help/evolution/oc/figures/categories_a.png +share/gnome/help/evolution/oc/figures/contacts_mainwindow_a.png +share/gnome/help/evolution/oc/figures/delgt-add.png +share/gnome/help/evolution/oc/figures/evo_Wcal_prop_a.png +share/gnome/help/evolution/oc/figures/evo_adv_search_a.png +share/gnome/help/evolution/oc/figures/evo_attachreminder_plugin.png +share/gnome/help/evolution/oc/figures/evo_backup_prgsbar.png +share/gnome/help/evolution/oc/figures/evo_backup_warning.png +share/gnome/help/evolution/oc/figures/evo_blink.png +share/gnome/help/evolution/oc/figures/evo_cal_callout_a.png +share/gnome/help/evolution/oc/figures/evo_calender_appointmnt.png +share/gnome/help/evolution/oc/figures/evo_calstatus_a.png +share/gnome/help/evolution/oc/figures/evo_caltasks_a.png +share/gnome/help/evolution/oc/figures/evo_contacteditor_a.png +share/gnome/help/evolution/oc/figures/evo_delegate_permission_a.png +share/gnome/help/evolution/oc/figures/evo_dialog-info.png +share/gnome/help/evolution/oc/figures/evo_dialog-warning.png +share/gnome/help/evolution/oc/figures/evo_edit_search.png +share/gnome/help/evolution/oc/figures/evo_exchng_mapi.png +share/gnome/help/evolution/oc/figures/evo_flag_follow_up_a.png +share/gnome/help/evolution/oc/figures/evo_gwreceive_a.png +share/gnome/help/evolution/oc/figures/evo_gwstatustrack.png +share/gnome/help/evolution/oc/figures/evo_imapreceive_a.png +share/gnome/help/evolution/oc/figures/evo_junk_a.png +share/gnome/help/evolution/oc/figures/evo_label_a.png +share/gnome/help/evolution/oc/figures/evo_labels_a.png +share/gnome/help/evolution/oc/figures/evo_mail_a.png +share/gnome/help/evolution/oc/figures/evo_mail_callout_a.png +share/gnome/help/evolution/oc/figures/evo_maildirreceive_a.png +share/gnome/help/evolution/oc/figures/evo_mboxreceive_a.png +share/gnome/help/evolution/oc/figures/evo_memo_a.png +share/gnome/help/evolution/oc/figures/evo_mhreceive_a.png +share/gnome/help/evolution/oc/figures/evo_newmail.png +share/gnome/help/evolution/oc/figures/evo_newmess_a.png +share/gnome/help/evolution/oc/figures/evo_offline.png +share/gnome/help/evolution/oc/figures/evo_popreceive_a.png +share/gnome/help/evolution/oc/figures/evo_proxyadd_a.png +share/gnome/help/evolution/oc/figures/evo_rule_a.png +share/gnome/help/evolution/oc/figures/evo_send_option_a.png +share/gnome/help/evolution/oc/figures/evo_send_setup_a.png +share/gnome/help/evolution/oc/figures/evo_sendstatus_a.png +share/gnome/help/evolution/oc/figures/evo_shd_memo_a.png +share/gnome/help/evolution/oc/figures/evo_usereceive_a.png +share/gnome/help/evolution/oc/figures/evolution_contact_preference.png +share/gnome/help/evolution/oc/figures/evolution_mail_preference.png +share/gnome/help/evolution/oc/figures/exchng-rec-mails.png +share/gnome/help/evolution/oc/figures/exchng-rec-options.png +share/gnome/help/evolution/oc/figures/filter-new-fig.png +share/gnome/help/evolution/oc/figures/folder_plus.png +share/gnome/help/evolution/oc/figures/folder_size_mapi.png +share/gnome/help/evolution/oc/figures/folder_size_preference.png +share/gnome/help/evolution/oc/figures/google_cal_view.png +share/gnome/help/evolution/oc/figures/groupwise_resend.png +share/gnome/help/evolution/oc/figures/groupwise_resend_retract.png +share/gnome/help/evolution/oc/figures/local_ics_calendar.png +share/gnome/help/evolution/oc/figures/mailer_preferences.png +share/gnome/help/evolution/oc/figures/meeting.png +share/gnome/help/evolution/oc/figures/minus.png +share/gnome/help/evolution/oc/figures/plus.png +share/gnome/help/evolution/oc/figures/quick_add_a.png +share/gnome/help/evolution/oc/figures/quick_reference.png +share/gnome/help/evolution/oc/figures/stock_search.png +share/gnome/help/evolution/oc/figures/ver_view_a.png +share/gnome/help/evolution/ru/evolution.xml +share/gnome/help/evolution/ru/figures/attach_reminder_a.png +share/gnome/help/evolution/ru/figures/calendar_preference_display.png +share/gnome/help/evolution/ru/figures/categories_a.png +share/gnome/help/evolution/ru/figures/contacts_mainwindow_a.png +share/gnome/help/evolution/ru/figures/delgt-add.png +share/gnome/help/evolution/ru/figures/evo_Wcal_prop_a.png +share/gnome/help/evolution/ru/figures/evo_adv_search_a.png +share/gnome/help/evolution/ru/figures/evo_attachreminder_plugin.png +share/gnome/help/evolution/ru/figures/evo_backup_prgsbar.png +share/gnome/help/evolution/ru/figures/evo_backup_warning.png +share/gnome/help/evolution/ru/figures/evo_blink.png +share/gnome/help/evolution/ru/figures/evo_cal_callout_a.png +share/gnome/help/evolution/ru/figures/evo_calender_appointmnt.png +share/gnome/help/evolution/ru/figures/evo_calstatus_a.png +share/gnome/help/evolution/ru/figures/evo_caltasks_a.png +share/gnome/help/evolution/ru/figures/evo_contacteditor_a.png +share/gnome/help/evolution/ru/figures/evo_delegate_permission_a.png +share/gnome/help/evolution/ru/figures/evo_dialog-info.png +share/gnome/help/evolution/ru/figures/evo_dialog-warning.png +share/gnome/help/evolution/ru/figures/evo_edit_search.png +share/gnome/help/evolution/ru/figures/evo_exchng_mapi.png +share/gnome/help/evolution/ru/figures/evo_flag_follow_up_a.png +share/gnome/help/evolution/ru/figures/evo_gwreceive_a.png +share/gnome/help/evolution/ru/figures/evo_gwstatustrack.png +share/gnome/help/evolution/ru/figures/evo_imapreceive_a.png +share/gnome/help/evolution/ru/figures/evo_junk_a.png +share/gnome/help/evolution/ru/figures/evo_label_a.png +share/gnome/help/evolution/ru/figures/evo_labels_a.png +share/gnome/help/evolution/ru/figures/evo_mail_a.png +share/gnome/help/evolution/ru/figures/evo_mail_callout_a.png +share/gnome/help/evolution/ru/figures/evo_maildirreceive_a.png +share/gnome/help/evolution/ru/figures/evo_mboxreceive_a.png +share/gnome/help/evolution/ru/figures/evo_memo_a.png +share/gnome/help/evolution/ru/figures/evo_mhreceive_a.png +share/gnome/help/evolution/ru/figures/evo_newmail.png +share/gnome/help/evolution/ru/figures/evo_newmess_a.png +share/gnome/help/evolution/ru/figures/evo_offline.png +share/gnome/help/evolution/ru/figures/evo_popreceive_a.png +share/gnome/help/evolution/ru/figures/evo_proxyadd_a.png +share/gnome/help/evolution/ru/figures/evo_rule_a.png +share/gnome/help/evolution/ru/figures/evo_send_option_a.png +share/gnome/help/evolution/ru/figures/evo_send_setup_a.png +share/gnome/help/evolution/ru/figures/evo_sendstatus_a.png +share/gnome/help/evolution/ru/figures/evo_shd_memo_a.png +share/gnome/help/evolution/ru/figures/evo_usereceive_a.png +share/gnome/help/evolution/ru/figures/evolution_contact_preference.png +share/gnome/help/evolution/ru/figures/evolution_mail_preference.png +share/gnome/help/evolution/ru/figures/exchng-rec-mails.png +share/gnome/help/evolution/ru/figures/exchng-rec-options.png +share/gnome/help/evolution/ru/figures/filter-new-fig.png +share/gnome/help/evolution/ru/figures/folder_plus.png +share/gnome/help/evolution/ru/figures/folder_size_mapi.png +share/gnome/help/evolution/ru/figures/folder_size_preference.png +share/gnome/help/evolution/ru/figures/google_cal_view.png +share/gnome/help/evolution/ru/figures/groupwise_resend.png +share/gnome/help/evolution/ru/figures/groupwise_resend_retract.png +share/gnome/help/evolution/ru/figures/local_ics_calendar.png +share/gnome/help/evolution/ru/figures/mailer_preferences.png +share/gnome/help/evolution/ru/figures/meeting.png +share/gnome/help/evolution/ru/figures/minus.png +share/gnome/help/evolution/ru/figures/plus.png +share/gnome/help/evolution/ru/figures/quick_add_a.png +share/gnome/help/evolution/ru/figures/quick_reference.png +share/gnome/help/evolution/ru/figures/stock_search.png +share/gnome/help/evolution/ru/figures/ver_view_a.png +share/gnome/help/evolution/sv/evolution.xml +share/gnome/help/evolution/sv/figures/attach_reminder_a.png +share/gnome/help/evolution/sv/figures/calendar_preference_display.png +share/gnome/help/evolution/sv/figures/categories_a.png +share/gnome/help/evolution/sv/figures/contacts_mainwindow_a.png +share/gnome/help/evolution/sv/figures/delgt-add.png +share/gnome/help/evolution/sv/figures/evo_Wcal_prop_a.png +share/gnome/help/evolution/sv/figures/evo_adv_search_a.png +share/gnome/help/evolution/sv/figures/evo_attachreminder_plugin.png +share/gnome/help/evolution/sv/figures/evo_backup_prgsbar.png +share/gnome/help/evolution/sv/figures/evo_backup_warning.png +share/gnome/help/evolution/sv/figures/evo_blink.png +share/gnome/help/evolution/sv/figures/evo_cal_callout_a.png +share/gnome/help/evolution/sv/figures/evo_calender_appointmnt.png +share/gnome/help/evolution/sv/figures/evo_calstatus_a.png +share/gnome/help/evolution/sv/figures/evo_caltasks_a.png +share/gnome/help/evolution/sv/figures/evo_contacteditor_a.png +share/gnome/help/evolution/sv/figures/evo_delegate_permission_a.png +share/gnome/help/evolution/sv/figures/evo_dialog-info.png +share/gnome/help/evolution/sv/figures/evo_dialog-warning.png +share/gnome/help/evolution/sv/figures/evo_edit_search.png +share/gnome/help/evolution/sv/figures/evo_exchng_mapi.png +share/gnome/help/evolution/sv/figures/evo_flag_follow_up_a.png +share/gnome/help/evolution/sv/figures/evo_gwreceive_a.png +share/gnome/help/evolution/sv/figures/evo_gwstatustrack.png +share/gnome/help/evolution/sv/figures/evo_imapreceive_a.png +share/gnome/help/evolution/sv/figures/evo_junk_a.png +share/gnome/help/evolution/sv/figures/evo_label_a.png +share/gnome/help/evolution/sv/figures/evo_labels_a.png +share/gnome/help/evolution/sv/figures/evo_mail_a.png +share/gnome/help/evolution/sv/figures/evo_mail_callout_a.png +share/gnome/help/evolution/sv/figures/evo_maildirreceive_a.png +share/gnome/help/evolution/sv/figures/evo_mboxreceive_a.png +share/gnome/help/evolution/sv/figures/evo_memo_a.png +share/gnome/help/evolution/sv/figures/evo_mhreceive_a.png +share/gnome/help/evolution/sv/figures/evo_newmail.png +share/gnome/help/evolution/sv/figures/evo_newmess_a.png +share/gnome/help/evolution/sv/figures/evo_offline.png +share/gnome/help/evolution/sv/figures/evo_popreceive_a.png +share/gnome/help/evolution/sv/figures/evo_proxyadd_a.png +share/gnome/help/evolution/sv/figures/evo_rule_a.png +share/gnome/help/evolution/sv/figures/evo_send_option_a.png +share/gnome/help/evolution/sv/figures/evo_send_setup_a.png +share/gnome/help/evolution/sv/figures/evo_sendstatus_a.png +share/gnome/help/evolution/sv/figures/evo_shd_memo_a.png +share/gnome/help/evolution/sv/figures/evo_usereceive_a.png +share/gnome/help/evolution/sv/figures/evolution_contact_preference.png +share/gnome/help/evolution/sv/figures/evolution_mail_preference.png +share/gnome/help/evolution/sv/figures/exchng-rec-mails.png +share/gnome/help/evolution/sv/figures/exchng-rec-options.png +share/gnome/help/evolution/sv/figures/filter-new-fig.png +share/gnome/help/evolution/sv/figures/folder_plus.png +share/gnome/help/evolution/sv/figures/folder_size_mapi.png +share/gnome/help/evolution/sv/figures/folder_size_preference.png +share/gnome/help/evolution/sv/figures/google_cal_view.png +share/gnome/help/evolution/sv/figures/groupwise_resend.png +share/gnome/help/evolution/sv/figures/groupwise_resend_retract.png +share/gnome/help/evolution/sv/figures/local_ics_calendar.png +share/gnome/help/evolution/sv/figures/mailer_preferences.png +share/gnome/help/evolution/sv/figures/meeting.png +share/gnome/help/evolution/sv/figures/minus.png +share/gnome/help/evolution/sv/figures/plus.png +share/gnome/help/evolution/sv/figures/quick_add_a.png +share/gnome/help/evolution/sv/figures/quick_reference.png +share/gnome/help/evolution/sv/figures/stock_search.png +share/gnome/help/evolution/sv/figures/ver_view_a.png +%%PILOT%%share/gnome-pilot/conduits/e-address.conduit +%%PILOT%%share/gnome-pilot/conduits/e-calendar.conduit +%%PILOT%%share/gnome-pilot/conduits/e-memo.conduit +%%PILOT%%share/gnome-pilot/conduits/e-todo.conduit +share/icons/hicolor/16x16/apps/evolution-mail.png +share/icons/hicolor/16x16/apps/evolution-memos.png +share/icons/hicolor/16x16/apps/evolution-tasks.png +share/icons/hicolor/16x16/apps/evolution.png +share/icons/hicolor/22x22/apps/evolution-mail.png +share/icons/hicolor/22x22/apps/evolution-memos.png +share/icons/hicolor/22x22/apps/evolution-tasks.png +share/icons/hicolor/22x22/apps/evolution.png +share/icons/hicolor/24x24/apps/evolution-mail.png +share/icons/hicolor/24x24/apps/evolution-memos.png +share/icons/hicolor/24x24/apps/evolution-tasks.png +share/icons/hicolor/24x24/apps/evolution.png +share/icons/hicolor/32x32/apps/evolution-mail.png +share/icons/hicolor/32x32/apps/evolution-memos.png +share/icons/hicolor/32x32/apps/evolution-tasks.png +share/icons/hicolor/32x32/apps/evolution.png +share/icons/hicolor/48x48/apps/evolution-mail.png +share/icons/hicolor/48x48/apps/evolution-memos.png +share/icons/hicolor/48x48/apps/evolution-tasks.png +share/icons/hicolor/48x48/apps/evolution.png +share/icons/hicolor/scalable/apps/evolution.svg +share/locale/af/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/am/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ar/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/as/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ast/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/az/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/be/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/be@latin/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/bg/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/bn/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/bn_IN/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/br/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/bs/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ca/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ca@valencia/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/cs/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/cy/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/da/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/de/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/dz/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/el/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/en_AU/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/en_CA/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/en_GB/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/en@shaw/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/es/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/et/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/eu/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/fa/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/fi/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/fr/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ga/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/gl/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/gu/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/he/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/hi/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/hr/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/hu/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/id/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/is/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/it/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ja/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ka/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/kn/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ko/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ku/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/lt/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/lv/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/mai/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/mk/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ml/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/mn/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/mr/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ms/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/nb/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/nds/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ne/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/nl/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/nn/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/oc/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/or/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/pa/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/pl/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ps/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/pt/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/pt_BR/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ro/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ru/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/rw/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/si/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/sk/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/sl/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/sq/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/sr/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/sr@latin/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/sv/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/ta/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/te/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/th/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/tr/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/uk/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/vi/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/wa/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/xh/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/zh_CN/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/zh_HK/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/zh_TW/LC_MESSAGES/evolution-%%VERSION%%.mo +share/mime-info/evolution.mime +share/omf/evolution/evolution-C.omf +share/omf/evolution/evolution-cs.omf +share/omf/evolution/evolution-de.omf +share/omf/evolution/evolution-el.omf +share/omf/evolution/evolution-en_GB.omf +share/omf/evolution/evolution-es.omf +share/omf/evolution/evolution-eu.omf +share/omf/evolution/evolution-fr.omf +share/omf/evolution/evolution-mk.omf +share/omf/evolution/evolution-oc.omf +share/omf/evolution/evolution-ru.omf +share/omf/evolution/evolution-sv.omf +@dirrm share/omf/evolution +@dirrm share/gnome/help/evolution/sv/figures +@dirrm share/gnome/help/evolution/sv +@dirrm share/gnome/help/evolution/ru/figures +@dirrm share/gnome/help/evolution/ru +@dirrm share/gnome/help/evolution/oc/figures +@dirrm share/gnome/help/evolution/oc +@dirrm share/gnome/help/evolution/mk/figures +@dirrm share/gnome/help/evolution/mk +@dirrm share/gnome/help/evolution/fr/figures +@dirrm share/gnome/help/evolution/fr +@dirrm share/gnome/help/evolution/eu/figures +@dirrm share/gnome/help/evolution/eu +@dirrm share/gnome/help/evolution/es/figures +@dirrm share/gnome/help/evolution/es +@dirrm share/gnome/help/evolution/en_GB/figures +@dirrm share/gnome/help/evolution/en_GB +@dirrm share/gnome/help/evolution/el/figures +@dirrm share/gnome/help/evolution/el +@dirrm share/gnome/help/evolution/de/figures +@dirrm share/gnome/help/evolution/de +@dirrm share/gnome/help/evolution/cs/figures +@dirrm share/gnome/help/evolution/cs +@dirrm share/gnome/help/evolution/C/figures +@dirrm share/gnome/help/evolution/C +@dirrm share/gnome/help/evolution +@dirrm %%DATADIR%%/%%VERSION%%/views/tasks +@dirrm %%DATADIR%%/%%VERSION%%/views/memos +@dirrm %%DATADIR%%/%%VERSION%%/views/mail +@dirrm %%DATADIR%%/%%VERSION%%/views/calendar +@dirrm %%DATADIR%%/%%VERSION%%/views/addressbook +@dirrm %%DATADIR%%/%%VERSION%%/views +@dirrm %%DATADIR%%/%%VERSION%%/ui +@dirrm %%DATADIR%%/%%VERSION%%/sounds +@dirrm %%DATADIR%%/%%VERSION%%/mail-autoconfig +@dirrm %%DATADIR%%/%%VERSION%%/images +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/scalable/actions +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/scalable +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/status +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/apps +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/actions +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/48x48 +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/status +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/apps +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/actions +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/32x32 +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/status +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/places +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/apps +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/24x24 +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/places +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/apps +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/actions +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/22x22 +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/status +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/places +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/apps +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/16x16 +@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor +@dirrm %%DATADIR%%/%%VERSION%%/icons +@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/sv +@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/sq +@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/pt +@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/pl +@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/it +@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/hu +@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/fr +@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/es +@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/de +@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/cs +@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/ca +@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/C +@dirrm %%DATADIR%%/%%VERSION%%/help/quickref +@dirrm %%DATADIR%%/%%VERSION%%/help +@dirrm %%DATADIR%%/%%VERSION%%/etspec +@dirrm %%DATADIR%%/%%VERSION%%/errors +@dirrm %%DATADIR%%/%%VERSION%%/ecps +@dirrm %%DATADIR%%/%%VERSION%%/default/zh_CN/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/zh_CN/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/zh_CN +@dirrm %%DATADIR%%/%%VERSION%%/default/sv/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/sv/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/sv +@dirrm %%DATADIR%%/%%VERSION%%/default/sr@latin/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/sr@latin/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/sr@latin +@dirrm %%DATADIR%%/%%VERSION%%/default/sr/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/sr/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/sr +@dirrm %%DATADIR%%/%%VERSION%%/default/ro/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/ro/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/ro +@dirrm %%DATADIR%%/%%VERSION%%/default/pt/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/pt/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/pt +@dirrm %%DATADIR%%/%%VERSION%%/default/pl/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/pl/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/pl +@dirrm %%DATADIR%%/%%VERSION%%/default/nl/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/nl/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/nl +@dirrm %%DATADIR%%/%%VERSION%%/default/mk/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/mk/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/mk +@dirrm %%DATADIR%%/%%VERSION%%/default/lt/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/lt/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/lt +@dirrm %%DATADIR%%/%%VERSION%%/default/ko/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/ko/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/ko +@dirrm %%DATADIR%%/%%VERSION%%/default/ja/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/ja/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/ja +@dirrm %%DATADIR%%/%%VERSION%%/default/it/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/it/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/it +@dirrm %%DATADIR%%/%%VERSION%%/default/hu/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/hu/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/hu +@dirrm %%DATADIR%%/%%VERSION%%/default/fr/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/fr/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/fr +@dirrm %%DATADIR%%/%%VERSION%%/default/fi/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/fi/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/fi +@dirrm %%DATADIR%%/%%VERSION%%/default/es/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/es/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/es +@dirrm %%DATADIR%%/%%VERSION%%/default/de/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/de/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/de +@dirrm %%DATADIR%%/%%VERSION%%/default/cs/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/cs/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/cs +@dirrm %%DATADIR%%/%%VERSION%%/default/ca/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/ca/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/ca +@dirrm %%DATADIR%%/%%VERSION%%/default/C/mail/local +@dirrm %%DATADIR%%/%%VERSION%%/default/C/mail +@dirrm %%DATADIR%%/%%VERSION%%/default/C +@dirrm %%DATADIR%%/%%VERSION%%/default +@dirrm %%DATADIR%%/%%VERSION%% +@dirrm %%DATADIR%% +@dirrm share/doc/eshell +@dirrmtry share/applications +@dirrm libexec/evolution/%%VERSION%% +@dirrm libexec/evolution +@dirrm lib/evolution/%%VERSION%%/plugins +@dirrm lib/evolution/%%VERSION%%/modules +%%PILOT%%@dirrm lib/evolution/%%VERSION%%/conduits +@dirrm lib/evolution/%%VERSION%% +@dirrm lib/evolution +@dirrm include/evolution-%%VERSION%%/text +@dirrm include/evolution-%%VERSION%%/table +@dirrm include/evolution-%%VERSION%%/shell +@dirrm include/evolution-%%VERSION%%/misc +@dirrm include/evolution-%%VERSION%%/menus +@dirrm include/evolution-%%VERSION%%/mail +@dirrm include/evolution-%%VERSION%%/filter +@dirrm include/evolution-%%VERSION%%/em-format +@dirrm include/evolution-%%VERSION%%/e-util +@dirrm include/evolution-%%VERSION%%/e-conduit +@dirrm include/evolution-%%VERSION%%/composer +@dirrm include/evolution-%%VERSION%%/calendar/gui/dialogs +@dirrm include/evolution-%%VERSION%%/calendar/gui +@dirrm include/evolution-%%VERSION%%/calendar/common +%%PILOT%%@dirrm include/evolution-%%VERSION%%/calendar/conduits/common +%%PILOT%%@dirrm include/evolution-%%VERSION%%/calendar/conduits +@dirrm include/evolution-%%VERSION%%/calendar +@dirrm include/evolution-%%VERSION%%/addressbook/gui/widgets +@dirrm include/evolution-%%VERSION%%/addressbook/gui +@dirrm include/evolution-%%VERSION%%/addressbook +@dirrm include/evolution-%%VERSION%% +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/xh/LC_MESSAGES +@dirrmtry share/locale/xh +@dirrmtry share/locale/te/LC_MESSAGES +@dirrmtry share/locale/te +@dirrmtry share/locale/sr@latin/LC_MESSAGES +@dirrmtry share/locale/sr@latin +@dirrmtry share/locale/si/LC_MESSAGES +@dirrmtry share/locale/si +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/ps/LC_MESSAGES +@dirrmtry share/locale/ps +@dirrmtry share/locale/oc/LC_MESSAGES +@dirrmtry share/locale/oc +@dirrmtry share/locale/nds/LC_MESSAGES +@dirrmtry share/locale/nds +@dirrmtry share/locale/mr/LC_MESSAGES +@dirrmtry share/locale/mr +@dirrmtry share/locale/mai/LC_MESSAGES +@dirrmtry share/locale/mai +@dirrmtry share/locale/ku/LC_MESSAGES +@dirrmtry share/locale/ku +@dirrmtry share/locale/en@shaw/LC_MESSAGES +@dirrmtry share/locale/en@shaw +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@dirrmtry share/locale/ca@valencia/LC_MESSAGES +@dirrmtry share/locale/ca@valencia +@dirrmtry share/locale/bn_IN/LC_MESSAGES +@dirrmtry share/locale/bn_IN +@dirrmtry share/locale/be@latin/LC_MESSAGES +@dirrmtry share/locale/be@latin +@dirrmtry share/locale/ast/LC_MESSAGES +@dirrmtry share/locale/ast +@dirrmtry share/locale/as/LC_MESSAGES +@dirrmtry share/locale/as |