Compare commits

...

8 Commits

Author SHA1 Message Date
Daniel Berteaud
f8b3d733a5 Mise à jour du fichier spec 2012-10-02 14:29:14 +02:00
Daniel Berteaud
cea3542e01 Correction du chemin de template pour apache 2012-10-02 14:28:41 +02:00
Daniel Berteaud
f358c163e2 Mise à jour du fichier spec 2012-09-22 15:08:03 +02:00
Daniel Berteaud
1f7e3f39d4 Mise à jour des paramètres 2012-09-22 14:37:33 +02:00
Daniel Berteaud
72820e297a Mise à jour du fichier spec (publication stable) 2012-08-30 18:53:34 +02:00
Daniel Berteaud
6446940273 Ajout template manquant 2012-06-10 13:46:03 +02:00
Daniel Berteaud
1004b68729 Définition des constantes READONLY 2012-06-10 13:43:31 +02:00
Daniel Berteaud
7c923688dc CALDAV_SERVER -> CALDAV_URL 2012-06-10 13:13:34 +02:00
6 changed files with 22 additions and 15 deletions

View File

@ -1,8 +1,10 @@
define('SCRIPT_TIMEOUT', 0);
define('MAX_EMBEDDED_SIZE', 1048576);
define('MAX_EMBEDDED_SIZE', 2097152);
define('PROVISIONING', true);
define('LOOSE_PROVISIONING', false);
define('SYNC_CONFLICT_DEFAULT', SYNC_CONFLICT_OVERWRITE_PIM);
define('SYNC_FILTERTIME_MAX', SYNC_FILTERTYPE_ALL);
define('PING_INTERVAL', 30);
define('SINK_FORCERECHECK', 300);
define('FILEAS_ORDER', SYNC_FILEAS_FIRSTLAST);
define('SYNC_MAX_ITEMS', 100);

View File

@ -1,12 +1,9 @@
define('CALDAV_SERVER', 'http://localhost:{$sogod{'TCPPort'}}');
define('CALDAV_PATH', '/SOGo/dav/%u/');
define('CALDAV_PERSONAL', 'personal');
define('CALDAV_SERVER', 'http://localhost:{$sogod{'TCPPort'}}/SOGo/dav/%u');
define('CALDAV_URL', 'http://localhost:{$sogod{'TCPPort'}}/SOGo/dav/%u/');
{
my $ro = $sogosync{'ReadOnly'} || 'disabled';
$OUT .= " define('CALDAV_READONLY', true);\n"
if ($ro =~ m/^yes|enabled|1$/);
$ro = ($ro =~ m/^yes|enabled|1$/) ? 'true':'false';
$OUT .= " define('CALDAV_READONLY', $ro);\n";
}

View File

@ -1,11 +1,7 @@
define('CARDDAV_PERSONAL', 'personal');
define('CARDDAV_URL', 'http://localhost:{$sogod{'TCPPort'}}/SOGo/dav/%u/Contacts/');
{
my $ro = $sogosync{'ReadOnly'} || 'disabled';
$OUT .= " define('CARDDAV_READONLY', true);\n"
if ($ro =~ m/^yes|enabled|1$/);
$ro = ($ro =~ m/^yes|enabled|1$/) ? 'true':'false';
$OUT .= " define('CARDDAV_READONLY', $ro);\n";
}

View File

@ -0,0 +1,2 @@
$additionalFolders = array(
);

View File

@ -1,6 +1,6 @@
Name: smeserver-sogosync
Version: 0.1.6
Release: 0.beta5%{?dist}
Version: 0.1.9
Release: 1%{?dist}
Summary: SME Server integration for sogosync
Group: Application/System
@ -41,6 +41,16 @@ echo "%doc CHANGELOG.git" >> %{name}-%{version}-filelist
rm -rf $RPM_BUILD_ROOT
%changelog
* Tue Oct 2 2012 Daniel Berteaud <daniel@firewall-services.com> 0.1.9-1
- Fix template path for apache
* Sat Sep 22 2012 Daniel Berteaud <daniel@firewall-services.com> 0.1.8-1
- update default config
* Sun Jun 10 2012 Daniel Berteaud <daniel@firewall-services.com> 0.1.7-1
- Define *_READONLY constant event when set to false
- Add missing template for additional folders
* Sun Jun 10 2012 Daniel Berteaud <daniel@firewall-services.com> 0.1.6-1
- Correction des templates