[SOGo] TB 24 and Free/Busy Functionality working from Lightning 2.6

2013-09-25 Thread Götz Reinicke - IT Koordinator
Hi folks,

we had the problem with Free/Busy Functionality not working from
Lightening in TB = V17.

I did recently an update to TB 24 and the recent Lightning Plugin 2.6
and voila the Free/Busy Functionality is working.


My questions are: Would we get in trouble using TB 24 with the official
TB Lightning Plugin with SOGo? Or what might be some pitfalls?

May be someone also knows if the most recent Lightning Plug in would
work with sogo-official-supported-Versions of TB (e.g. 17esr)

Any comments or suggestions?

Regards . Götz

-- 
Götz Reinicke
IT-Koordinator

Tel. +49 7141 969 82 420
Fax  +49 7141 969 55 420
E-Mail goetz.reini...@filmakademie.de

Filmakademie Baden-Württemberg GmbH
Akademiehof 10
71638 Ludwigsburg
www.filmakademie.de

Eintragung Amtsgericht Stuttgart HRB 205016

Vorsitzender des Aufsichtsrats: Jürgen Walter MdL
Staatssekretär im Ministerium für Wissenschaft,
Forschung und Kunst Baden-Württemberg

Geschäftsführer: Prof. Thomas Schadt



smime.p7s
Description: S/MIME Cryptographic Signature


Re: Re: [SOGo] Multiple domain

2013-09-25 Thread javier.marin.reyes
sorry for my ignorance, but do not really understand what I indicate. Could you
give me some more detail on how to do?

Thank you very much.
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] Trash folder and Outlook

2013-09-25 Thread Fabio Onorini
I have some problems with trash folder on Outlook.
After outlook profile creation, my folder list is:
- INBOX
- Drafts
- Sent
- Deleted Items



In SOGo webmail (and on IMAP server) list is:
- INBOX
- Drafts
- Sent
- Trash

When I delete message in outlook I can see it in Deleted Items but this
folder doesn't sync with server and folder is not created (on server).



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

[SOGo] Outlook and folder

2013-09-25 Thread Fabio Onorini
Strange behavior...
sometimes when send mail in Outlook, I can see message in Sent folder, but
after folders sync message moved in Drafts

Enviroment with sogo with Outlook native compatibility

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

[SOGo] Re: Outlook and folder

2013-09-25 Thread Fabio Onorini
This behavior happen always in my outlook.


2013/9/25 Fabio Onorini onofa...@gmail.com

 Strange behavior...
 sometimes when send mail in Outlook, I can see message in Sent folder, but
 after folders sync message moved in Drafts

 Enviroment with sogo with Outlook native compatibility

 --
 ---
 Fabio Onorini




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

Re: [SOGo] Multiple domain

2013-09-25 Thread Martin Rabl

You mean this?
http://www.sogo.nu/files/docs/SOGo%20Installation%20Guide.pdf
Chapter 5, Page 39 Multi-domains Configuration

Greetings,
   Martin

Am 25.09.13 12:14, schrieb javier.marin.re...@gmail.com:

sorry for my ignorance, but do not really understand what I indicate. Could you
give me some more detail on how to do?

Thank you very much.



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


Re: [SOGo] Multiple domain

2013-09-25 Thread Szládovics Péter

2013-09-25 12:14 keltezéssel, javier.marin.re...@gmail.com írta:

sorry for my ignorance, but do not really understand what I indicate. Could you
give me some more detail on how to do?

Thank you very much.


Example - three users and three domains.

User 1
us...@first.com
us...@second.com
us...@third.com

User 2
us...@second.com
us...@third.com

User 3
us...@third.com

LDAP is the Samba4 AD

# user 1
dn: cn=user1;cn=users,dc=example,dc=local
mail: us...@first.com
othermailbox: us...@second.com
othermailbox: us...@third.com

# user 2
dn: cn=user2;cn=users,dc=example,dc=local
mail: us...@second.com
othermailbox: us...@third.com

# user 3
dn: cn=user3;cn=users,dc=example,dc=local
mail: us...@third.com

*Postfix related settings*
postfix-ldap.conf:
version = 3
server_host = 127.0.0.1
server_port = 389
timeout = 60
search_base = cn=users,dc=example,dc=local
query_filter = (|(mail=%s)(otherMailbox=%s))
result_attribute = sAMAccountName
bind = yes
bind_dn = cn=administrator,cn=users,dc=example,dc=local
bind_pw = Som3P@ss
# -- End

