summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authormanu <manu@pkgsrc.org>2011-10-16 05:36:32 +0000
committermanu <manu@pkgsrc.org>2011-10-16 05:36:32 +0000
commitd3d8d22b5e8510bed8d4aee946933ae13e023cad (patch)
tree023bad28b432480c0047475525b03fdd3f3dae4e /www
parentd6dc8ba803fbdcffe03ba6b1392bc77778dcabd3 (diff)
downloadpkgsrc-d3d8d22b5e8510bed8d4aee946933ae13e023cad.tar.gz
Groupware server supporting CalDAV, CardDAV and GroupDAV
Diffstat (limited to 'www')
-rw-r--r--www/SOGo/DESCR12
-rw-r--r--www/SOGo/MESSAGE9
-rw-r--r--www/SOGo/Makefile62
-rw-r--r--www/SOGo/PLIST1643
-rw-r--r--www/SOGo/distinfo6
-rw-r--r--www/SOGo/files/SOGo.conf5
-rwxr-xr-xwww/SOGo/files/sogod.sh44
-rw-r--r--www/SOGo/patches/patch-aa15
8 files changed, 1796 insertions, 0 deletions
diff --git a/www/SOGo/DESCR b/www/SOGo/DESCR
new file mode 100644
index 00000000000..cda2b86d9c1
--- /dev/null
+++ b/www/SOGo/DESCR
@@ -0,0 +1,12 @@
+SOGo is fully supported and trusted groupware server with a focus
+on scalability and open standards. SOGo is released under the GNU
+GPL/LGPL v2 and above.
+
+SOGo provides a rich AJAX-based Web interface and supports multiple
+native clients through the use of standard protocols such as CalDAV,
+CardDAV and GroupDAV.
+
+SOGo is the missing component of your infrastructure; it sits in
+the middle of your servers to offer your users an uniform and
+complete interface to access their information. It has been deployed
+in production environments where thousands of users are involved.
diff --git a/www/SOGo/MESSAGE b/www/SOGo/MESSAGE
new file mode 100644
index 00000000000..bb8c5bb2e72
--- /dev/null
+++ b/www/SOGo/MESSAGE
@@ -0,0 +1,9 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1.1.1 2011/10/16 05:36:35 manu Exp $
+
+You will need to make SOGo accessible through your HTTP server.
+If you are running Apache then you may add the following lines to httpd.conf:
+
+ Include ${PKG_SYSCONFDIR}/SOGo.conf
+
+===========================================================================
diff --git a/www/SOGo/Makefile b/www/SOGo/Makefile
new file mode 100644
index 00000000000..4c11034bbb4
--- /dev/null
+++ b/www/SOGo/Makefile
@@ -0,0 +1,62 @@
+# $NetBSD: Makefile,v 1.1.1.1 2011/10/16 05:36:32 manu Exp $
+#
+
+DISTNAME= SOGo-2.0.0b1
+CATEGORIES= www
+MASTER_SITES= http://www.sogo.nu/files/downloads/SOGo/Sources/
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://www.sogo.nu/
+COMMENT= Groupware server supporting CalDAV, CardDAV and GroupDAV
+LICENSE= gnu-gpl-v2
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+WRKSRC= ${WRKDIR}/SOGo
+HAS_CONFIGURE= yes
+USE_LANGUAGES= c
+USE_TOOLS+= gmake
+
+CONFIGURE_ARGS= --enable-debug --disable-strip
+
+SOGOUSER?= sogo
+SOGOGROUP?= sogo
+SOGOETCDIR?= ${PKG_SYSCONFDIR}/sogo
+SOGORUNDIR?= ${VARBASE}/sogo
+INSTALLATION_DIRS+= share/examples/SOGo
+CONF_FILES= ${DESTDIR}${PREFIX}/share/examples/SOGo/SOGo.conf \
+ ${PKG_SYSCONFDIR}/SOGo.conf
+OWN_DIRS+= ${SOGOETCDIR}
+OWN_DIRS+= ${SOGORUNDIR}
+OWN_DIRS_PERMS+= ${SOGOETCDIR} ${SOGOUSER} ${SOGOGROUP} 0755
+OWN_DIRS_PERMS+= ${SOGORUNDIR} ${SOGOUSER} ${SOGOGROUP} 0755
+BUILD_DEFS+= VARBASE
+
+PKG_GROUPS+= ${SOGOGROUP}
+PKG_USERS+= ${SOGOUSER}:${SOGOGROUP}
+PKG_HOME.${SOGOUSER}= ${SOGOETCDIR}
+PKG_SHELL.${SOGOUSER}= ${SH}
+PKG_GECOS.${SOGOUSER}= SOGo daemon user
+
+FILES_SUBST+= SOGORUNDIR=${SOGORUNDIR}
+FILES_SUBST+= SOGOETCDIR=${SOGOETCDIR}
+FILES_SUBST+= SOGOUSER=${SOGOUSER}
+RCD_SCRIPTS= sogod
+
+pre-install:
+ ${SED} -e "s|/usr/GNUstep/System/Library|${PREFIX}/lib/GNUstep|" \
+ ${WRKSRC}/Apache/SOGo.conf > \
+ ${DESTDIR}${PREFIX}/share/examples/SOGo/SOGo.conf
+ ${SED} -e "s|@PREFIX@|${PREFIX}|" ${FILESDIR}/SOGo.conf >> \
+ ${DESTDIR}${PREFIX}/share/examples/SOGo/SOGo.conf
+ ${MKDIR} -p ${DESTDIR}${PREFIX}/lib/GNUstep/Frameworks
+ ${LN} -s ../SOGo/SOGo.framework \
+ ${DESTDIR}${PREFIX}/lib/GNUstep/Frameworks/SOGo.framework
+
+.include "../../devel/gnustep-base/buildlink3.mk"
+.include "../../devel/gnustep-make/buildlink3.mk"
+.include "../../devel/SOPE/buildlink3.mk"
+.include "../../devel/libmemcached/buildlink3.mk"
+.include "../../textproc/libxml2/buildlink3.mk"
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/www/SOGo/PLIST b/www/SOGo/PLIST
new file mode 100644
index 00000000000..1f03d75d2cc
--- /dev/null
+++ b/www/SOGo/PLIST
@@ -0,0 +1,1643 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2011/10/16 05:36:35 manu Exp $
+share/examples/SOGo/SOGo.conf
+share/examples/rc.d/sogod
+lib/GNUstep/Frameworks/SOGo.framework
+include/GDLContentStore/EOAdaptorChannel+GCS.h
+include/GDLContentStore/GCSAlarmsFolder.h
+include/GDLContentStore/GCSChannelManager.h
+include/GDLContentStore/GCSContext.h
+include/GDLContentStore/GCSFieldExtractor.h
+include/GDLContentStore/GCSFieldInfo.h
+include/GDLContentStore/GCSFolder.h
+include/GDLContentStore/GCSFolderManager.h
+include/GDLContentStore/GCSFolderType.h
+include/GDLContentStore/GCSSessionsFolder.h
+include/GDLContentStore/GCSSpecialQueries.h
+include/GDLContentStore/GCSStringFormatter.h
+include/GDLContentStore/NSURL+GCS.h
+include/NGCards/CardElement.h
+include/NGCards/CardGroup.h
+include/NGCards/CardVersitRenderer.h
+include/NGCards/NGCards.h
+include/NGCards/NGVCard.h
+include/NGCards/NGVCardPhoto.h
+include/NGCards/NGVCardReference.h
+include/NGCards/NGVList.h
+include/NGCards/NSArray+NGCards.h
+include/NGCards/NSCalendarDate+ICal.h
+include/NGCards/NSCalendarDate+NGCards.h
+include/NGCards/NSDictionary+NGCards.h
+include/NGCards/NSString+NGCards.h
+include/NGCards/iCalAlarm.h
+include/NGCards/iCalAttachment.h
+include/NGCards/iCalByDayMask.h
+include/NGCards/iCalCalendar.h
+include/NGCards/iCalDataSource.h
+include/NGCards/iCalDateTime.h
+include/NGCards/iCalEntityObject.h
+include/NGCards/iCalEvent.h
+include/NGCards/iCalEventChanges.h
+include/NGCards/iCalFreeBusy.h
+include/NGCards/iCalJournal.h
+include/NGCards/iCalObject.h
+include/NGCards/iCalPerson.h
+include/NGCards/iCalRecurrenceCalculator.h
+include/NGCards/iCalRecurrenceRule.h
+include/NGCards/iCalRepeatableEntityObject.h
+include/NGCards/iCalTimeZone.h
+include/NGCards/iCalTimeZonePeriod.h
+include/NGCards/iCalToDo.h
+include/NGCards/iCalTrigger.h
+include/NGCards/iCalUTCOffset.h
+include/NGCards/iCalXMLRenderer.h
+include/SOGo
+include/SOGoUI/SOGoAptFormatter.h
+include/SOGoUI/UIxComponent.h
+include/SOGoUI/UIxJSClose.h
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Abidjan.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Accra.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Addis_Ababa.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Algiers.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Asmara.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Bamako.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Bangui.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Banjul.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Bissau.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Blantyre.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Brazzaville.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Bujumbura.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Cairo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Casablanca.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Ceuta.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Conakry.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Dakar.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Dar_es_Salaam.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Djibouti.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Douala.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/El_Aaiun.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Freetown.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Gaborone.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Harare.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Johannesburg.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Kampala.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Khartoum.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Kigali.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Kinshasa.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lagos.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Libreville.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lome.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Luanda.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lubumbashi.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lusaka.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Malabo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Maputo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Maseru.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Mbabane.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Mogadishu.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Monrovia.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Nairobi.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Ndjamena.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Niamey.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Nouakchott.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Ouagadougou.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Porto-Novo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Sao_Tome.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Tripoli.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Tunis.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Windhoek.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Adak.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Anchorage.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Anguilla.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Antigua.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Araguaina.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Buenos_Aires.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Catamarca.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Cordoba.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Jujuy.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/La_Rioja.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Mendoza.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Rio_Gallegos.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Salta.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/San_Juan.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/San_Luis.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Tucuman.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Ushuaia.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Aruba.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Asuncion.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Atikokan.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Bahia.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Bahia_Banderas.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Barbados.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Belem.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Belize.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Blanc-Sablon.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Boa_Vista.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Bogota.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Boise.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cambridge_Bay.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Campo_Grande.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cancun.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Caracas.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cayenne.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cayman.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Chicago.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Chihuahua.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Costa_Rica.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cuiaba.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Curacao.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Danmarkshavn.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Dawson.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Dawson_Creek.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Denver.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Detroit.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Dominica.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Edmonton.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Eirunepe.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/El_Salvador.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Fortaleza.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Glace_Bay.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Godthab.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Goose_Bay.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Grand_Turk.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Grenada.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Guadeloupe.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Guatemala.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Guayaquil.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Guyana.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Halifax.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Havana.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Hermosillo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Indianapolis.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Knox.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Marengo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Petersburg.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Tell_City.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Vevay.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Vincennes.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Winamac.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Inuvik.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Iqaluit.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Jamaica.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Juneau.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Kentucky/Louisville.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Kentucky/Monticello.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/La_Paz.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Lima.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Los_Angeles.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Maceio.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Managua.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Manaus.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Marigot.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Martinique.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Matamoros.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Mazatlan.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Menominee.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Merida.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Mexico_City.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Miquelon.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Moncton.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Montevideo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Montreal.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Nassau.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/New_York.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Nipigon.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Nome.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Noronha.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/North_Dakota/Center.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/North_Dakota/New_Salem.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Ojinaga.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Panama.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Pangnirtung.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Paramaribo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Phoenix.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Port-au-Prince.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Port_of_Spain.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Porto_Velho.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Puerto_Rico.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Rainy_River.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Rankin_Inlet.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Recife.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Regina.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Resolute.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Rio_Branco.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santa_Isabel.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santarem.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santiago.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santo_Domingo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Sao_Paulo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Scoresbysund.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Shiprock.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Barthelemy.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Johns.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Kitts.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Lucia.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Thomas.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Vincent.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Swift_Current.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Tegucigalpa.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Thule.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Thunder_Bay.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Tijuana.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Toronto.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Tortola.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Vancouver.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Whitehorse.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Winnipeg.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Yakutat.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Yellowknife.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Casey.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Davis.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/DumontDUrville.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Macquarie.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Mawson.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/McMurdo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Palmer.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Rothera.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/South_Pole.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Syowa.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Vostok.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Arctic/Longyearbyen.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Aden.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Almaty.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Amman.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Anadyr.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Aqtau.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Aqtobe.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Ashgabat.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Baghdad.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Bahrain.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Baku.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Bangkok.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Beirut.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Bishkek.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Brunei.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Choibalsan.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Chongqing.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Colombo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Damascus.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dhaka.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dili.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dubai.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dushanbe.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Gaza.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Harbin.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Ho_Chi_Minh.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Hong_Kong.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Hovd.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Irkutsk.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Istanbul.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Jakarta.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Jayapura.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Jerusalem.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kabul.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kamchatka.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Karachi.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kashgar.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kathmandu.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kolkata.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Krasnoyarsk.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kuala_Lumpur.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kuching.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kuwait.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Macau.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Magadan.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Makassar.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Manila.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Muscat.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Nicosia.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Novokuznetsk.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Novosibirsk.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Omsk.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Oral.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Phnom_Penh.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Pontianak.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Pyongyang.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Qatar.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Qyzylorda.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Rangoon.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Riyadh.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Sakhalin.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Samarkand.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Seoul.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Shanghai.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Singapore.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Taipei.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Tashkent.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Tbilisi.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Tehran.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Thimphu.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Tokyo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Ulaanbaatar.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Urumqi.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Vientiane.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Vladivostok.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Yakutsk.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Yekaterinburg.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Yerevan.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Azores.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Bermuda.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Canary.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Cape_Verde.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Faroe.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Madeira.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Reykjavik.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/South_Georgia.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/St_Helena.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Stanley.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Adelaide.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Brisbane.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Broken_Hill.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Currie.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Darwin.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Eucla.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Hobart.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Lindeman.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Lord_Howe.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Melbourne.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Perth.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Sydney.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Amsterdam.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Andorra.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Athens.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Belgrade.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Berlin.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Bratislava.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Brussels.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Bucharest.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Budapest.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Chisinau.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Copenhagen.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Dublin.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Gibraltar.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Guernsey.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Helsinki.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Isle_of_Man.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Istanbul.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Jersey.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Kaliningrad.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Kiev.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Lisbon.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Ljubljana.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/London.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Luxembourg.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Madrid.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Malta.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Mariehamn.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Minsk.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Monaco.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Moscow.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Nicosia.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Oslo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Paris.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Podgorica.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Prague.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Riga.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Rome.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Samara.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/San_Marino.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Sarajevo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Simferopol.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Skopje.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Sofia.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Stockholm.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Tallinn.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Tirane.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Uzhgorod.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Vaduz.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Vatican.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Vienna.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Vilnius.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Volgograd.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Warsaw.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Zagreb.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Zaporozhye.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Zurich.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Antananarivo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Chagos.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Christmas.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Cocos.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Comoro.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Kerguelen.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Mahe.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Maldives.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Mauritius.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Mayotte.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Reunion.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Apia.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Auckland.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Chatham.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Chuuk.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Easter.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Efate.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Enderbury.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Fakaofo.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Fiji.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Funafuti.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Galapagos.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Gambier.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Guadalcanal.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Guam.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Honolulu.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Johnston.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Kiritimati.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Kosrae.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Kwajalein.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Majuro.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Marquesas.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Midway.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Nauru.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Niue.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Norfolk.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Noumea.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Pago_Pago.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Palau.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Pitcairn.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Pohnpei.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Ponape.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Port_Moresby.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Rarotonga.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Saipan.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Tahiti.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Tarawa.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Tongatapu.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Truk.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Wake.ics
+lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Wallis.ics
+lib/GNUstep/OCSTypeModels/appointment-oracle.ocs
+lib/GNUstep/OCSTypeModels/appointment.ocs
+lib/GNUstep/OCSTypeModels/contact-oracle.ocs
+lib/GNUstep/OCSTypeModels/contact.ocs
+lib/GNUstep/SOGo/AdministrationUI.SOGo/AdministrationUI
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Czech.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Dutch.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/English.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/French.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/German.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Info-gnustep.plist
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Italian.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Norwegian.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Polish.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Russian.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Spanish.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Swedish.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/UIxAdministration.toolbar
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Welsh.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/product.plist
+lib/GNUstep/SOGo/AdministrationUI.SOGo/stamp.make
+lib/GNUstep/SOGo/Appointments.SOGo/Appointments
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Czech.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Dutch.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/English.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/French.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/German.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Hungarian.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Icelandic.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Info-gnustep.plist
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Italian.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Norwegian.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Polish.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Russian.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Spanish.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Swedish.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Ukrainian.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Welsh.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/product.plist
+lib/GNUstep/SOGo/Appointments.SOGo/bundle-info.plist
+lib/GNUstep/SOGo/CommonUI.SOGo/CommonUI
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Czech.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Dutch.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/English.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/French.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/German.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Info-gnustep.plist
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Italian.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Norwegian.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Polish.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Russian.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Spanish.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Swedish.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Welsh.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/product.plist
+lib/GNUstep/SOGo/CommonUI.SOGo/bundle-info.plist
+lib/GNUstep/SOGo/CommonUI.SOGo/stamp.make
+lib/GNUstep/SOGo/Contacts.SOGo/Contacts
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Czech.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Dutch.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/English.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/French.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/German.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Hungarian.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Icelandic.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Info-gnustep.plist
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Italian.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Norwegian.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Polish.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Russian.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Spanish.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Swedish.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Ukrainian.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Welsh.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/product.plist
+lib/GNUstep/SOGo/Contacts.SOGo/stamp.make
+lib/GNUstep/SOGo/ContactsUI.SOGo/ContactsUI
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Czech.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Dutch.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/English.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/French.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/German.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Info-gnustep.plist
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Italian.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Norwegian.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Polish.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Russian.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/SOGoContactFolder.toolbar
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Spanish.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Swedish.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Welsh.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/product.plist
+lib/GNUstep/SOGo/ContactsUI.SOGo/bundle-info.plist
+lib/GNUstep/SOGo/ContactsUI.SOGo/stamp.make
+lib/GNUstep/SOGo/MailPartViewers.SOGo/MailPartViewers
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Czech.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Dutch.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/English.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/French.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/German.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Hungarian.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Icelandic.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Info-gnustep.plist
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Italian.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Norwegian.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Polish.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Russian.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Spanish.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Swedish.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Ukrainian.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Welsh.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/product.plist
+lib/GNUstep/SOGo/MailPartViewers.SOGo/stamp.make
+lib/GNUstep/SOGo/Mailer.SOGo/Mailer
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/Info-gnustep.plist
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseForward.wo/SOGoMailBrazilianPortugueseForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseForward.wo/SOGoMailBrazilianPortugueseForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseReply.wo/SOGoMailBrazilianPortugueseReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseReply.wo/SOGoMailBrazilianPortugueseReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanForward.wo/SOGoMailCatalanForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanForward.wo/SOGoMailCatalanForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanReply.wo/SOGoMailCatalanReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanReply.wo/SOGoMailCatalanReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechForward.wo/SOGoMailCzechForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechForward.wo/SOGoMailCzechForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechReply.wo/SOGoMailCzechReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechReply.wo/SOGoMailCzechReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchForward.wo/SOGoMailDutchForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchForward.wo/SOGoMailDutchForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchReply.wo/SOGoMailDutchReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchReply.wo/SOGoMailDutchReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishForward.wo/SOGoMailEnglishForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishForward.wo/SOGoMailEnglishForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishReply.wo/SOGoMailEnglishReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishReply.wo/SOGoMailEnglishReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchForward.wo/SOGoMailFrenchForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchForward.wo/SOGoMailFrenchForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchReply.wo/SOGoMailFrenchReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchReply.wo/SOGoMailFrenchReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanForward.wo/SOGoMailGermanForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanForward.wo/SOGoMailGermanForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanReply.wo/SOGoMailGermanReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanReply.wo/SOGoMailGermanReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianForward.wo/SOGoMailHungarianForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianForward.wo/SOGoMailHungarianForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianReply.wo/SOGoMailHungarianReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianReply.wo/SOGoMailHungarianReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicForward.wo/SOGoMailIcelandicForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicReply.wo/SOGoMailIcelandicReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianForward.wo/SOGoMailItalianForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianForward.wo/SOGoMailItalianForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianReply.wo/SOGoMailItalianReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianReply.wo/SOGoMailItalianReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianForward.wo/SOGoMailNorwegianForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianForward.wo/SOGoMailNorwegianForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianReply.wo/SOGoMailNorwegianReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianReply.wo/SOGoMailNorwegianReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishForward.wo/SOGoMailPolishForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishForward.wo/SOGoMailPolishForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishReply.wo/SOGoMailPolishReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishReply.wo/SOGoMailPolishReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianForward.wo/SOGoMailRussianForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianForward.wo/SOGoMailRussianForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianReply.wo/SOGoMailRussianReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianReply.wo/SOGoMailRussianReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishForward.wo/SOGoMailSpanishForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishForward.wo/SOGoMailSpanishForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishReply.wo/SOGoMailSpanishReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishReply.wo/SOGoMailSpanishReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishForward.wo/SOGoMailSwedishForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishForward.wo/SOGoMailSwedishForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishReply.wo/SOGoMailSwedishReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishReply.wo/SOGoMailSwedishReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshForward.wo/SOGoMailWelshForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshForward.wo/SOGoMailWelshForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshReply.wo/SOGoMailWelshReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshReply.wo/SOGoMailWelshReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/product.plist
+lib/GNUstep/SOGo/Mailer.SOGo/bundle-info.plist
+lib/GNUstep/SOGo/MailerUI.SOGo/MailerUI
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Czech.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Dutch.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/English.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/French.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/German.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Info-gnustep.plist
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Italian.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Norwegian.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Polish.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Russian.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SOGoDraftObject.toolbar
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SOGoMailObject.toolbar
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Spanish.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Swedish.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Welsh.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/product.plist
+lib/GNUstep/SOGo/MailerUI.SOGo/bundle-info.plist
+lib/GNUstep/SOGo/MailerUI.SOGo/stamp.make
+lib/GNUstep/SOGo/MainUI.SOGo/MainUI
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/BrazilianPortuguese.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Catalan.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Czech.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Czech.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Dutch.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Dutch.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/English.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/English.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/French.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/French.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/German.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/German.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Hungarian.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Icelandic.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Info-gnustep.plist
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Italian.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Italian.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Norwegian.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Norwegian.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSFolderInfo-oracle.sql
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSFolderInfo.sql
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Polish.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Polish.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Russian.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Russian.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/SOGoProfile-oracle.sql
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/SOGoProfile.sql
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Spanish.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Spanish.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Swedish.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Swedish.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Ukrainian.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Welsh.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Welsh.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/product.plist
+lib/GNUstep/SOGo/MainUI.SOGo/stamp.make
+lib/GNUstep/SOGo/PreferencesUI.SOGo/PreferencesUI
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Czech.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Dutch.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/English.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/French.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/German.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Info-gnustep.plist
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Italian.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Norwegian.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Polish.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Russian.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Spanish.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Swedish.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/UIxPreferences.toolbar
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Welsh.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/product.plist
+lib/GNUstep/SOGo/PreferencesUI.SOGo/stamp.make
+lib/GNUstep/SOGo/SOGo.framework/Headers
+lib/GNUstep/SOGo/SOGo.framework/Resources
+lib/GNUstep/SOGo/SOGo.framework/SOGo
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/DOMNode+SOGo.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/LDAPSource.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/NSArray+DAV.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/NSArray+Utilities.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/NSCalendarDate+SOGo.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/NSDictionary+DAV.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/NSDictionary+URL.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/NSDictionary+Utilities.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/NSNull+Utilities.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/NSNumber+Utilities.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/NSObject+DAV.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/NSObject+Utilities.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/NSString+DAV.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/NSString+Utilities.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/NSURL+DAV.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoAuthenticator.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoBuild.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoCASSession.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoCache.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoConstants.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoContentObject.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoDAVAuthenticator.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoDateFormatter.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoFolder.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoGCSFolder.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoGroup.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoMailer.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoObject.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoParentFolder.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoPermissions.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoProductLoader.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoProxyAuthenticator.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoSession.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoSieveManager.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoStartupLogger.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoUser.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoUserFolder.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoUserManager.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoUserProfile.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoWebAuthenticator.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoWebDAVAclManager.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SOGoWebDAVValue.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/SQLSource.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/WOContext+SOGo.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/WORequest+SOGo.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/WOResourceManager+SOGo.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Headers/WOResponse+SOGo.h
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Resources/DAVReportMap.plist
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Resources/Info-gnustep.plist
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/Resources/SOGoDefaults.plist
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/SOGo
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/libSOGo.so
+lib/GNUstep/SOGo/SOGo.framework/Versions/2/libSOGo.so.2.0.0
+lib/GNUstep/SOGo/SOGo.framework/Versions/Current
+lib/GNUstep/SOGo/SOGo.framework/libSOGo.so
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Czech.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Dutch.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/English.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/French.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/German.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Info-gnustep.plist
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Italian.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Norwegian.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Polish.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Russian.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoAppointmentFolders.toolbar
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoAppointmentObject.toolbar
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoAppointmentObjectAccept.toolbar
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoAppointmentObjectAcceptOrDecline.toolbar
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoAppointmentObjectDecline.toolbar
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoComponentClose.toolbar
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoEmpty.toolbar
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoTaskObject.toolbar
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Spanish.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Swedish.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Welsh.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/cycles.plist
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/product.plist
+lib/GNUstep/SOGo/SchedulerUI.SOGo/SchedulerUI
+lib/GNUstep/SOGo/SchedulerUI.SOGo/bundle-info.plist
+lib/GNUstep/SOGo/SchedulerUI.SOGo/stamp.make
+lib/GNUstep/SOGo/Templates/AdministrationUI/UIxAdministration.wox
+lib/GNUstep/SOGo/Templates/AdministrationUI/UIxAdministrationFilterPanel.wox
+lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailDeletion.wox
+lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailDeletionReceipt.wox
+lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailICalReply.wox
+lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailInvitation.wox
+lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailInvitationReceipt.wox
+lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailUpdate.wox
+lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailUpdateReceipt.wox
+lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactEditor.wox
+lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactFoldersView.wox
+lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactView.wox
+lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsFilterPanel.wox
+lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsListView.wox
+lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsMailerSelection.wox
+lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsUserFolders.wox
+lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsUserRightsEditor.wox
+lib/GNUstep/SOGo/Templates/ContactsUI/UIxListEditor.wox
+lib/GNUstep/SOGo/Templates/ContactsUI/UIxListView.wox
+lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartAlternativeViewer.wox
+lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartExternalHTMLViewer.wox
+lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartHTMLViewer.wox
+lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartICalViewer.wox
+lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartImageViewer.wox
+lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartLinkViewer.wox
+lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartMessageViewer.wox
+lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartMixedViewer.wox
+lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartSignedViewer.wox
+lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartTextViewer.wox
+lib/GNUstep/SOGo/Templates/MailerUI/UIxMailEditor.wox
+lib/GNUstep/SOGo/Templates/MailerUI/UIxMailFilterPanel.wox
+lib/GNUstep/SOGo/Templates/MailerUI/UIxMailFolderMenu.wox
+lib/GNUstep/SOGo/Templates/MailerUI/UIxMailMainFrame.wox
+lib/GNUstep/SOGo/Templates/MailerUI/UIxMailMoveToPopUp.wox
+lib/GNUstep/SOGo/Templates/MailerUI/UIxMailPopupView.wox
+lib/GNUstep/SOGo/Templates/MailerUI/UIxMailToSelection.wox
+lib/GNUstep/SOGo/Templates/MailerUI/UIxMailUserDelegationEditor.wox
+lib/GNUstep/SOGo/Templates/MailerUI/UIxMailUserRightsEditor.wox
+lib/GNUstep/SOGo/Templates/MailerUI/UIxMailView.wox
+lib/GNUstep/SOGo/Templates/MailerUI/UIxMailWindowCloser.wox
+lib/GNUstep/SOGo/Templates/MainUI/SOGoBrowsersPanel.wox
+lib/GNUstep/SOGo/Templates/MainUI/SOGoGroupPage.wox
+lib/GNUstep/SOGo/Templates/MainUI/SOGoGroupsPage.wox
+lib/GNUstep/SOGo/Templates/MainUI/SOGoRootPage.wox
+lib/GNUstep/SOGo/Templates/MainUI/SOGoUserHomePage.wox
+lib/GNUstep/SOGo/Templates/PreferencesUI/UIxAdditionalPreferences.wox
+lib/GNUstep/SOGo/Templates/PreferencesUI/UIxFilterEditor.wox
+lib/GNUstep/SOGo/Templates/PreferencesUI/UIxPreferences.wox
+lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLCatalanAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLCatalanModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLCatalanRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLCzechAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLCzechModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLCzechRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLDutchAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLDutchModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLDutchRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLEnglishAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLEnglishModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLEnglishRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLFrenchAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLFrenchModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLFrenchRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLGermanAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLGermanModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLGermanRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLHungarianAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLHungarianModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLHungarianRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLIcelandicAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLIcelandicModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLIcelandicRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLItalianAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLItalianModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLItalianRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLNorwegianAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLNorwegianModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLNorwegianRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLPolishAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLPolishModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLPolishRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLRussianAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLRussianModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLRussianRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLSpanishAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLSpanishModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLSpanishRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLSwedishAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLSwedishModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLSwedishRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLUkrainianAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLUkrainianModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLUkrainianRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderBrazilianPortugueseAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderBrazilianPortugueseRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderCatalanAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderCatalanRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderCzechAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderCzechRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderDutchAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderDutchRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderEnglishAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderEnglishRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderFrenchAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderFrenchRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderGermanAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderGermanRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderHungarianAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderHungarianRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderIcelandicAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderIcelandicRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderItalianAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderItalianRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderNorwegianAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderNorwegianRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderPolishAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderPolishRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderRussianAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderRussianRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderSpanishAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderSpanishRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderSwedishAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderSwedishRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderUkrainianAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderUkrainianRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxAppointmentEditor.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxAppointmentProposal.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxAptTableView.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxAttendeesEditor.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalDateSelector.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalDayTable.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalDayView.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalFilterPanel.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalMainView.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalMonthView.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalMulticolumnDayView.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalUserRightsEditor.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalWeekView.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalendarProperties.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalendarSelector.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxColorPicker.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxComponentEditor.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxDatePicker.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxFilterList.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxFreeBusyUserSelector.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxOccurenceDialog.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxRecurrenceEditor.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxReminderEditor.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxSortButton.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxTaskEditor.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxTaskProposal.wox
+lib/GNUstep/SOGo/Templates/SchedulerUI/UIxTimeDateControl.wox
+lib/GNUstep/SOGo/Templates/UIxAclEditor.wox
+lib/GNUstep/SOGo/Templates/UIxJSClose.wox
+lib/GNUstep/SOGo/Templates/UIxModuleAccessDenied.wox
+lib/GNUstep/SOGo/Templates/UIxPageFrame.wox
+lib/GNUstep/SOGo/Templates/UIxSortableTableHeader.wox
+lib/GNUstep/SOGo/Templates/UIxToolbar.wox
+lib/GNUstep/SOGo/Templates/UIxUserRightsEditor.wox
+lib/GNUstep/SOGo/Templates/UIxWinClose.wox
+lib/GNUstep/SOGo/WebServerResources/AdministrationUI.css
+lib/GNUstep/SOGo/WebServerResources/AdministrationUI.js
+lib/GNUstep/SOGo/WebServerResources/COPYING-thunderbird.txt
+lib/GNUstep/SOGo/WebServerResources/ContactsUI.css
+lib/GNUstep/SOGo/WebServerResources/ContactsUI.js
+lib/GNUstep/SOGo/WebServerResources/HTMLElement.js
+lib/GNUstep/SOGo/WebServerResources/HTMLInputElement.js
+lib/GNUstep/SOGo/WebServerResources/HTMLTableElement.js
+lib/GNUstep/SOGo/WebServerResources/JavascriptAPIExtensions.js
+lib/GNUstep/SOGo/WebServerResources/LICENSE-thunderbird.txt
+lib/GNUstep/SOGo/WebServerResources/MailerUI.css
+lib/GNUstep/SOGo/WebServerResources/MailerUI.js
+lib/GNUstep/SOGo/WebServerResources/MailerUIdTree.js
+lib/GNUstep/SOGo/WebServerResources/PasswordPolicy.js
+lib/GNUstep/SOGo/WebServerResources/RowEditionController.js
+lib/GNUstep/SOGo/WebServerResources/SOGoAutoCompletion.js
+lib/GNUstep/SOGo/WebServerResources/SOGoDataTable.js
+lib/GNUstep/SOGo/WebServerResources/SOGoDragHandles.js
+lib/GNUstep/SOGo/WebServerResources/SOGoMailDataSource.js
+lib/GNUstep/SOGo/WebServerResources/SOGoResizableTable.js
+lib/GNUstep/SOGo/WebServerResources/SOGoRootPage.css
+lib/GNUstep/SOGo/WebServerResources/SOGoRootPage.js
+lib/GNUstep/SOGo/WebServerResources/SOGoTabsController.js
+lib/GNUstep/SOGo/WebServerResources/SOGoTimePicker.js
+lib/GNUstep/SOGo/WebServerResources/SchedulerUI.css
+lib/GNUstep/SOGo/WebServerResources/SchedulerUI.js
+lib/GNUstep/SOGo/WebServerResources/SchedulerUIDnD.js
+lib/GNUstep/SOGo/WebServerResources/Search-bar.png
+lib/GNUstep/SOGo/WebServerResources/UIxAclEditor.css
+lib/GNUstep/SOGo/WebServerResources/UIxAclEditor.js
+lib/GNUstep/SOGo/WebServerResources/UIxAppointmentEditor.css
+lib/GNUstep/SOGo/WebServerResources/UIxAppointmentEditor.js
+lib/GNUstep/SOGo/WebServerResources/UIxAttendeesEditor.css
+lib/GNUstep/SOGo/WebServerResources/UIxAttendeesEditor.js
+lib/GNUstep/SOGo/WebServerResources/UIxCalUserRightsEditor.css
+lib/GNUstep/SOGo/WebServerResources/UIxCalUserRightsEditor.js
+lib/GNUstep/SOGo/WebServerResources/UIxCalendarProperties.css
+lib/GNUstep/SOGo/WebServerResources/UIxCalendarProperties.js
+lib/GNUstep/SOGo/WebServerResources/UIxColorPicker.js
+lib/GNUstep/SOGo/WebServerResources/UIxComponentEditor.css
+lib/GNUstep/SOGo/WebServerResources/UIxComponentEditor.js
+lib/GNUstep/SOGo/WebServerResources/UIxContactEditor.css
+lib/GNUstep/SOGo/WebServerResources/UIxContactEditor.js
+lib/GNUstep/SOGo/WebServerResources/UIxContactsUserFolders.css
+lib/GNUstep/SOGo/WebServerResources/UIxContactsUserFolders.js
+lib/GNUstep/SOGo/WebServerResources/UIxContactsUserRightsEditor.css
+lib/GNUstep/SOGo/WebServerResources/UIxContactsUserRightsEditor.js
+lib/GNUstep/SOGo/WebServerResources/UIxFilterEditor.css
+lib/GNUstep/SOGo/WebServerResources/UIxFilterEditor.js
+lib/GNUstep/SOGo/WebServerResources/UIxListEditor.css
+lib/GNUstep/SOGo/WebServerResources/UIxListEditor.js
+lib/GNUstep/SOGo/WebServerResources/UIxMailEditor.css
+lib/GNUstep/SOGo/WebServerResources/UIxMailEditor.js
+lib/GNUstep/SOGo/WebServerResources/UIxMailPartExternalHTMLViewer.css
+lib/GNUstep/SOGo/WebServerResources/UIxMailPopupView.js
+lib/GNUstep/SOGo/WebServerResources/UIxMailToSelection.js
+lib/GNUstep/SOGo/WebServerResources/UIxMailUserDelegationEditor.css
+lib/GNUstep/SOGo/WebServerResources/UIxMailUserDelegationEditor.js
+lib/GNUstep/SOGo/WebServerResources/UIxMailUserRightsEditor.css
+lib/GNUstep/SOGo/WebServerResources/UIxMailUserRightsEditor.js
+lib/GNUstep/SOGo/WebServerResources/UIxMailView.js
+lib/GNUstep/SOGo/WebServerResources/UIxOccurenceDialog.css
+lib/GNUstep/SOGo/WebServerResources/UIxOccurenceDialog.js
+lib/GNUstep/SOGo/WebServerResources/UIxPreferences.css
+lib/GNUstep/SOGo/WebServerResources/UIxPreferences.js
+lib/GNUstep/SOGo/WebServerResources/UIxRecurrenceEditor.css
+lib/GNUstep/SOGo/WebServerResources/UIxRecurrenceEditor.js
+lib/GNUstep/SOGo/WebServerResources/UIxReminderEditor.css
+lib/GNUstep/SOGo/WebServerResources/UIxReminderEditor.js
+lib/GNUstep/SOGo/WebServerResources/UIxTaskEditor.css
+lib/GNUstep/SOGo/WebServerResources/UIxTaskEditor.js
+lib/GNUstep/SOGo/WebServerResources/XMLHttpRequest.js
+lib/GNUstep/SOGo/WebServerResources/abcard-anonymous.png
+lib/GNUstep/SOGo/WebServerResources/abcard-anyone.png
+lib/GNUstep/SOGo/WebServerResources/abcard.png
+lib/GNUstep/SOGo/WebServerResources/ablist.png
+lib/GNUstep/SOGo/WebServerResources/account-settings.png
+lib/GNUstep/SOGo/WebServerResources/add-addressbook.png
+lib/GNUstep/SOGo/WebServerResources/add-calendar.png
+lib/GNUstep/SOGo/WebServerResources/add-contact.gif
+lib/GNUstep/SOGo/WebServerResources/add-icon.png
+lib/GNUstep/SOGo/WebServerResources/add-user-addressbook.png
+lib/GNUstep/SOGo/WebServerResources/add-user-calendar.png
+lib/GNUstep/SOGo/WebServerResources/add-web-calendar.png
+lib/GNUstep/SOGo/WebServerResources/addrbook.png
+lib/GNUstep/SOGo/WebServerResources/alarm.png
+lib/GNUstep/SOGo/WebServerResources/arrow-down.png
+lib/GNUstep/SOGo/WebServerResources/arrow-dwn-sharp.gif
+lib/GNUstep/SOGo/WebServerResources/arrow-left.png
+lib/GNUstep/SOGo/WebServerResources/arrow-right.png
+lib/GNUstep/SOGo/WebServerResources/arrow-up.png
+lib/GNUstep/SOGo/WebServerResources/attachment.gif
+lib/GNUstep/SOGo/WebServerResources/attendee-partstats.png
+lib/GNUstep/SOGo/WebServerResources/attendee-roles.png
+lib/GNUstep/SOGo/WebServerResources/browser_chrome.gif
+lib/GNUstep/SOGo/WebServerResources/browser_firefox.gif
+lib/GNUstep/SOGo/WebServerResources/browser_ie.gif
+lib/GNUstep/SOGo/WebServerResources/browser_safari.gif
+lib/GNUstep/SOGo/WebServerResources/btn_a_bg.png
+lib/GNUstep/SOGo/WebServerResources/btn_span_bg.png
+lib/GNUstep/SOGo/WebServerResources/busy.gif
+lib/GNUstep/SOGo/WebServerResources/calendar-folder-16x16.png
+lib/GNUstep/SOGo/WebServerResources/calendar-reload.png
+lib/GNUstep/SOGo/WebServerResources/choose-date.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/.htaccess
+lib/GNUstep/SOGo/WebServerResources/ckeditor/LICENSE.html
+lib/GNUstep/SOGo/WebServerResources/ckeditor/ckeditor.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/ckeditor_basic.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/config.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/contents.css
+lib/GNUstep/SOGo/WebServerResources/ckeditor/images/spacer.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/_languages.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/_translationstatus.txt
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/af.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ar.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/bg.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/bn.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/bs.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ca.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/cs.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/cy.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/da.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/de.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/el.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/en-au.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/en-ca.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/en-gb.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/en.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/eo.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/es.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/et.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/eu.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fa.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fi.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fo.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fr-ca.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fr.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/gl.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/gu.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/he.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/hi.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/hr.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/hu.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/is.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/it.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ja.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ka.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/km.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ko.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/lt.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/lv.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/mn.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ms.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/nb.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/nl.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/no.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/pl.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/pt-br.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/pt.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ro.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ru.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sk.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sl.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sr-latn.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sr.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sv.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/th.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/tr.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/uk.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/vi.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/zh-cn.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/zh.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/en.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/a11yhelp/lang/he.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/about/dialogs/about.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/about/dialogs/logo_ckeditor.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/ajax/plugin.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/autogrow/plugin.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/bbcode/plugin.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/clipboard/dialogs/paste.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/colordialog/dialogs/colordialog.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/dialog/dialogDefinition.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/div/dialogs/div.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/docprops/dialogs/docprops.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/docprops/plugin.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/find/dialogs/find.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/flash/dialogs/flash.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/flash/images/placeholder.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/forms/dialogs/button.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/forms/dialogs/checkbox.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/forms/dialogs/form.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/forms/dialogs/hiddenfield.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/forms/dialogs/radio.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/forms/dialogs/select.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/forms/dialogs/textarea.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/forms/dialogs/textfield.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/forms/images/hiddenfield.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/iframe/dialogs/iframe.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/iframe/images/placeholder.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/iframedialog/plugin.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/image/dialogs/image.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/link/dialogs/anchor.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/link/dialogs/link.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/link/images/anchor.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/liststyle/dialogs/liststyle.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/pagebreak/images/pagebreak.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/pastefromword/filter/default.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/pastetext/dialogs/pastetext.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/dialogs/placeholder.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/en.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/lang/he.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/placeholder.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/placeholder/plugin.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/scayt/dialogs/options.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/scayt/dialogs/toolbar.css
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_address.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_blockquote.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_div.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h1.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h2.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h3.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h4.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h5.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_h6.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_p.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/showblocks/images/block_pre.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/dialogs/smiley.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/angel_smile.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/angry_smile.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/broken_heart.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/confused_smile.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/cry_smile.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/devil_smile.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/embaressed_smile.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/envelope.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/heart.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/kiss.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/lightbulb.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/omg_smile.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/regular_smile.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/sad_smile.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/shades_smile.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/teeth_smile.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/thumbs_down.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/thumbs_up.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/tounge_smile.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/smiley/images/wink_smile.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/dialogs/specialchar.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/specialchar/lang/en.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/styles/styles/default.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/stylesheetparser/plugin.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/table/dialogs/table.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/tableresize/plugin.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/tabletools/dialogs/tableCell.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/templates/dialogs/templates.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/templates/templates/default.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/templates/templates/images/template1.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/templates/templates/images/template2.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/templates/templates/images/template3.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/dialogs/uicolor.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/en.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/lang/he.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/plugin.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/uicolor.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/assets/hue_bg.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/assets/picker_mask.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/assets/yui.css
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/uicolor/yui/yui.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/wsc/dialogs/ciframe.html
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/wsc/dialogs/wsc.css
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/wsc/dialogs/wsc.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/xml/plugin.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/kama/dialog.css
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/kama/editor.css
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/kama/icons.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/kama/icons_rtl.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/kama/images/dialog_sides.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/kama/images/dialog_sides.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/kama/images/dialog_sides_rtl.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/kama/images/mini.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/kama/images/noimage.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/kama/images/sprites.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/kama/images/sprites_ie6.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/kama/images/toolbar_start.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/kama/skin.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/kama/templates.css
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/office2003/dialog.css
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/office2003/editor.css
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/office2003/icons.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/office2003/icons_rtl.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/office2003/images/dialog_sides.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/office2003/images/dialog_sides.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/office2003/images/dialog_sides_rtl.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/office2003/images/mini.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/office2003/images/noimage.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/office2003/images/sprites.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/office2003/images/sprites_ie6.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/office2003/skin.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/office2003/templates.css
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/dialog.css
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/editor.css
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/icons.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/icons_rtl.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/dialog_sides.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/dialog_sides.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/dialog_sides_rtl.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/mini.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/noimage.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/sprites.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/sprites_ie6.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/images/toolbar_start.gif
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/skin.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/v2/templates.css
+lib/GNUstep/SOGo/WebServerResources/ckeditor/themes/default/theme.js
+lib/GNUstep/SOGo/WebServerResources/confidential.png
+lib/GNUstep/SOGo/WebServerResources/create-account.png
+lib/GNUstep/SOGo/WebServerResources/day-view-multicolumn.png
+lib/GNUstep/SOGo/WebServerResources/day-view.png
+lib/GNUstep/SOGo/WebServerResources/dialog-left.png
+lib/GNUstep/SOGo/WebServerResources/dialog-right.png
+lib/GNUstep/SOGo/WebServerResources/dialog-top.png
+lib/GNUstep/SOGo/WebServerResources/dot.png
+lib/GNUstep/SOGo/WebServerResources/down-icon.png
+lib/GNUstep/SOGo/WebServerResources/dtree.css
+lib/GNUstep/SOGo/WebServerResources/dtree.js
+lib/GNUstep/SOGo/WebServerResources/edit.png
+lib/GNUstep/SOGo/WebServerResources/empty.gif
+lib/GNUstep/SOGo/WebServerResources/event-gradient.png
+lib/GNUstep/SOGo/WebServerResources/event-grippy-bottom.png
+lib/GNUstep/SOGo/WebServerResources/event-grippy-top.png
+lib/GNUstep/SOGo/WebServerResources/event-grippy-vertical.png
+lib/GNUstep/SOGo/WebServerResources/first.gif
+lib/GNUstep/SOGo/WebServerResources/flag-col.png
+lib/GNUstep/SOGo/WebServerResources/flag.png
+lib/GNUstep/SOGo/WebServerResources/generic.css
+lib/GNUstep/SOGo/WebServerResources/generic.js
+lib/GNUstep/SOGo/WebServerResources/goto-today.png
+lib/GNUstep/SOGo/WebServerResources/green_corner.gif
+lib/GNUstep/SOGo/WebServerResources/icon-deleted.png
+lib/GNUstep/SOGo/WebServerResources/icon-forwarded-replied.png
+lib/GNUstep/SOGo/WebServerResources/icon-forwarded.png
+lib/GNUstep/SOGo/WebServerResources/icon-new.png
+lib/GNUstep/SOGo/WebServerResources/icon-replied.png
+lib/GNUstep/SOGo/WebServerResources/icon_unread.gif
+lib/GNUstep/SOGo/WebServerResources/iefixes.css
+lib/GNUstep/SOGo/WebServerResources/important.png
+lib/GNUstep/SOGo/WebServerResources/input_bg.gif
+lib/GNUstep/SOGo/WebServerResources/inverse.png
+lib/GNUstep/SOGo/WebServerResources/js_color_picker_v2.css
+lib/GNUstep/SOGo/WebServerResources/js_color_picker_v2.js
+lib/GNUstep/SOGo/WebServerResources/last.gif
+lib/GNUstep/SOGo/WebServerResources/layout2or3_xlib.js
+lib/GNUstep/SOGo/WebServerResources/layout2or3_xlib.txt
+lib/GNUstep/SOGo/WebServerResources/lori_32x32.png
+lib/GNUstep/SOGo/WebServerResources/manage-filters.png
+lib/GNUstep/SOGo/WebServerResources/manage-imap.png
+lib/GNUstep/SOGo/WebServerResources/menu-check-hover.gif
+lib/GNUstep/SOGo/WebServerResources/menu-check.gif
+lib/GNUstep/SOGo/WebServerResources/menu-nocheck.gif
+lib/GNUstep/SOGo/WebServerResources/message-copy.gif
+lib/GNUstep/SOGo/WebServerResources/message.gif
+lib/GNUstep/SOGo/WebServerResources/mime-application-certificate.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-magicpoint.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-msword.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-ogg.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-pdf.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-postscript.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-rtf.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.lotus-1-2-3.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.ms-excel.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.ms-powerpoint.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.oasis.opendocument.graphics.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.oasis.opendocument.image.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.oasis.opendocument.presentation.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.oasis.opendocument.spreadsheet.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.oasis.opendocument.text-web.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.oasis.opendocument.text.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.rn-realmedia-secure.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.rn-realmedia-vbr.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.rn-realmedia.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.stardivision.calc.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.stardivision.impress.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.stardivision.writer.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.sun.xml.calc.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.sun.xml.draw.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.sun.xml.impress.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-vnd.sun.xml.writer.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-wordperfect.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-7z-compressed.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-abiword.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-applix-spreadsheet.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-applix-word.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-archive.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-arj.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-bzip-compressed-tar.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-bzip.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-cd-image.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-compress.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-compressed-tar.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-cpio-compressed.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-cpio.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-deb.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-dvi.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-executable.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-font-afm.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-font-bdf.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-font-linux-psf.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-font-pcf.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-font-sunos-news.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-font-ttf.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-gnumeric.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-gzip.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-gzpostscript.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-jar.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-killustrator.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-kpresenter.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-kspread.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-kword.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-lha.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-lhz.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-lzma-compressed-tar.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-lzma.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-ms-dos-executable.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-perl.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-php.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-python-bytecode.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-rar.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-rpm.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-scribus.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-shellscript.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-shockwave-flash.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-stuffit.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-tar.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-tarz.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-x-tex.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-xhtml+xml.png
+lib/GNUstep/SOGo/WebServerResources/mime-application-zip.png
+lib/GNUstep/SOGo/WebServerResources/mime-ascii.png
+lib/GNUstep/SOGo/WebServerResources/mime-audio-x-generic.png
+lib/GNUstep/SOGo/WebServerResources/mime-audio.png
+lib/GNUstep/SOGo/WebServerResources/mime-binary.png
+lib/GNUstep/SOGo/WebServerResources/mime-contents2.png
+lib/GNUstep/SOGo/WebServerResources/mime-deb.png
+lib/GNUstep/SOGo/WebServerResources/mime-document.png
+lib/GNUstep/SOGo/WebServerResources/mime-empty.png
+lib/GNUstep/SOGo/WebServerResources/mime-exec.png
+lib/GNUstep/SOGo/WebServerResources/mime-folder_tar.png
+lib/GNUstep/SOGo/WebServerResources/mime-font-x-generic.png
+lib/GNUstep/SOGo/WebServerResources/mime-font.png
+lib/GNUstep/SOGo/WebServerResources/mime-font_bitmap.png
+lib/GNUstep/SOGo/WebServerResources/mime-font_truetype.png
+lib/GNUstep/SOGo/WebServerResources/mime-font_type1.png
+lib/GNUstep/SOGo/WebServerResources/mime-gnome-fs-executable.png
+lib/GNUstep/SOGo/WebServerResources/mime-gnome-fs-regular.png
+lib/GNUstep/SOGo/WebServerResources/mime-gnome-package.png
+lib/GNUstep/SOGo/WebServerResources/mime-gtk-file.png
+lib/GNUstep/SOGo/WebServerResources/mime-html.png
+lib/GNUstep/SOGo/WebServerResources/mime-image-x-generic.png
+lib/GNUstep/SOGo/WebServerResources/mime-image.png
+lib/GNUstep/SOGo/WebServerResources/mime-kpresenter_kpr.png
+lib/GNUstep/SOGo/WebServerResources/mime-mime_ascii.png
+lib/GNUstep/SOGo/WebServerResources/mime-misc.png
+lib/GNUstep/SOGo/WebServerResources/mime-package-x-generic.png
+lib/GNUstep/SOGo/WebServerResources/mime-package.png
+lib/GNUstep/SOGo/WebServerResources/mime-package_editors.png
+lib/GNUstep/SOGo/WebServerResources/mime-package_wordprocessing.png
+lib/GNUstep/SOGo/WebServerResources/mime-plan.png
+lib/GNUstep/SOGo/WebServerResources/mime-rpm.png
+lib/GNUstep/SOGo/WebServerResources/mime-shellscript.png
+lib/GNUstep/SOGo/WebServerResources/mime-sound.png
+lib/GNUstep/SOGo/WebServerResources/mime-spreadsheet.png
+lib/GNUstep/SOGo/WebServerResources/mime-stock_addressbook.png
+lib/GNUstep/SOGo/WebServerResources/mime-stock_calendar.png
+lib/GNUstep/SOGo/WebServerResources/mime-stock_certificate.png
+lib/GNUstep/SOGo/WebServerResources/mime-stock_script.png
+lib/GNUstep/SOGo/WebServerResources/mime-tar.png
+lib/GNUstep/SOGo/WebServerResources/mime-template_source.png
+lib/GNUstep/SOGo/WebServerResources/mime-text-html.png
+lib/GNUstep/SOGo/WebServerResources/mime-text-plain.png
+lib/GNUstep/SOGo/WebServerResources/mime-text-vnd.wap.wml.png
+lib/GNUstep/SOGo/WebServerResources/mime-text-x-csh.png
+lib/GNUstep/SOGo/WebServerResources/mime-text-x-generic-template.png
+lib/GNUstep/SOGo/WebServerResources/mime-text-x-generic.png
+lib/GNUstep/SOGo/WebServerResources/mime-text-x-preview.png
+lib/GNUstep/SOGo/WebServerResources/mime-text-x-python.png
+lib/GNUstep/SOGo/WebServerResources/mime-text-x-script.png
+lib/GNUstep/SOGo/WebServerResources/mime-text-x-sh.png
+lib/GNUstep/SOGo/WebServerResources/mime-text-x-vcalendar.png
+lib/GNUstep/SOGo/WebServerResources/mime-text-x-vcard.png
+lib/GNUstep/SOGo/WebServerResources/mime-text-x-zsh.png
+lib/GNUstep/SOGo/WebServerResources/mime-text.png
+lib/GNUstep/SOGo/WebServerResources/mime-tgz.png
+lib/GNUstep/SOGo/WebServerResources/mime-txt.png
+lib/GNUstep/SOGo/WebServerResources/mime-txt2.png
+lib/GNUstep/SOGo/WebServerResources/mime-unknown.png
+lib/GNUstep/SOGo/WebServerResources/mime-vcalendar.png
+lib/GNUstep/SOGo/WebServerResources/mime-vcard.png
+lib/GNUstep/SOGo/WebServerResources/mime-video-x-generic.png
+lib/GNUstep/SOGo/WebServerResources/mime-video.png
+lib/GNUstep/SOGo/WebServerResources/mime-wordprocessing.png
+lib/GNUstep/SOGo/WebServerResources/mime-www.png
+lib/GNUstep/SOGo/WebServerResources/mime-x-font-afm.png
+lib/GNUstep/SOGo/WebServerResources/mime-x-office-address-book.png
+lib/GNUstep/SOGo/WebServerResources/mime-x-office-calendar.png
+lib/GNUstep/SOGo/WebServerResources/mime-x-office-document.png
+lib/GNUstep/SOGo/WebServerResources/mime-x-office-drawing.png
+lib/GNUstep/SOGo/WebServerResources/mime-x-office-presentation.png
+lib/GNUstep/SOGo/WebServerResources/mime-x-office-spreadsheet.png
+lib/GNUstep/SOGo/WebServerResources/mime-zip.png
+lib/GNUstep/SOGo/WebServerResources/minus.png
+lib/GNUstep/SOGo/WebServerResources/month-view.png
+lib/GNUstep/SOGo/WebServerResources/new-card.png
+lib/GNUstep/SOGo/WebServerResources/new-event.png
+lib/GNUstep/SOGo/WebServerResources/new-list.png
+lib/GNUstep/SOGo/WebServerResources/new-task.png
+lib/GNUstep/SOGo/WebServerResources/next.gif
+lib/GNUstep/SOGo/WebServerResources/offline-settings.png
+lib/GNUstep/SOGo/WebServerResources/options.png
+lib/GNUstep/SOGo/WebServerResources/plus.png
+lib/GNUstep/SOGo/WebServerResources/previous.gif
+lib/GNUstep/SOGo/WebServerResources/private.png
+lib/GNUstep/SOGo/WebServerResources/properties.png
+lib/GNUstep/SOGo/WebServerResources/prototype.js
+lib/GNUstep/SOGo/WebServerResources/quota-level-alert.png
+lib/GNUstep/SOGo/WebServerResources/quota-level-ok.png
+lib/GNUstep/SOGo/WebServerResources/quota-level-warn.png
+lib/GNUstep/SOGo/WebServerResources/quota-level.png
+lib/GNUstep/SOGo/WebServerResources/read-messages.png
+lib/GNUstep/SOGo/WebServerResources/remote-addrbook.png
+lib/GNUstep/SOGo/WebServerResources/remove-addressbook.png
+lib/GNUstep/SOGo/WebServerResources/remove-calendar.png
+lib/GNUstep/SOGo/WebServerResources/remove-contact.gif
+lib/GNUstep/SOGo/WebServerResources/remove-icon.png
+lib/GNUstep/SOGo/WebServerResources/scriptaculous.js
+lib/GNUstep/SOGo/WebServerResources/scriptaculous/MIT-LICENSE
+lib/GNUstep/SOGo/WebServerResources/scriptaculous/builder.js
+lib/GNUstep/SOGo/WebServerResources/scriptaculous/controls.js
+lib/GNUstep/SOGo/WebServerResources/scriptaculous/dragdrop.js
+lib/GNUstep/SOGo/WebServerResources/scriptaculous/effects.js
+lib/GNUstep/SOGo/WebServerResources/scriptaculous/slider.js
+lib/GNUstep/SOGo/WebServerResources/scriptaculous/sound.js
+lib/GNUstep/SOGo/WebServerResources/scriptaculous/unittest.js
+lib/GNUstep/SOGo/WebServerResources/search-messages.png
+lib/GNUstep/SOGo/WebServerResources/signature-not-ok.png
+lib/GNUstep/SOGo/WebServerResources/signature-ok.png
+lib/GNUstep/SOGo/WebServerResources/skycalendar.html
+lib/GNUstep/SOGo/WebServerResources/skycalendar.js
+lib/GNUstep/SOGo/WebServerResources/slider_handle.gif
+lib/GNUstep/SOGo/WebServerResources/smalltoolbarbtn_a_bg.png
+lib/GNUstep/SOGo/WebServerResources/smalltoolbarbtn_span_bg.png
+lib/GNUstep/SOGo/WebServerResources/sogo-logo.png
+lib/GNUstep/SOGo/WebServerResources/sogo.ico
+lib/GNUstep/SOGo/WebServerResources/status.vacation-msg.png
+lib/GNUstep/SOGo/WebServerResources/submenu-active.gif
+lib/GNUstep/SOGo/WebServerResources/submenu-disabled.gif
+lib/GNUstep/SOGo/WebServerResources/submenu.gif
+lib/GNUstep/SOGo/WebServerResources/tab_a_active_bg.png
+lib/GNUstep/SOGo/WebServerResources/tab_a_inactive_bg.png
+lib/GNUstep/SOGo/WebServerResources/tab_left_active.gif
+lib/GNUstep/SOGo/WebServerResources/tab_left_inactive.gif
+lib/GNUstep/SOGo/WebServerResources/tab_right_active.gif
+lib/GNUstep/SOGo/WebServerResources/tab_right_inactive.gif
+lib/GNUstep/SOGo/WebServerResources/tab_span_active_bg.png
+lib/GNUstep/SOGo/WebServerResources/tab_span_inactive_bg.png
+lib/GNUstep/SOGo/WebServerResources/tablekit-sogo.js
+lib/GNUstep/SOGo/WebServerResources/tablekit-trueresize.js
+lib/GNUstep/SOGo/WebServerResources/tablekit.js
+lib/GNUstep/SOGo/WebServerResources/tb-ab-properties-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-compose-attach-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-compose-contacts-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-compose-save-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-compose-security-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-compose-send-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-mail-addressbook-flat-16x16.png
+lib/GNUstep/SOGo/WebServerResources/tb-mail-addressbook-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-mail-delete-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-mail-file-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-mail-forward-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-mail-getmail-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-mail-junk-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-mail-print-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-mail-reply-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-mail-replyall-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-mail-stop-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tb-mail-write-flat-24x24.png
+lib/GNUstep/SOGo/WebServerResources/tbtv_account_17x17.png
+lib/GNUstep/SOGo/WebServerResources/tbtv_corner_17x17.gif
+lib/GNUstep/SOGo/WebServerResources/tbtv_corner_minus_17x17.gif
+lib/GNUstep/SOGo/WebServerResources/tbtv_corner_plus_17x17.gif
+lib/GNUstep/SOGo/WebServerResources/tbtv_drafts_17x17.png
+lib/GNUstep/SOGo/WebServerResources/tbtv_inbox_17x17.png
+lib/GNUstep/SOGo/WebServerResources/tbtv_junction_17x17.gif
+lib/GNUstep/SOGo/WebServerResources/tbtv_leaf_corner_17x17.png
+lib/GNUstep/SOGo/WebServerResources/tbtv_line_17x17.gif
+lib/GNUstep/SOGo/WebServerResources/tbtv_minus_17x17.gif
+lib/GNUstep/SOGo/WebServerResources/tbtv_plus_17x17.gif
+lib/GNUstep/SOGo/WebServerResources/tbtv_sent_17x17.png
+lib/GNUstep/SOGo/WebServerResources/tbtv_trash_17x17.png
+lib/GNUstep/SOGo/WebServerResources/tentative.png
+lib/GNUstep/SOGo/WebServerResources/thead_bg.png
+lib/GNUstep/SOGo/WebServerResources/title_attachment_14x14.png
+lib/GNUstep/SOGo/WebServerResources/title_read_14x14.png
+lib/GNUstep/SOGo/WebServerResources/title_sortdown_12x12.png
+lib/GNUstep/SOGo/WebServerResources/title_sortup_12x12.png
+lib/GNUstep/SOGo/WebServerResources/toolbarbtn_a_bg.png
+lib/GNUstep/SOGo/WebServerResources/toolbarbtn_span_bg.png
+lib/GNUstep/SOGo/WebServerResources/up-icon.png
+lib/GNUstep/SOGo/WebServerResources/week-view.png
+lib/GNUstep/SOGo/WebServerResources/write-message.png
+lib/GNUstep/SOGo/WebServerResources/write.png
+lib/GNUstep/SaxDrivers-4.9/versitCardsSaxDriver.sax/Resources/Info-gnustep.plist
+lib/GNUstep/SaxDrivers-4.9/versitCardsSaxDriver.sax/Resources/bundle-info.plist
+lib/GNUstep/SaxDrivers-4.9/versitCardsSaxDriver.sax/bundle-info.plist
+lib/GNUstep/SaxDrivers-4.9/versitCardsSaxDriver.sax/stamp.make
+lib/GNUstep/SaxDrivers-4.9/versitCardsSaxDriver.sax/versitCardsSaxDriver
+lib/GNUstep/SaxMappings/NGCards.xmap
+lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/Resources/Info-gnustep.plist
+lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/SOGoElements
+lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/bundle-info.plist
+lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/stamp.make
+lib/libGDLContentStore.so
+lib/libGDLContentStore.so.4.9.0
+lib/libNGCards.so
+lib/libNGCards.so.4.9.0
+lib/libOGoContentStore.so
+lib/libOGoContentStore.so.0.9.0
+lib/libSOGo.so
+lib/libSOGo.so.2.0.0
+lib/libSOGoUI.so
+lib/libSOGoUI.so.2.0.0
+sbin/sogo-ealarms-notify
+sbin/sogo-slapd-sockd
+sbin/sogo-tool
+sbin/sogod
diff --git a/www/SOGo/distinfo b/www/SOGo/distinfo
new file mode 100644
index 00000000000..e803a05673e
--- /dev/null
+++ b/www/SOGo/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2011/10/16 05:36:35 manu Exp $
+
+SHA1 (SOGo-2.0.0b1.tar.gz) = 42100087bdce048a47cdfe5ce150eaef6271448d
+RMD160 (SOGo-2.0.0b1.tar.gz) = df412186822665d3baeca8bd4cd38a2dc94b12f2
+Size (SOGo-2.0.0b1.tar.gz) = 3768330 bytes
+SHA1 (patch-aa) = d5f7c3caea148b6b5f872fb0561d14ec15312c90
diff --git a/www/SOGo/files/SOGo.conf b/www/SOGo/files/SOGo.conf
new file mode 100644
index 00000000000..0c635d6732f
--- /dev/null
+++ b/www/SOGo/files/SOGo.conf
@@ -0,0 +1,5 @@
+
+ <Directory "@PREFIX@/lib/GNUstep/SOGo/WebServerResources/">
+ Order allow,deny
+ Allow from all
+ </Directory>
diff --git a/www/SOGo/files/sogod.sh b/www/SOGo/files/sogod.sh
new file mode 100755
index 00000000000..864ade752c3
--- /dev/null
+++ b/www/SOGo/files/sogod.sh
@@ -0,0 +1,44 @@
+#!/bin/sh
+#
+# $NetBSD: sogod.sh,v 1.1.1.1 2011/10/16 05:36:35 manu Exp $
+#
+
+# PROVIDE: sogod
+# REQUIRE: DAEMON
+# BEFORE: apache
+
+$_rc_subr_loaded . /etc/rc.subr
+
+name="sogod"
+rcvar=$name
+command="@PREFIX@/sbin/${name}"
+pidfile="@SOGORUNDIR@/${name}.pid"
+logfile="@SOGORUNDIR@/${name}.log"
+sogouser=@SOGOUSER@
+command_args="-WOPidFile ${pidfile} -WOLogFile ${logfile}"
+start_precmd="sogod_precmd"
+start_cmd="sogod_start"
+
+sogod_precmd()
+{
+ test -f @PREFIX@/etc/GNUstep.conf || {
+ echo "Cannot find @PREFIX@/etc/GNUstep.conf"
+ exit 1
+ }
+ . @PREFIX@/etc/GNUstep.conf
+
+ test -f @PREFIX@/share/GNUstep/Makefiles/GNUstep.sh || {
+ echo "Cannot find @PREFIX@/share/GNUstep/Makefiles/GNUstep.sh"
+ exit 1
+ }
+ . @PREFIX@/share/GNUstep/Makefiles/GNUstep.sh
+}
+
+sogod_start()
+{
+ echo "Starting $name: "
+ su -m ${sogouser} -c "${command} ${command_args}"
+}
+
+load_rc_config $name
+run_rc_command "$1"
diff --git a/www/SOGo/patches/patch-aa b/www/SOGo/patches/patch-aa
new file mode 100644
index 00000000000..bb7064204a2
--- /dev/null
+++ b/www/SOGo/patches/patch-aa
@@ -0,0 +1,15 @@
+$NetBSD: patch-aa,v 1.1.1.1 2011/10/16 05:36:35 manu Exp $
+
+GNU cp(1) has a -d flag to copy symlinks instead of their targets. This
+flag does not exists with NetBSD cp(1) but it is the default behavior
+if -R is used, both with GNU cp(1) and NetBSD cp(1)
+
+--- SOPE/NGCards/GNUmakefile.postamble.orig 2011-10-15 09:13:26.000000000 +0200
++++ SOPE/NGCards/GNUmakefile.postamble 2011-10-15 09:13:36.000000000 +0200
+@@ -7,5 +7,5 @@
+
+ after-install :: mappings-dir
+ cp NGCards.xmap $(MAPDIR)
+ -mkdir -p $(GNUSTEP_LIBRARY)/Libraries/Resources/NGCards
+- cp -dpR TimeZones $(GNUSTEP_LIBRARY)/Libraries/Resources/NGCards
++ cp -pR TimeZones $(GNUSTEP_LIBRARY)/Libraries/Resources/NGCards