* Pour mémoire
* [[http://www.sogo.nu/fr/buzz/2013/article/sogo-204-released-copy-1.html|Annonce de la sortie de la version 2.0.5]]
* [[http://www.sogo.nu/bugs/changelog_page.php?project_id=1|Tickets fermés]]
* [[http://sogo.nu/files/downloads/SOGo/Sources/ChangeLog|Changelog complet]]
* [[attachment:SOGo Installation Guide.2.0.5.pdf|guide d'installation (notamment page 50)]]
* à voir (NM : 1.3.9/10)
* SOGoNotifyOnExternalModifications = 1;
* SOGoNotifyOnPersonalModifications = 1;
* SOGoBusyOffHours = YES;
* SOGoDayEndTime = 17;
* SOGoDayStartTime = 9;
* Soucis rencontrés
* Dans updates.py :
{{{
APPLICATIONS = {
"thunderbird": "{3550f703-e582-4d05-9a08-453d09bdfdc6}\
3.1.0\
3.1.*",
}
}}}
que j'ai oublié de mettre à jour
{{{
APPLICATIONS = {
"thunderbird": "{3550f703-e582-4d05-9a08-453d09bdfdc6}\
17.0\
17.*",
}
}}}
* installation automatique des extensions
* après installation de sogo-integrator sur le client, côté serveur, ça semble passer
{{{
==> /var/log/apache2/sogo-test.ca.auf.org-ssl-access.log <==
74.56.53.13 - - [05/Jun/2013:22:10:07 -0400] "GET /plugins/updates.py?plugin=sogo-integrator@inverse.ca&version=0.00&platform=Linux_x86-gcc3 HTTP/1.1" 200 5098 "-" "Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130330 Thunderbird/17.0.5"
74.56.53.13 - - [05/Jun/2013:22:10:08 -0400] "GET /plugins/updates.py?plugin=sogo-connector@inverse.ca&version=0.00&platform=Linux_x86-gcc3 HTTP/1.1" 200 756 "-" "Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130330 Thunderbird/17.0.5"
74.56.53.13 - - [05/Jun/2013:22:10:08 -0400] "GET /plugins/updates.py?plugin=%7Be2fda1a4-762b-4020-b5ad-a41df1933103%7D&version=0.00&platform=Linux_x86-gcc3 HTTP/1.1" 200 772 "-" "Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130330 Thunderbird/17.0.5"
74.56.53.13 - - [05/Jun/2013:22:10:08 -0400] "GET /plugins/sogo-connector-17.0.4.xpi HTTP/1.1" 200 245808 "-" "Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130330 Thunderbird/17.0.5"
74.56.53.13 - - [05/Jun/2013:22:10:08 -0400] "GET /plugins/lightning-1.9.1.xpi HTTP/1.1" 200 2721587 "-" "Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130330 Thunderbird/17.0.5"
}}}
* mais rien côté client, les autres extensions ne sont pas installées automatiquement. Je note ceci dans la console TB :
{{{
Horodatage : 2013-06-06 00:49:41
Avertissement : WARN addons.xpi: Download failed: [Exception... "Certificate issuer is not built-in." nsresult: "0x80004004 (NS_ERROR_ABORT)" location: "JS frame :: resource:///modules/CertUtils.jsm :: checkCert :: line 165" data: no]
Fichier Source : resource:///modules/CertUtils.jsm
Ligne : 165
}}}
voir échanges :https://bugzilla.mozilla.org/show_bug.cgi?id=688383 et aussi https://inverse.ca/sogo/lists/arc/users/2012-03/msg00389.html
* finalement, au début du fichier defaults/preferences/site.js de sogo-integrator, ajouter
{{{
pref("app.update.cert.requireBuiltIn", false);
pref("extensions.install.requireBuiltInCerts", false);
pref("extensions.update.requireBuiltInCerts", false);
}}}
. autre piste : laisser passer les update en http ... '''A VOIR'''
----