main.cf:
virtual_alias_maps = ldap:/etc/postfix/postfix-ldap.conf
relay_transport = ldap:/etc/postfix/postfix-ldap.conf
virtual_mailbox_domains = first.com, second.com, third.com, example.local
# -- End

*Dovecot related settings*
dovecot-ldap.conf:
hosts = 127.0.0.1:389
dn = cn=administrator,cn=users,dc=example,dc=local
dnpass = Som3P@ss
auth_bind = yes
tls = no
deref = never
ldap_version = 3
base = cn=users,dc=example,dc=local
scope = subtree
user_attrs = =home=/var/mail,=uid=5000,=gid=5000
user_filter = 
((sAMAccountName=%u)(objectClass=person)(!(userAccountControl=514)))
pass_filter = 
((sAMAccountName=%u)(objectClass=person)(!(userAccountControl=514)))

pass_attrs = userPassword=password,sAMAccountName=user

*SOGo related settings*
SOGoUserSources = (
{
CNFieldName = displayName;
IDFieldName = cn;
MailFieldNames = (
mail,
otherMailbox
);
SearchFieldNames = (
sn,
sAMAccountName,
mail,
otherMailbox,
displayName
);
UIDFieldName = sAMAccountName;
baseDN = cn=users,dc=example,dc=local;
bindDN = cn=administrator,cn=users,dc=example,dc=local;
bindFileds = (
sAMAccountName
);
bindPassword = Som3P@ss;
canAuthenticate = YES;
displayName = Shared Addresses;
hostname = 127.0.0.1;
id = someid;
isAddressBook = YES;
port = 389;
}
);

I'm using four domains In my system in one SOGo instance with configured 
services such as above. It's working fine.

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

Re: [SOGo] TB 24 and Free/Busy Functionality working from Lightning 2.6

2013-09-25 Thread Szládovics Péter

2013-09-25 11:41 keltezéssel, Götz Reinicke - IT Koordinator írta:

Hi folks,

we had the problem with Free/Busy Functionality not working from
Lightening in TB = V17.

I did recently an update to TB 24 and the recent Lightning Plugin 2.6
and voila the Free/Busy Functionality is working.


My questions are: Would we get in trouble using TB 24 with the official
TB Lightning Plugin with SOGo? Or what might be some pitfalls?

May be someone also knows if the most recent Lightning Plug in would
work with sogo-official-supported-Versions of TB (e.g. 17esr)


Last info: few weeks.
--
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] TB plugin update site

2013-09-25 Thread Szládovics Péter

Dear Friends,

I've modified the update site generation script, because usability reasons.
At the past the script checked the followings:
- Is SOGo site existing?
- Is update site already existing?

If the site not exists, you cannot get the script. If the update site 
already exists, you also cannot get it.


This checks was gone.
You will got the script all the time, without any conditions.

Excuse me for the strict conditions before. :)

http://www.onlinedemo.hu/136-update-site-generation

When the TB24 plugins will be available, I'll modify the site for 
working in dual mode (you will can choice between version 17 and 24).


--

Üdvözlettel,

Szládovics Péter
informatikus mérnök

Mobiltelefon: +36 20 92 68 098
Onlinedemo.HU http://www.onlinedemo.hu

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

[SOGo] MS Outlook rpc proxy issue

2013-09-25 Thread labolinux

Hi everybody,
We installed SOGo 2.0.7 on CentOS 6.4 (x86_64 arch) with Outlook extension.
SOGo itself is working wellthroughthe web interface.
Well. Now when we try to connect Outlook to our server we get error such as:
Outlook is not online.. We tried then to findout where the error was.
We tried then to accesss through the webbrowser the RPC Proxy via 
http://ip.of.our.server/rpc/rpcproxy.dll .
We get 500 Internal error. When trying to findout the problem we tried 
to read apache's logs. We then get this:


...
[Wed Sep 25 17:30:22 2013] [error] = 
connection.ntlm_transaction(client_id, ntlm_payload)
[Wed Sep 25 17:30:22 2013] [error]   File 
/usr/lib64/python2.6/site-packages/openchange/web/auth/NTLMAuthHandler.py, 
line 455, in ntlm_transaction

