[SOGo] BTS activities for Thursday, November 24 2016

2016-11-24 Thread SOGo reporter
Title: BTS activities for Thursday, November 24 2016





  
BTS Activities

  Home page: http://www.sogo.nu/bugs
  Project: SOGo
  For the period covering: Thursday, November 24 2016

  
  
idlast updatestatus (resolution)categorysummary
	
	
	  
	
3905
	2016-11-24 06:16:10
	updated (open)
	Apple Calendar (Mac OS X)
	Organizer Missing in VCALENDAR Objects
	
	  
	
3913
	2016-11-24 19:12:32
	updated (open)
	Backend General
	ApplicationBaseURL incorrectly set if suburl is other than /SOGo
	
	  
	
3912
	2016-11-24 05:48:16
	updated (open)
	GUI
	Imported Events/Appointments not visible in GUI
	
	  
	
3900
	2016-11-24 18:03:00
	updated (open)
	Web Mail
	freeze after click send msg
	
	  
	
3907
	2016-11-24 16:15:41
	updated (open)
	Web Mail
	Sieve server Authentication failed
	
	  
	
3909
	2016-11-24 19:15:43
	resolved (fixed)
	Web Calendar
	Fault Czech diacritics on reminder popup window
	
	  
	
3798
	2016-11-24 16:22:58
	closed (suspended)
	Backend Address Book
	Ldap backend address book - proxy error - Sogo v3.x nightly
	
	  
	
2498
	2016-11-24 18:11:59
	closed (wont fix)
	SOPE
	Unknown WebClient with Caldav Sync Free Beta
	
	  
	
2022
	2016-11-24 18:16:16
	closed (suspended)
	Web Calendar
	German labels mess with default windowsize calendar properties
	
	  
	
2117
	2016-11-24 18:13:49
	closed (suspended)
	Web Calendar
	Select/unselect all calendars
	
	  
	
2555
	2016-11-24 17:54:58
	closed (suspended)
	Web Calendar
	When editing events, all calendars are redrawn
	
	  
	
2556
	2016-11-24 16:28:17
	closed (suspended)
	Web Calendar
	Invalid warning when inviting additional persons
	
	  
	
3205
	2016-11-24 16:37:08
	closed (suspended)
	Web Calendar
	Very short events are not "high enough" to show the event's caption (web view)
	
	  
	
368
	2016-11-24 17:53:43
	closed (suspended)
	Web General
	endless spinning wheel
	
	  
	
3802
	2016-11-24 16:16:45
	closed (fixed)
	Web General
	SOGo does not refresh after adding contacts or calendar items.
	
	  
	
  
  


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

[SOGo] Sogo and sendgrid

2016-11-24 Thread Arjon Bujupi

Hello,

I am sending this for the first time so please sorry if I make a mistake.

I have been seeing SoGo for a few months now and I love the interface. I 
haven't installed it because it's a little time consuming to manage my 
own email server. I have some sysadmin skills.


I was wondering if I can integrate sendgrid/amazon ses with SoGo to send 
and receive emails. Is it possible? I really love the interface and I 
want to move all my users on SoGo.


Thank you for your time.

Have a great weekend.

Arjon

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


Re: [SOGo] dovecot-sogo3 and shared folders

2016-11-24 Thread Jonathan Dumaresq

Hi Frank,

Well, I found some sample from openchange webpage. on the dovecot 
documentation they have some information too. I have to admit, that it's 
never easy to configure this kind of stuff. We are trying to get the 
contact creation from web UI  to our LDAP server without success in 3 
work days...


For the mail sharing, we will have to enable it in dovecot


# ACL and share folder
acl = vfile
acl_shared_dict = proxy::acl

# By default Dovecot doesn't allow using the IMAP "anyone" or
# "authenticated" identifier, because it would be an easy way to spam
# other users in the system. If you wish to allow it,
acl_anyone = allow

namespace {
type = shared
separator = /
prefix = Shared/%%u/
location = maildir:%%h:INDEXPVT=~/Shared/%%u

# this namespace should handle its own subscriptions or not.
subscriptions = no
list = children
}

this should give you a small start on your shar folder.

Hope this help

Jonathan


Le 24/11/2016 à 13:04, "Frank Soyer" (fso...@systea.fr) a écrit :


