Re: [SOGo] Getting blank View when replying an email

2016-12-08 Thread emilio.fons...@mav.com.br
Hey everyone,

Now I know what is happening.
When I click on reply button, SOGo sends 2 requests: REPLY and EDIT
For sure, REPLY returns the draftId and EDIT take it.

But, I am using dockers containers as my structure (the problem doesn't happen 
if I use only one docker of SOGo).
That means: not always is the same machine that handle the two requests.
Most of times the request REPLY goes to one machine and the request EDIT goes 
to another different machine.

So, I am trying to understand what is the problem that makes me get a blank 
view on reply box, onde tcpdump does not show anything promising.
Finally, here is my questions: 
 * Is there any path that SOGo uses to save the draft, or it is made in a 
transient way? * If my first question is too much general, could you help me to 
debug further?
P.S: I was having some problems with synchronizing (using EAS) that doesn't 
happen if I use only one docker of SOGo. So, maybe this problem is correlated.

Thanks you all for the patience.
Best Regards.
Emílio Fonseca

---
Em Segunda, 28 Novembro, 2016 14:32 BRST, Emílio Fonseca 
(emilio.fons...@mav.com.br) <users@sogo.nu> escreveu:

Hello everyone,

I'm using git repo and I have problems when replying an email, because SOGo 
doesn't fill the inputs and I get a blank view.
This happens every time when I try to reply or forward an email.

Comparing my Webmail with the one in demo.sogo.nu, I saw two differences: * The 
"edit" response Preview:
 * My Webmail - In my Webmail the response came with the field "text" empty and 
there is no "subject" field. * demo.sogo.nu - Field "text" and "subject" filled 
as it should be. * The "edit" Request Cookies:
 * My Webmail - There are 02 cookies (0xHIGHFLYxSOGo and XSRF-TOKEN), but 
misses the "_ga". * demo.sogo.nu - There are 03 cookies, including "_ga".
I would appreciate any help about how to debug further to solve my problem.
Thank you very much.

Best Regards,

​​​Emílio Fonseca. --
users@sogo.nu
https://inverse.ca/sogo/lists --Emílio Fonseca
Development Analyst
Mav Tecnologia - (31) 3211-
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] Getting blank View when replying an email

2016-11-28 Thread emilio.fons...@mav.com.br
Hello everyone,

I'm using git repo and I have problems when replying an email, because SOGo 
doesn't fill the inputs and I get a blank view.
This happens every time when I try to reply or forward an email.

Comparing my Webmail with the one in demo.sogo.nu, I saw two differences: * 
​​​The "edit" response Preview:
 * My Webmail - In my Webmail the response came with the field "text" empty and 
there is no "subject" field. * demo.sogo.nu - Field "text" and "subject" filled 
as it should be. * The "edit" Request Cookies:
 * My Webmail - There are 02 cookies (0xHIGHFLYxSOGo and XSRF-TOKEN), but 
misses the "_ga". * demo.sogo.nu - There are 03 cookies, including "_ga".
I would appreciate any help about how to debug further to solve my problem.
Thank you very much.

Best Regards,

​​​Emílio Fonseca. 
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Outlook getting Disconnected

2016-09-23 Thread emilio.fons...@mav.com.br
Em 2016-09-23 11:31, Ludovic Marcotte escreveu:

> On 2016-09-23 10:29 AM, emilio.fons...@mav.com.br (emilio.fons...@mav.com.br) 
> wrote:
> 
>> SOGoMaximumPingInterval = 3540;
>> SOGoMaximumSyncInterval = 3540;
> Your HTTP server proxying requests to SOGo is likely closing the connection 
> due to a timeout. Increase the timeout values to 1 hour.

Sorry, I forgot to say, here is my nginx configuration: 

location ^~ /Microsoft-Server-ActiveSync {
proxy_pass
http://sogo.service.consul:2/SOGo/Microsoft-Server-ActiveSync;
proxy_connect_timeout 3540;
proxy_send_timeout 3540;
proxy_read_timeout 3540;
proxy_buffers 64 256k;
} 

So, it is already with a timeout big enough, right?
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] Outlook getting Disconnected

2016-09-23 Thread emilio.fons...@mav.com.br
Hello everyone,

