[SOGo] BTS activities for Friday, April 29 2016

2016-04-29 Thread SOGo reporter
Title: BTS activities for Friday, April 29 2016





  
BTS Activities

  Home page: http://www.sogo.nu/bugs
  Project: SOGo
  For the period covering: Friday, April 29 2016

  
  
idlast updatestatus (resolution)categorysummary
	
	
	  
	
3651
	2016-04-29 10:27:00
	updated (open)
	GUI
	After a recent update the avatar icon messed up
	
	  
	
2690
	2016-04-29 17:22:46
	updated (open)
	Web Calendar
	Creating CalDAV event from Evolution results in one hour offset in SOGo UI
	
	  
	
3650
	2016-04-29 09:25:26
	updated (open)
	Web Calendar
	Calendar Print button missing.
	
	  
	
  
  


-- users@sogo.nuhttps://inverse.ca/sogo/lists

[SOGo] Bug with export folder

2016-04-29 Thread Albert Shih
Hi,

It seems the folder export don't work.

When someone try to export a folder sogo push a empty zip file. And on the
serveur we got some error like


zip warning: name not matched: 1.eml
zip warning: name not matched: 2.eml
zip warning: name not matched: 3.eml
zip warning: name not matched: 4.eml
zip warning: name not matched: 5.eml
zip warning: name not matched: 6.eml
zip warning: name not matched: 7.eml
zip warning: name not matched: 8.eml
zip warning: name not matched: 9.eml
zip warning: name not matched: 10.eml
zip error: Nothing to do! (SavedMessages.zip)

Anyone have any idea ?

Regards.
--
Albert SHIH
DIO bâtiment 15
Observatoire de Paris
5 Place Jules Janssen
92195 Meudon Cedex
France
Téléphone : +33 1 45 07 76 26/+33 6 86 69 95 71
xmpp: j...@obspm.fr
Heure local/Local time:
ven 29 avr 2016 23:28:58 CEST
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] How do I know which update script I have to call?

2016-04-29 Thread Steve Ankeny

I'm sorry!  I responded a bit too quickly.

IF you're using PostgreSQL, run 'sql-update-2.2.17_to_2.3.0.sh'

IF you're using MySQL, run 'sql-update-2.2.17_to_2.3.0-mysql.sh'

IF you're not sure which one you're running, running BOTH will not hurt 
your installation.


or, simply run something like, 'ps aux | grep mysql' to see if MySQL is 
being used


On 04/29/2016 10:22 AM, Steve Ankeny (stev...@cinergymetro.net) wrote:

better yet, just run them

IF they're needed, they will execute, and IF not, they'll do nothing.

On 04/29/2016 08:22 AM, Michael Vogel (ica...@dabo.de) wrote:

Hi!

Sometimes there seems to be a need to run database update scripts after
SOGo was updated. My problem is that I never know if or which of theses
scripts I had to call.

Mostly I really don't know the old SOGo version. For example: I just
updated and I'm now on 2.3.1. I don't know if I have to call the script
"sql-update-2.2.17_to_2.3.0-mysql.sh".

Is there any script that I haven't found by now that simply does a check
for the current database schema and does all needed changes?

Michael






--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] How do I know which update script I have to call?

2016-04-29 Thread Steve Ankeny

read pg 58-59 of the documentation

If it was working before upgrade, no script is needed.

On 04/29/2016 08:22 AM, Michael Vogel (ica...@dabo.de) wrote:

Hi!

Sometimes there seems to be a need to run database update scripts after
SOGo was updated. My problem is that I never know if or which of theses
scripts I had to call.

Mostly I really don't know the old SOGo version. For example: I just
updated and I'm now on 2.3.1. I don't know if I have to call the script
"sql-update-2.2.17_to_2.3.0-mysql.sh".

Is there any script that I haven't found by now that simply does a check
for the current database schema and does all needed changes?

Michael



--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] How to fully disable the Calendar module in v3?

2016-04-29 Thread dan le bray
While I haven't find how to fully disable the Calendar module (and still
would like to know how to do it), I found a way to avoid those annoying
notifications which can be summarize as: capture the error at the proxy
level and send a 204 HTTP return code instead of the 404.

We're using nginx so here is the relevant part:
---cut---
# add a special location to help returning HTTP code 204
location @return_204 {
return 204;
}

# add before the "break;" at the end of "location ^~ /SOGo {"
proxy_intercept_errors on;
error_page 404 = @return_204;
---cut---

One can think of this as a quick'n dirty way of "resolving" the annoying
notification... I agree ^^ but here it is anyway in case it can help
someone else

Le 29/04/2016 11:12, dan le bray (d...@univ-lehavre.fr) a écrit :
> Hello,
> we're testing our SOGo setup with the v3 release: upgrade from v2 to v3
> works just fine and everything seems ok but one tiny unnerving thing: a
> "Not Found" notification pops up at top right side of the page each time
> we switch from one module to another (ie, selecting the Contacts module
> while displaying the Mail module). We're using the Debian packages from
> the inverse.ca repositories (sogo v 3.0.2-1)
> 
> Regarding our config, we have disabled the Calendar module (using
> "ModulesConstraints = {Calendar = {uid = "dummy";};};") and there is no
> problem with the v2 but, looking at the log of the v3, one can see a 404
> error related to the Calendar module:
> 
> GET /SOGo/so//Calendar/alarmslist?browserTime=1461920909
> HTTP/1.0" 404 208/0 0.005 - - 0
> 
> And I higly suspect the annoying "Not Found" notification to be caused
> by this 404 error.
> 
> Thus my question ^^ How to fully disable the Calendar module and/or
> avoid this error (and the annoying notification)?
> 

-- 
Daniel Le Bray :: CRI :: Pôle Systèmes et Réseaux
daniel.le-b...@univ-lehavre.fr / +33 02 32 74 42 94
Universite du Havre, 25 rue Philippe Lebon, BP1123, 76063 Le Havre Cedex
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] How do I know which update script I have to call?

2016-04-29 Thread Michael Vogel
Hi!

Sometimes there seems to be a need to run database update scripts after
SOGo was updated. My problem is that I never know if or which of theses
scripts I had to call.

Mostly I really don't know the old SOGo version. For example: I just
updated and I'm now on 2.3.1. I don't know if I have to call the script
"sql-update-2.2.17_to_2.3.0-mysql.sh".

Is there any script that I haven't found by now that simply does a check
for the current database schema and does all needed changes?

Michael
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] Access SOGoSync

2016-04-29 Thread Marc Patermann

Hi,

say SOGo and SOGoSync are installed at mysogo.example.com and mail 
addresses differ from the domain - u...@test.example.org.


How to setup a EAS account in iOS and Android to this server?

There seem to a a autodiscovery mechanism from the mail address going 
on, which does not work because domains differ.



Thanks

Marc
--
users@sogo.nu
https://inverse.ca/sogo/lists