Hi list,
and sorry if this question was already answered, I can't find any doc :
I'm testing Sogo 3 (what a pleasure ! ;) bravo to all the team for 
this work !) and wonder if there is some doc ot tuto about sharing 
email folders. The system is a CentOS7 with dovecot (provided by 
VestaCP that I'm adapting for Sogo), auth on mysql. Actualy all other 
functionnalities work like a charm, mails, calendars, address books, 
and sharing this last two... But not folders.
I've read here some posts, particularly from Jonathan Dumaresq : where 
have you found this conf ?


Thanx for all informations !
Frank

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


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

Re: [SOGo] dovecot-sogo3 and shared folders

2016-11-24 Thread p...@szladovics.hu

2016-11-24 19:04 keltezéssel, "Frank Soyer" (fso...@systea.fr) írta:


Hi list,
and sorry if this question was already answered, I can't find any doc :
I'm testing Sogo 3 (what a pleasure ! ;) bravo to all the team for 
this work !) and wonder if there is some doc ot tuto about sharing 
email folders. The system is a CentOS7 with dovecot (provided by 
VestaCP that I'm adapting for Sogo), auth on mysql. Actualy all other 
functionnalities work like a charm, mails, calendars, address books, 
and sharing this last two... But not folders.
I've read here some posts, particularly from Jonathan Dumaresq : where 
have you found this conf ?


Thanx for all informations !
Frank



Hi Frank,

I used AD for auth, but I think this little difference won't confuse you.
You have to some changes in your dovecot.conf file:

1. In the mail_plugins line you need to add the acl plugin.

   Example:
   Before: mail_plugins = quota notify
   After: mail_plugins = acl quota notify

2. Into the "plugins" section you need to insert two lines:

  acl_shared_dict = file:/var/mail/shared-mailboxes.db
  acl = vfile

(Of course change the path similar to your environment).

3. At the end of the config you need to add two sections (based on your 
environment):


   namespace {
  type = private
  separator = /
  prefix =
  inbox = yes
   }
   namespace {
  type = shared
  separator = /
  prefix = shared/%%u/
  location = maildir:/var/mail/%%u:INDEX=/var/mail/%u/shared/%%u
  list = children
   }

4. And finally you have to restart the dovecot service.

I think that above will be enough for the happiness.

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

Re: [SOGo] correct syntax for SOGoDomainsVisibility?

2016-11-24 Thread Maik Derstappen
Hi Niklaas,

On 24.11.2016 11:47, Niklaas Baudet von Gersdorff (st...@niklaas.eu) wrote:
> Maik Derstappen [2016-11-22 20:14 +0100] :
>
>> I'm trying to setup SOGoDomainsVisibility to make more domain visible in
>> one account.
>>
>> From the docs it is not clear what the syntax is, because the text an
>> the example show different syntax.
> I don't think so.
the docs are just changed to the nested array example, before it was ja
a list in the example ;)
>> I tried several variant but nothing work like expected.
> Just set this up for two of my domains. I guess the most
> important aspect to note is that it's an "array of arrays". So,
> each group of domains that should be visible to each other is one
> array. If you want to have multiple groups that share visibility
> you need multiple arrays.
>
> For example if a group consisting of domain1, domain2, and
> domain3 should see each other, and another group of domain2,
> domain4, and domain5 should see each other, you'd have to
> specify:
>
>   SOGoDomainsVisibility = ( ( domains1, domain2, domain3 ), ( domain2, 
> domain4, domain5 ) ) ;
>
> Does this help to better understand it?
>
> Niklaas
ok good to know thx for the example.

You are using domain1 and domain2 instead of domain1.com and domain2.com.
I have the feeling that there is something strange in general with the
multi domain config.
I set it up like:

  domains = {
dom1.de = {
  SOGoMailDomain = dom1.de;
  SOGoUserSources = (
  {
type = sql;
id = dom1_dir;
DomainFieldName = "domain";
viewURL =
"postgresql://sogo:passw...@mail.lan:5432/mail/sogo_users";
SOGoDomainsVisibility = ((dom1.de, dom2.de));
canAuthenticate = YES;
isAddressBook = YES;
userPasswordAlgorithm = ssha;
  }
  );
};
dom2.de = {
  SOGoMailDomain = dom2.de;
  SOGoUserSources = (
  {
type = sql;
id = dom2_dir;
DomainFieldName = "domain";
viewURL =
"postgresql://sogo:passw...@mail.lan:5432/mail/sogo_users";
SOGoDomainsVisibility = ((dom1.de, dom2.de));
canAuthenticate = YES;
isAddressBook = YES;
userPasswordAlgorithm = ssha;
  }
  );
};
  };