With some accounts, I am getting a disconnected message in Outlook.
Looking into sogo.log, I see some errors like "client disconnected during 
delivery of response" that I suppose to be linked to the message in Outlook.
As example of the error message:

Sep 23 10:05:06 sogod [61]: [ERROR] <0x0x55ec8bec6760[WOHttpTransaction]> 
client disconnected during delivery of response for 
 (len=0): the socket 
was shutdown
Sep 23 10:05:06 sogod [61]: nginx-mail_1.mail "POST 
/SOGo/Microsoft-Server-ActiveSync?Cmd=SendMail=user@domain=C9E7F84151614479BB4F03C981A96B06=WindowsOutlook15
 HTTP/1.1" 200 0/29588 4.193 - - 3M
Sep 23 10:05:07 sogod [68]: [ERROR] <0x0x55ec8c1345c0[WOHttpTransaction]> 
client disconnected during delivery of response for 
 (len=0): the socket 
was shutdown


Because of this, I changed my EAS conf to:
SOGoMaximumSyncWindowSize = 1;
SOGoMaximumSyncResponseSize = 5172;
SOGoMaximumPingInterval = 3540;
SOGoMaximumSyncInterval = 3540;
SOGoInternalSyncInterval = 60;
WOWatchDogRequestTimeout = 50;

If I understood well, with SOGoMaximumSyncWindowSize = 1, EAS should sync only 
one item and, although it could be very slow, the client should never get 
disconnected.

Could anyone help me to know if the error message is really linked to the 
Outlook message and, if yes, am I correct when I think that the client should 
never get disconnected with these configurations?

Best regards, thanks you all.
--Emílio Fonseca
Development Analyst
Mav Tecnologia - (31) 3211-
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] Getting Exception: NSRangeException

2016-09-14 Thread emilio.fons...@mav.com.br
Hello,

I am watching sogo.log and there is a lot of messages like this:
EXCEPTION:  NAME:NSRangeException REASON:in 
substringWithRange:, range { 3, 2 } extends beyond size (4) INFO:(null)

I have already looked for some verboses and didn't get more detailed 
informations.
Could someone help me to get more detailed information about thie error?

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

Re: [SOGo] sogo-activesync package

2016-09-09 Thread emilio.fons...@mav.com.br
Em 2016-09-05 12:41, Christian Mack escreveu:

> Hello
> 
> Am 02.09.2016 um 15:33 schrieb emilio.fons...@mav.com.br
> (emilio.fons...@mav.com.br): 
> 
>> I am using the git repo and still need the sogo-activesync package installed 
>> in my server.
>> We are still testing SOGo and we don't have a support contract yet.
>> 
>> Does anyone have an alternative to my issue?
> 
> Sorry, but what is your issue?

I'm sorry if I was not very clear before. 

Here is my question: 

I used to install sogo and sogo-activesync package in order to use
Exchange accounts. Now, I am using git repo of SOGo and ActiveSync is
not working anymore. 

I searched in SOGo documentation support and did not see anything
related, about what is necessary to install  :( 

So, I want to know if there is anything that I should do to make it work
properly and if the package sogo-activesync is still needed. 

-- 

Thanks for the patience. 

Best Regards. 

Emílio Fonseca 

> Kind regards,
> Christian Mack
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] sogo-activesync package

2016-09-02 Thread emilio.fons...@mav.com.br
Hello,

I am using the git repo and still need the sogo-activesync package installed in 
my server.
We are still testing SOGo and we don't have a support contract yet.

Does anyone have an alternative to my issue?

Thanks you all.

Att.
Emílio Fonseca
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] How to become a Coordinator on Transifex?

2016-07-20 Thread emilio.fons...@mav.com.br

Hello,

I've been helping to translate SOGo in the languages I can on Transifex.
But, some strings are completely bad translated, with some typo or just using 
words out of context.

I am just a translator, so what I can do is just propose alternatively 
translations. I already tried it!
Long time passed, I didn't get any answer by the coordinators in my language 
about my suggestios.

Now, I want to help even more the SOGo equip, being a coordinator too, but how 
to became a coordinator? What do I need for this?

Thank you all.
Best regards.

--Emílio Fonseca
Development Analyst
Mav Tecnologia - (31) 3211-
-- 
users@sogo.nu
https://inverse.ca/sogo/lists