[Wed Sep 25 17:30:22 2013] [error] self._send_to_server(payload)
[Wed Sep 25 17:30:22 2013] [error]   File 
/usr/lib64/python2.6/site-packages/openchange/web/auth/NTLMAuthHandler.py, 
line 476, in _send_to_server

[Wed Sep 25 17:30:22 2013] [error] self._make_connection()
[Wed Sep 25 17:30:22 2013] [error]   File 
/usr/lib64/python2.6/site-packages/openchange/web/auth/NTLMAuthHandler.py, 
line 516, in _make_connection

[Wed Sep 25 17:30:22 2013] [error] lockf = open(lock_filename, w+)
[Wed Sep 25 17:30:22 2013] [error] IOError: [Errno 13] Permission 
denied: '/var/cache/ntlmauthhandler/ntlm-127.0.0.1.lock'



When we checked the access rights of the file 
/var/cache/ntlmauthhandler/ntlm-127.0.0.1.lock we realized that the file 
doesn't exist at all.


Here is a view of our installation:
1.Samba4 (for authentication)
2.Postfix 2.6
3.Cyrus-imapd 2.24.17
4.Openchange

How can resolve that issue?
Tanks in advance.
--
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] webinterface doesn't provide ldap information

2013-09-25 Thread Mario Gruenwald
Hi

I have following installation:
- postfix
- dovecot
- samba4
- sogo

Samba4 contains the accounts and works as ldap Server. Login via webinterface 
is possible. Problem is: it seems, that sogo doesn't know the users. When i 
write an Email i cannot select the other users. Further, i cannot share a 
calendar to another user. And the Shared Addresses are empty.

I created my config using the pdf documents on 
http://www.sogo.nu/english/support/documentation.html

I attach one relevant/interesting part below.

Has anyone an idea? I am happy for any tip.

kindly regards
Mario

PS: my /etc/sogo/sogo.conf is similar to the example from documentation

...
SOGoUserSources '(
{
CNFieldName = displayName;
IDFieldName = cn;
UIDFieldName = sAMAccountName;
baseDN = cn=Users,dc=example,dc=com;
bindDN = cn=Administrator,cn=Users,dc=example,dc=com;
bindFields = (
sAMAccountName
);
bindPassword = %1OpenChange;
canAuthenticate = YES;
displayName = Shared Addresses;
hostname = 127.0.0.1;
id = samba;
isAddressBook = YES;
port = 389;
}
)'

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


Re: [SOGo] TB plugin update site

2013-09-25 Thread Steven Swarts

Good job,

I'm hoping to implement SOGo within the next month or 2. Will be very 
interested in looking into this.


