update sogo to 2.0.7

tested by Jean Gerard Pailloncy and giovanni@

OK giovanni@
This commit is contained in:
sebastia 2013-08-24 11:16:04 +00:00
parent 4d044b3f28
commit 5133868e6d
9 changed files with 77 additions and 109 deletions

View File

@ -1,11 +1,10 @@
# $OpenBSD: Makefile,v 1.31 2013/07/20 17:39:17 sebastia Exp $
# $OpenBSD: Makefile,v 1.32 2013/08/24 11:16:04 sebastia Exp $
COMMENT = web based groupware server
VERSION = 2.0.5
REVISION = 0
DISTNAME = SOGo-${VERSION}a
PKGNAME = sogo-${VERSION}.0
VERSION = 2.0.7
DISTNAME = SOGo-${VERSION}
PKGNAME = sogo-${VERSION}
SHARED_LIBS += GDLContentStore 2.0
SHARED_LIBS += NGCards 2.0
@ -36,7 +35,8 @@ RUN_DEPENDS += sope-postgres-*|sope-mysql-*:www/sope,-postgres \
archivers/zip
CONFIGURE_STYLE = simple dest
CONFIGURE_ARGS += --gsmake=`gnustep-config --variable=GNUSTEP_MAKEFILES`
CONFIGURE_ARGS += --gsmake=`gnustep-config --variable=GNUSTEP_MAKEFILES` \
--with-ssl=gnutls
MAKE_FLAGS += libGDLContentStore_INTERFACE_VERSION=${LIBGDLContentStore_VERSION} \
libNGCards_INTERFACE_VERSION=${LIBNGCards_VERSION} \
libOGoContentStore_INTERFACE_VERSION=${LIBOGoContentStore_VERSION} \

View File

@ -1,2 +1,2 @@
SHA256 (SOGo-2.0.5a.tar.gz) = q8s7Qm6prfPZzAyxFrQMtd6b3lTzGTJnJc4l89PCW3g=
SIZE (SOGo-2.0.5a.tar.gz) = 5640595
SHA256 (SOGo-2.0.7.tar.gz) = EZe72hblp+lMcO/iFCizShgwvgC/YF2mM6jugq30vl8=
SIZE (SOGo-2.0.7.tar.gz) = 5694507

View File

@ -1,24 +0,0 @@
$OpenBSD: patch-SoObjects_Appointments_SOGoAptMailNotification_m,v 1.1 2013/07/20 17:39:17 sebastia Exp $
fix XSS reported in bugs:
http://www.sogo.nu/bugs/view.php?id=2368
http://www.sogo.nu/bugs/view.php?id=2369
--- SoObjects/Appointments/SOGoAptMailNotification.m.orig Thu Jun 27 17:50:25 2013
+++ SoObjects/Appointments/SOGoAptMailNotification.m Fri Jul 19 11:17:47 2013
@@ -140,9 +140,14 @@
return newEndDate;
}
+- (NSString *) location
+{
+ return [[apt location] stringByEscapingHTMLString];
+}
+
- (NSString *) summary
{
- return [apt summary];
+ return [[apt summary] stringByEscapingHTMLString];
}
- (void) setOrganizerName: (NSString *) theString

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-SoObjects_SOGo_GNUmakefile_preamble,v 1.6 2012/12/16 16:36:26 sebastia Exp $
--- SoObjects/SOGo/GNUmakefile.preamble.orig Thu Dec 6 19:12:22 2012
+++ SoObjects/SOGo/GNUmakefile.preamble Fri Dec 7 15:22:41 2012
@@ -45,7 +45,7 @@ endif
$OpenBSD: patch-SoObjects_SOGo_GNUmakefile_preamble,v 1.7 2013/08/24 11:16:05 sebastia Exp $
--- SoObjects/SOGo/GNUmakefile.preamble.orig Mon Jul 22 15:03:02 2013
+++ SoObjects/SOGo/GNUmakefile.preamble Tue Aug 6 12:14:03 2013
@@ -46,7 +46,7 @@ endif
ifeq ($(findstring openbsd, $(GNUSTEP_HOST_OS)), openbsd)
SOGo_LIBRARIES_DEPEND_UPON += -lcrypto
else