But if a user from dom2.de is logged in, he can see addresses from
dom1.de but surprisingly not for his domain dom2.de.
Any idea what that could be.


-- 
viele Grüße
Maik Derstappen

--
Maik Derstappen
Geschäftsführer

derico - web development & consulting
-- Python - Plone - Zope - Pyramid - Django --
Demmeringstr. 57 - 04177 Leipzig - Deutschland
Tel: +49 178 861 2 833 - E-Mail: m...@derico.de - Web: http://derico.de

-- help --
Ask your Plone questions on Gitter: https://gitter.im/plone/public


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

[SOGo] dovecot-sogo3 and shared folders

2016-11-24 Thread "Frank Soyer"

Hi list,
and sorry if this question was already answered, I can't find any doc :
I'm testing Sogo 3 (what a pleasure ! ;) bravo to all the team for this work !) 
and wonder if there is some doc ot tuto about sharing email folders. The system 
is a CentOS7 with dovecot (provided by VestaCP that I'm adapting for Sogo), 
auth on mysql. Actualy all other functionnalities work like a charm, mails, 
calendars, address books, and sharing this last two... But not folders.
I've read here some posts, particularly from Jonathan Dumaresq : where have you 
found this conf ?

Thanx for all informations !
Frank
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

AW: [SOGo] Problems with SOGo after upgrade to 3.2.2

2016-11-24 Thread "Andreas Blaha"
Hi,

with help I have sorted this out by increasing the connection limit of
mysql. Still strange that it occurred only after the upgrade.

 

Best

Andy

 

Von: users-requ...@sogo.nu [mailto:users-requ...@sogo.nu] Im Auftrag von
"Andreas Blaha"
Gesendet: Donnerstag, 24. November 2016 11:29
An: users@sogo.nu
Betreff: [SOGo] Problems with SOGo after upgrade to 3.2.2

 

Hello,

this morning I upgraded SOGo to 3.2.2 (together with updates on dovecot, so
not entirely sure what caused the issue I now have) and since get following
errors as soon as any client (web, Outlook, iPhone) tries to get information
from the database:

Nov 24 09:08:07 myservername de postfix/pickup[836]: 6038F3E1C7: uid=993
from=
Nov 24 09:08:07 myservername postfix/cleanup[2648]: warning:
proxy:mysql:/etc/postfix/mysql/sender_bcc_maps_user.cf lookup error for
"s...@domain.tld  "
Nov 24 09:08:07 myservername postfix/cleanup[2648]: warning: 6038F3E1C7:
sender_bcc_maps lookup problem
Nov 24 09:08:07 myservername postfix/pickup[836]: warning:
maildrop/4A2893E1C5: error writing 6038F3E1C7: queue file write error

I executed these two commands, they report following:

[root@mail /]# postmap -q "s...@domain.tld  "
mysql:/etc/postfix/mysql/transport_maps_user.cf
postmap: warning: connect to mysql server 127.0.0.1: Too many connections
postmap: fatal: table mysql:/etc/postfix/mysql/transport_maps_user.cf: query
error: Success
[root@mail /]# postmap -q "domain.tld"
mysql:/etc/postfix/mysql/transport_maps_domain.cf
postmap: warning: connect to mysql server 127.0.0.1: Too many connections
postmap: fatal: table mysql:/etc/postfix/mysql/transport_maps_domain.cf:
query error: Success
[root@mail /]#

I do not know whether dovecot or Sogo upgrade did this.

Any ideas?

 

Many thanks in advance

 

Andy

 

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

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

[SOGo] sogo 3.1.5 | resources with mysql

2016-11-24 Thread - m-it-solution - Ewald Bieg

hey @ all
is there a way to create and manage resources with sogo and mysql?
If yes ist there a howto for the needed parts changing the database?

thanks in advance

--

Ewald Bieg
m-it-solution -Technik -

--

freundliche Gruesse aus  / kind regards from   Wippenreute
Ewald Bieg
IT-Support

Tel 07504 91598-0

:
m-it-solution -Technik -
Fujitsu Bytec Service Partner
Wippenreute 29
88213 Ravensburg

Tel07504-91598-0
Fax07504-91598-29
inet   www.m-it-solution.de

Umsatzsteuer-ID: DE268650948 
:

--
Der Inhalt dieser E-Mail ist vertraulich und ausschliesslich fuer den 
bezeichneten Adressaten bestimmt.
Wenn Sie nicht der vorgesehene Adressat oder Vertreter des Adressaten dieser 
E-Mail sind, beachten
Sie bitte, sich in diesem Fall mit dem Absender der E-Mail in Verbindung zu 
setzen und die E-Mail von
Ihrem EDV-System zu loeschen sowie Ausdrucke zu vernichten. Vielen Dank fuer 
Ihre Kooperation.
--
: 



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


[SOGo] SOGo and mariaDB

2016-11-24 Thread Andreas
Hi,

I am using mailcow with SOGo and maria DB in Ubuntu 16.04. The problem
is that SOGo does not create the user specific tables, like
"sogodemo03456653535_quick etc.

I used the dump mysql-utf8mb4.sql to import the necessary tables and
made these settings before:

[mysqld]
character-set-client-handshake = FALSE
character-set-server   = utf8mb4
collation-server   = utf8mb4_unicode_ci
innodb_file_per_table  = TRUE
innodb_file_format = barracuda
innodb_large_prefix= TRUE

The SOGo log tells me:

cannot execute quick-fetch SQL 'SELECT c_name, c_cn FROM
sogodemo0011fda3436_quick ORDER BY c_cn ASC':  NAME:ExecutionFailed REASON:Table
'mailcow.sogotestalte0011fda3436_quick' doesn't exist

Any suggestions?


Thanks

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


Re: [SOGo] correct syntax for SOGoDomainsVisibility?

2016-11-24 Thread Niklaas Baudet von Gersdorff
Maik Derstappen [2016-11-22 20:14 +0100] :

> I'm trying to setup SOGoDomainsVisibility to make more domain visible in
> one account.
> 
> From the docs it is not clear what the syntax is, because the text an
> the example show different syntax.

I don't think so.

> I tried several variant but nothing work like expected.

Just set this up for two of my domains. I guess the most
important aspect to note is that it's an "array of arrays". So,
each group of domains that should be visible to each other is one
array. If you want to have multiple groups that share visibility
you need multiple arrays.

For example if a group consisting of domain1, domain2, and
domain3 should see each other, and another group of domain2,
domain4, and domain5 should see each other, you'd have to
specify:

  SOGoDomainsVisibility = ( ( domains1, domain2, domain3 ), ( domain2, domain4, 
domain5 ) ) ;

Does this help to better understand it?

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


[SOGo] Problems with SOGo after upgrade to 3.2.2

2016-11-24 Thread "Andreas Blaha"
Hello,

this morning I upgraded SOGo to 3.2.2 (together with updates on dovecot, so
not entirely sure what caused the issue I now have) and since get following
errors as soon as any client (web, Outlook, iPhone) tries to get information
from the database:

Nov 24 09:08:07 myservername de postfix/pickup[836]: 6038F3E1C7: uid=993
from=
Nov 24 09:08:07 myservername postfix/cleanup[2648]: warning:
proxy:mysql:/etc/postfix/mysql/sender_bcc_maps_user.cf lookup error for
"s...@domain.tld"
Nov 24 09:08:07 myservername postfix/cleanup[2648]: warning: 6038F3E1C7:
sender_bcc_maps lookup problem
Nov 24 09:08:07 myservername postfix/pickup[836]: warning:
maildrop/4A2893E1C5: error writing 6038F3E1C7: queue file write error

I executed these two commands, they report following:

[root@mail /]# postmap -q "s...@domain.tld"
mysql:/etc/postfix/mysql/transport_maps_user.cf
postmap: warning: connect to mysql server 127.0.0.1: Too many connections
postmap: fatal: table mysql:/etc/postfix/mysql/transport_maps_user.cf: query
error: Success
[root@mail /]# postmap -q "domain.tld"
mysql:/etc/postfix/mysql/transport_maps_domain.cf
postmap: warning: connect to mysql server 127.0.0.1: Too many connections
postmap: fatal: table mysql:/etc/postfix/mysql/transport_maps_domain.cf:
query error: Success
[root@mail /]#

I do not know whether dovecot or Sogo upgrade did this.

Any ideas?

 

Many thanks in advance

 

Andy

 

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

[SOGo] can't change calendar - appointment get's copied

2016-11-24 Thread goetz.reini...@filmakademie.de
Hi,

I have two calendars and I can't move an appointment from one calendar
to the other; the appointment get's duplicated.

This happends on my iphone ios 10.1.1 tested.

Any hints? Regards . Götz



smime.p7s
Description: S/MIME Cryptographic Signature