*/Regards,/*

*/Steven Swarts/*


On 25/09/2013 9:22 PM, Szládovics Péter wrote:

Dear Friends,

I've modified the update site generation script, because usability 
reasons.

At the past the script checked the followings:
- Is SOGo site existing?
- Is update site already existing?

If the site not exists, you cannot get the script. If the update site 
already exists, you also cannot get it.


This checks was gone.
You will got the script all the time, without any conditions.

Excuse me for the strict conditions before. :)

http://www.onlinedemo.hu/136-update-site-generation

When the TB24 plugins will be available, I'll modify the site for 
working in dual mode (you will can choice between version 17 and 24).


--

Üdvözlettel,

Szládovics Péter
informatikus mérnök

Mobiltelefon: +36 20 92 68 098
Onlinedemo.HU http://www.onlinedemo.hu



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

Re: [SOGo] TB plugin update site

2013-09-25 Thread Christian Punchin
Thanks Peter!.


On Wed, Sep 25, 2013 at 9:22 AM, Szládovics Péter p...@szladovics.huwrote:

  Dear Friends,

 I've modified the update site generation script, because usability reasons.
 At the past the script checked the followings:
 - Is SOGo site existing?
 - Is update site already existing?

 If the site not exists, you cannot get the script. If the update site
 already exists, you also cannot get it.

 This checks was gone.
 You will got the script all the time, without any conditions.

 Excuse me for the strict conditions before. :)

 http://www.onlinedemo.hu/136-update-site-generation

 When the TB24 plugins will be available, I'll modify the site for working
 in dual mode (you will can choice between version 17 and 24).

  --

 Üdvözlettel,

  Szládovics Péter
 informatikus mérnök

 Mobiltelefon: +36 20 92 68 098
  Onlinedemo.HU http://www.onlinedemo.hu


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

Re: [SOGo] Re: Outlook and folder

2013-09-25 Thread Szládovics Péter

2013-09-25 12:28 keltezéssel, Fabio Onorini írta:

This behavior happen always in my outlook.


2013/9/25 Fabio Onorini onofa...@gmail.com mailto:onofa...@gmail.com

Strange behavior...
sometimes when send mail in Outlook, I can see message in Sent
folder, but after folders sync message moved in Drafts

Enviroment with sogo with Outlook native compatibility



I think you missed some steps on your imap configuration.

check the followings:

Go to your SOGo server as local user (root privileges won't need).

telnet localhost 143

1 LOGIN existing_virtual_username absolutely_wrong_password enter

What is the answer of your IMAP server?


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

[SOGo] email bouncing

2013-09-25 Thread J.
I've got ldap authentication set up for postfix and dovecot and have several 
domains being served by the machine. For two of the domains email is coming 
through ok, but on the others it's bouncing with User doesn't exist:. There 
is an email alias attribute set per user called AlternateAddress and for 
example, a user has:

mail: j...@domain1.com
AlternateAddress: j...@domain2.com
AlternateAddress: jay...@domain3.com

the first two work, but the third bounces. Is there a place I need to tell the 
auth mechanism which domains are ok or should this set up work? (our setup is 
very similar to the example files that Peter sent earlier today. Something 
like: query_filter = (|(mail=%s)(AlternateAddress=%s)) )

possible related issue: mail is showing up in my inbox in Thunderbird, but not 
in the SOGo web client when I log in.
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Multiple domain

2013-09-25 Thread Mail Robot
Hi,

I would just double confirm based on the sample given.

Can I have us...@first.com who is different than us...@second.com?


On Wednesday, September 25, 2013, Szládovics Péter wrote:

  2013-09-25 12:14 keltezéssel, javier.marin.re...@gmail.comjavascript:_e({}, 
 'cvml', 'javier.marin.re...@gmail.com');írta:

 sorry for my ignorance, but do not really understand what I indicate. Could 
 you
 give me some more detail on how to do?

 Thank you very much.


 Example - three users and three domains.

 User 1
 us...@first.com javascript:_e({}, 'cvml', 'us...@first.com');
 us...@second.com javascript:_e({}, 'cvml', 'us...@second.com');
 us...@third.com javascript:_e({}, 'cvml', 'us...@third.com');

 User 2
 us...@second.com javascript:_e({}, 'cvml', 'us...@second.com');
 us...@third.com javascript:_e({}, 'cvml', 'us...@third.com');

 User 3
 us...@third.com javascript:_e({}, 'cvml', 'us...@third.com');

 LDAP is the Samba4 AD

 # user 1
 dn: cn=user1;cn=users,dc=example,dc=local
 mail: us...@first.com javascript:_e({}, 'cvml', 'us...@first.com');
 othermailbox: us...@second.com javascript:_e({}, 'cvml',
 'us...@second.com');
 othermailbox: us...@third.com javascript:_e({}, 'cvml',
 'us...@third.com');

 # user 2
 dn: cn=user2;cn=users,dc=example,dc=local
 mail: us...@second.com javascript:_e({}, 'cvml', 'us...@second.com');
 othermailbox: us...@third.com javascript:_e({}, 'cvml',
 'us...@third.com');

 # user 3
 dn: cn=user3;cn=users,dc=example,dc=local
 mail: us...@third.com javascript:_e({}, 'cvml', 'us...@third.com');

 *Postfix related settings*
 postfix-ldap.conf:
 version = 3
 server_host = 127.0.0.1
 server_port = 389
 timeout = 60
 search_base = cn=users,dc=example,dc=local
 query_filter = (|(mail=%s)(otherMailbox=%s))
 result_attribute = sAMAccountName
 bind = yes
 bind_dn = cn=administrator,cn=users,dc=example,dc=local
 bind_pw = Som3P@ss
 # -- End

 main.cf:
 virtual_alias_maps = ldap:/etc/postfix/postfix-ldap.conf
 relay_transport = ldap:/etc/postfix/postfix-ldap.conf
 virtual_mailbox_domains = first.com, second.com, third.com, example.local
 # -- End

 *Dovecot related settings*
 dovecot-ldap.conf:
 hosts = 127.0.0.1:389
 dn = cn=administrator,cn=users,dc=example,dc=local
 dnpass = Som3P@ss
 auth_bind = yes
 tls = no
 deref = never
 ldap_version = 3
 base = cn=users,dc=example,dc=local
 scope = subtree
 user_attrs = =home=/var/mail,=uid=5000,=gid=5000
 user_filter =
 ((sAMAccountName=%u)(objectClass=person)(!(userAccountControl=514)))
 pass_filter =
 ((sAMAccountName=%u)(objectClass=person)(!(userAccountControl=514)))
 pass_attrs = userPassword=password,sAMAccountName=user

 *SOGo related settings*
 SOGoUserSources = (
 {
 CNFieldName = displayName;
 IDFieldName = cn;
 MailFieldNames = (
 mail,
 otherMailbox
 );
 SearchFieldNames = (
 sn,
 sAMAccountName,
 mail,
 otherMailbox,
 displayName
 );
 UIDFieldName = sAMAccountName;
 baseDN = cn=users,dc=example,dc=local;
 bindDN = cn=administrator,cn=users,dc=example,dc=local;
 bindFileds = (
 sAMAccountName
 );
 bindPassword = Som3P@ss;
 canAuthenticate = YES;
 displayName = Shared Addresses;
 hostname = 127.0.0.1;
 id = someid;
 isAddressBook = YES;
 port = 389;
 }
 );

 I'm using four domains In my system in one SOGo instance with configured
 services such as above. It's working fine.

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

[SOGo] BTS activities for Wednesday, September 25 2013

2013-09-25 Thread SOGo reporter
Title: BTS activities for Wednesday, September 25 2013





  
BTS Activities

  Home page: http://www.sogo.nu/bugs
  Project: SOGo
  For the period covering: Wednesday, September 25 2013

  
  
idlast updatestatus (resolution)categorysummary
	
	
	  
	
2421
	2013-09-25 04:24:49
	new (open)
	Backend Calendar
	Infinite \ on participant when modify an event
	
	  
	
2081
	2013-09-25 09:05:58
	updated (open)
	OpenChange backend
	Outlook cannot create an entry in shared calendar
	
	  
	
2297
	2013-09-25 09:23:45
	updated (open)
	OpenChange backend
	Entire day events
	
	  
	
2423
	2013-09-25 07:38:43
	new (open)
	OpenChange backend
	Sent folder in Outlook
	
	  
	
2189
	2013-09-25 16:23:50
	closed (wont fix)
	Backend Address Book
	DAV property '{DAV:}getlastmodified' has no matching SQL field, response could be incomplete
	
	  
	
2399
	2013-09-25 16:04:49
	closed (fixed)
	Backend Calendar
	DAV:resource-id does not equal for bound resources
	
	  
	
2424
	2013-09-25 08:57:25
	closed (wont fix)
	Backend Calendar
	Free/Busy outlook calendar
	
	  
	
2319
	2013-09-25 14:31:54
	closed (fixed)
	OpenChange backend
	Samba lost mysql connection
	
	  
	
2354
	2013-09-25 13:52:44
	closed (fixed)
	OpenChange backend
	information indésirable lors de la création d'un nouveau contact depuis Outlook
	
	  
	
2422
	2013-09-25 07:07:12
	closed (wont fix)
	OpenChange backend
	Trash folder on Outlook
	
	  
	
2310
	2013-09-25 16:21:09
	closed (wont fix)
	SOPE
	An unhandled error occurred.
	
	  
	
2231
	2013-09-25 16:25:37
	closed (suspended)
	Web Calendar
	Two personal Calendars for a single user
	
	  
	
2240
	2013-09-25 14:45:59
	closed (fixed)
	Web Calendar
	Invalid format of COMPLETED date in VTODO
	
	  
	
2367
	2013-09-25 16:14:02
	closed (not a bug)
	Web General
	incorrect password hangs sogod until restarted
	
	  
	
1975
	2013-09-25 10:08:13
	closed (wont fix)
	Web Mail
	Cannot delete folders from trash can