View File

@ -0,0 +1,16 @@
$OpenBSD: patch-UI_MailPartViewers_UIxMailPartViewer_m,v 1.1 2013/08/24 11:16:05 sebastia Exp $
patch from upstream to fix exception in webmailer, see:
http://www.sogo.nu/bugs/view.php?id=2385
--- UI/MailPartViewers/UIxMailPartViewer.m.orig Mon Aug 12 13:59:34 2013
+++ UI/MailPartViewers/UIxMailPartViewer.m Mon Aug 12 13:59:57 2013
@@ -266,7 +266,7 @@
NSMutableString *filename;
NSString *extension;
- filename = [self filename];
+ filename = [NSMutableString stringWithString: [self filename]];
if (![filename length])
[filename appendFormat: @"%@-%@",
[self labelForKey: @"Untitled"],

View File

@ -1,26 +0,0 @@
$OpenBSD: patch-UI_MailerUI_UIxMailListActions_m,v 1.1 2013/07/20 17:39:18 sebastia Exp $
fix XSS reported in bugs:
http://www.sogo.nu/bugs/view.php?id=2368
http://www.sogo.nu/bugs/view.php?id=2369
--- UI/MailerUI/UIxMailListActions.m.orig Thu Jun 27 17:50:25 2013
+++ UI/MailerUI/UIxMailListActions.m Fri Jul 19 11:17:47 2013
@@ -753,7 +753,7 @@
// To
to = [[message objectForKey: @"envelope"] to];
if ([to count] > 0)
- [msg addObject: [addressFormatter stringForArray: to]];
+ [msg addObject: [[addressFormatter stringForArray: to] stringByEscapingHTMLString]];
else
[msg addObject: @""];
@@ -778,7 +778,7 @@
// From
from = [[message objectForKey: @"envelope"] from];
if ([from count] > 0)
- [msg addObject: [addressFormatter stringForArray: from]];
+ [msg addObject: [[addressFormatter stringForArray: from] stringByEscapingHTMLString]];
else
[msg addObject: @""];

View File

@ -1,20 +0,0 @@
$OpenBSD: patch-UI_Templates_Appointments_SOGoAptMailInvitation_wox,v 1.1 2013/07/20 17:39:18 sebastia Exp $
fix XSS reported in bugs:
http://www.sogo.nu/bugs/view.php?id=2368
http://www.sogo.nu/bugs/view.php?id=2369
--- UI/Templates/Appointments/SOGoAptMailInvitation.wox.orig Thu Jun 27 17:50:25 2013
+++ UI/Templates/Appointments/SOGoAptMailInvitation.wox Fri Jul 19 11:17:47 2013
@@ -24,9 +24,9 @@ h1, dd, .dl-list dt { margin-left: 130px; }
<small><var:string value="organizerName" const:escapeHTML="NO"/><var:string value="sentByText" const:escapeHTML="NO"/></small></h1>
<dl class="dl-horizontal">
- <var:if condition="apt.location.length"
+ <var:if condition="location.length"
><dt><var:string label:value="location_label" const:escapeHTML="NO"/></dt>
- <dd><var:string value="apt.location" const:escapeHTML="NO"/></dd></var:if>
+ <dd><var:string value="location" const:escapeHTML="NO"/></dd></var:if>
<dt><var:string label:value="startDate_label" const:escapeHTML="NO"/></dt>
<dd><var:string value="formattedAptStartDate" const:escapeHTML="NO"
/><var:if condition="formattedAptStartTime.length"> - <var:string value="formattedAptStartTime" const:escapeHTML="NO"/> <var:string value="viewTZ" const:escapeHTML="NO"/>

View File

@ -1,25 +0,0 @@
$OpenBSD: patch-UI_WebServerResources_SchedulerUI_js,v 1.1 2013/07/20 17:39:18 sebastia Exp $
fix XSS reported in bugs:
http://www.sogo.nu/bugs/view.php?id=2368
http://www.sogo.nu/bugs/view.php?id=2369
--- UI/WebServerResources/SchedulerUI.js.orig Thu Jun 27 17:50:25 2013
+++ UI/WebServerResources/SchedulerUI.js Fri Jul 19 11:17:47 2013
@@ -748,14 +748,14 @@ function onViewEventCallback(http) {
para = $(paras[1]);
if (data["calendar"].length) {
// Remove owner email from calendar's name
- para.down("SPAN", 1).update(data["calendar"].replace(/ \<.*\>/, ""));
+ para.down("SPAN", 1).update(data["calendar"].escapeHTML());
para.show();
} else
para.hide();
para = $(paras[2]);
if (data["location"].length) {
- para.down("SPAN", 1).update(data["location"]);
+ para.down("SPAN", 1).update(data["location"].escapeHTML());
para.show();
} else
para.hide();

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.17 2013/02/06 17:36:11 sebastia Exp $
@comment $OpenBSD: PLIST,v 1.18 2013/08/24 11:16:05 sebastia Exp $
@newgroup _sogo:659
@newuser _sogo:659:_sogo:daemon:SOGo user:/var/sogo:/bin/sh
include/GDLContentStore/
@ -115,6 +115,7 @@ ${SOGOLIBDIR}/Headers/WORequest+SOGo.h
${SOGOLIBDIR}/Headers/WOResourceManager+SOGo.h
${SOGOLIBDIR}/Headers/WOResponse+SOGo.h
${SOGOLIBDIR}/Resources/
${SOGOLIBDIR}/Resources/CASLogoutRequestMap.plist
${SOGOLIBDIR}/Resources/DAVReportMap.plist
${SOGOLIBDIR}/Resources/Info-gnustep.plist
${SOGOLIBDIR}/Resources/SOGoDefaults.plist
@ -568,6 +569,8 @@ lib/GNUstep/SOGo/
lib/GNUstep/SOGo/AdministrationUI.SOGo/
@bin lib/GNUstep/SOGo/AdministrationUI.SOGo/AdministrationUI
lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/
lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Arabic.lproj/
lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Arabic.lproj/Localizable.strings
lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/BrazilianPortuguese.lproj/
lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Catalan.lproj/
@ -617,6 +620,8 @@ lib/GNUstep/SOGo/AdministrationUI.SOGo/stamp.make
lib/GNUstep/SOGo/Appointments.SOGo/
@bin lib/GNUstep/SOGo/Appointments.SOGo/Appointments
lib/GNUstep/SOGo/Appointments.SOGo/Resources/
lib/GNUstep/SOGo/Appointments.SOGo/Resources/Arabic.lproj/
lib/GNUstep/SOGo/Appointments.SOGo/Resources/Arabic.lproj/Localizable.strings
lib/GNUstep/SOGo/Appointments.SOGo/Resources/BrazilianPortuguese.lproj/
lib/GNUstep/SOGo/Appointments.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
lib/GNUstep/SOGo/Appointments.SOGo/Resources/Catalan.lproj/
@ -645,6 +650,7 @@ lib/GNUstep/SOGo/Appointments.SOGo/Resources/Italian.lproj/Localizable.strings
lib/GNUstep/SOGo/Appointments.SOGo/Resources/MSExchangeFreeBusySOAPRequest.wo/
lib/GNUstep/SOGo/Appointments.SOGo/Resources/MSExchangeFreeBusySOAPRequest.wo/MSExchangeFreeBusySOAPRequest.html
lib/GNUstep/SOGo/Appointments.SOGo/Resources/MSExchangeFreeBusySOAPRequest.wo/MSExchangeFreeBusySOAPRequest.wod
lib/GNUstep/SOGo/Appointments.SOGo/Resources/MSExchangeFreeBusySOAPResponseMap.plist
lib/GNUstep/SOGo/Appointments.SOGo/Resources/NorwegianBokmal.lproj/
lib/GNUstep/SOGo/Appointments.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
lib/GNUstep/SOGo/Appointments.SOGo/Resources/NorwegianNynorsk.lproj/
@ -671,6 +677,8 @@ lib/GNUstep/SOGo/Appointments.SOGo/bundle-info.plist
lib/GNUstep/SOGo/CommonUI.SOGo/
@bin lib/GNUstep/SOGo/CommonUI.SOGo/CommonUI
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Arabic.lproj/
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Arabic.lproj/Localizable.strings
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/BrazilianPortuguese.lproj/
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Catalan.lproj/
@ -722,6 +730,8 @@ lib/GNUstep/SOGo/CommonUI.SOGo/stamp.make
lib/GNUstep/SOGo/Contacts.SOGo/
@bin lib/GNUstep/SOGo/Contacts.SOGo/Contacts
lib/GNUstep/SOGo/Contacts.SOGo/Resources/
lib/GNUstep/SOGo/Contacts.SOGo/Resources/Arabic.lproj/
lib/GNUstep/SOGo/Contacts.SOGo/Resources/Arabic.lproj/Localizable.strings
lib/GNUstep/SOGo/Contacts.SOGo/Resources/BrazilianPortuguese.lproj/
lib/GNUstep/SOGo/Contacts.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
lib/GNUstep/SOGo/Contacts.SOGo/Resources/Catalan.lproj/
@ -772,6 +782,8 @@ lib/GNUstep/SOGo/Contacts.SOGo/stamp.make
lib/GNUstep/SOGo/ContactsUI.SOGo/
@bin lib/GNUstep/SOGo/ContactsUI.SOGo/ContactsUI
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Arabic.lproj/
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Arabic.lproj/Localizable.strings
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/BrazilianPortuguese.lproj/
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Catalan.lproj/
@ -824,6 +836,8 @@ lib/GNUstep/SOGo/ContactsUI.SOGo/stamp.make
lib/GNUstep/SOGo/MailPartViewers.SOGo/
@bin lib/GNUstep/SOGo/MailPartViewers.SOGo/MailPartViewers
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Arabic.lproj/
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Arabic.lproj/Localizable.strings
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/BrazilianPortuguese.lproj/
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Catalan.lproj/
@ -875,6 +889,12 @@ lib/GNUstep/SOGo/Mailer.SOGo/
@bin lib/GNUstep/SOGo/Mailer.SOGo/Mailer
lib/GNUstep/SOGo/Mailer.SOGo/Resources/
lib/GNUstep/SOGo/Mailer.SOGo/Resources/Info-gnustep.plist
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailArabicForward.wo/
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailArabicForward.wo/SOGoMailArabicForward.html
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailArabicForward.wo/SOGoMailArabicForward.wod
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailArabicReply.wo/
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailArabicReply.wo/SOGoMailArabicReply.html
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailArabicReply.wo/SOGoMailArabicReply.wod
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseForward.wo/
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseForward.wo/SOGoMailBrazilianPortugueseForward.html
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseForward.wo/SOGoMailBrazilianPortugueseForward.wod
@ -965,6 +985,12 @@ lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianForward.wo/SOGoMailRussian
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianReply.wo/
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/SOGoMailSlovakForward.wo/
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovakForward.wo/SOGoMailSlovakForward.html
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovakForward.wo/SOGoMailSlovakForward.wod
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovakReply.wo/
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovakReply.wo/SOGoMailSlovakReply.html
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovakReply.wo/SOGoMailSlovakReply.wod
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaForward.wo/
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaForward.wo/SOGoMailSpanishArgentinaForward.html
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaForward.wo/SOGoMailSpanishArgentinaForward.wod
@ -1001,6 +1027,8 @@ lib/GNUstep/SOGo/Mailer.SOGo/bundle-info.plist
lib/GNUstep/SOGo/MailerUI.SOGo/
@bin lib/GNUstep/SOGo/MailerUI.SOGo/MailerUI
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Arabic.lproj/
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Arabic.lproj/Localizable.strings
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/BrazilianPortuguese.lproj/
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Catalan.lproj/
@ -1055,6 +1083,9 @@ lib/GNUstep/SOGo/MailerUI.SOGo/stamp.make
lib/GNUstep/SOGo/MainUI.SOGo/
@bin lib/GNUstep/SOGo/MainUI.SOGo/MainUI
lib/GNUstep/SOGo/MainUI.SOGo/Resources/
lib/GNUstep/SOGo/MainUI.SOGo/Resources/Arabic.lproj/
lib/GNUstep/SOGo/MainUI.SOGo/Resources/Arabic.lproj/Locale
lib/GNUstep/SOGo/MainUI.SOGo/Resources/Arabic.lproj/Localizable.strings
lib/GNUstep/SOGo/MainUI.SOGo/Resources/BrazilianPortuguese.lproj/
lib/GNUstep/SOGo/MainUI.SOGo/Resources/BrazilianPortuguese.lproj/Locale
lib/GNUstep/SOGo/MainUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
@ -1131,6 +1162,8 @@ lib/GNUstep/SOGo/MainUI.SOGo/stamp.make
lib/GNUstep/SOGo/PreferencesUI.SOGo/
@bin lib/GNUstep/SOGo/PreferencesUI.SOGo/PreferencesUI
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Arabic.lproj/
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Arabic.lproj/Localizable.strings
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/BrazilianPortuguese.lproj/
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Catalan.lproj/
@ -1181,6 +1214,8 @@ lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/product.plist
lib/GNUstep/SOGo/PreferencesUI.SOGo/stamp.make
lib/GNUstep/SOGo/SchedulerUI.SOGo/
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Arabic.lproj/
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Arabic.lproj/Localizable.strings
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/BrazilianPortuguese.lproj/
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Catalan.lproj/
@ -1292,6 +1327,9 @@ lib/GNUstep/SOGo/Templates/PreferencesUI/
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/SOGoACLArabicAdditionAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoACLArabicModificationAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoACLArabicRemovalAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseAdditionAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseModificationAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseRemovalAdvisory.wox
@ -1355,6 +1393,8 @@ 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/SOGoFolderArabicAdditionAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoFolderArabicRemovalAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoFolderBrazilianPortugueseAdditionAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoFolderBrazilianPortugueseRemovalAdvisory.wox
lib/GNUstep/SOGo/Templates/SOGoFolderCatalanAdditionAdvisory.wox
@ -1547,6 +1587,7 @@ lib/GNUstep/SOGo/WebServerResources/ckeditor/ckeditor.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/config.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/contents.css
lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/
lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ar.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
@ -1563,7 +1604,7 @@ 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.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/pt-br.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ru.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sk.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sv.js
@ -1576,6 +1617,9 @@ lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/about/dialogs/logo_ckeditor
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/clipboard/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/clipboard/dialogs/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/clipboard/dialogs/paste.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/colordialog/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/colordialog/dialogs/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/colordialog/dialogs/colordialog.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/dialog/
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/dialog/dialogDefinition.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/fakeobjects/
@ -1603,6 +1647,7 @@ 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/wsc/dialogs/wsc_ie.js
lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/
lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/moono/
lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/moono/dialog.css
@ -1624,6 +1669,7 @@ lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/moono/images/close.png
lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/moono/images/mini.png
lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/moono/readme.md
lib/GNUstep/SOGo/WebServerResources/ckeditor/styles.js
lib/GNUstep/SOGo/WebServerResources/collapse.png
lib/GNUstep/SOGo/WebServerResources/confidential.png
lib/GNUstep/SOGo/WebServerResources/create-account.png
lib/GNUstep/SOGo/WebServerResources/datepicker.css
@ -1963,6 +2009,7 @@ share/doc/sogo/updates.php
@group _sogo
@sample /var/sogo/
@sample /var/log/sogo/
@sample /var/spool/sogo/
@mode
@owner
@group