[SOGo] No LDAP (user sources) directories on iOS 7

2014-06-23 Thread Alessio Fattorini

hi Guys
I'm on Sogo version 2.1.1bm from my iPhone 7.1.1 for a while I can't see 
any LDAP (user sources) directories, other addressbook work correctly.
But I can see them from Thundebird or web interface and since sogo 
version is not changed, I guess that the change is iOS side.

Can anyone give me any feedback?
Thanks in advance
Alessio

--
Alessio Fattorini - @ale_fattorini
Nethesis srl - Pesaro (Italy)
--
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] Task and mail unread

2014-06-23 Thread VILLEMUR Jacques

hello, 
Is it possible to change the display of the task list: add the status for 
example ? 
Sort of message ( read/Unred ) will soon be available ?
Thank you for your comments.
Jacques-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Task and mail unread

2014-06-23 Thread Ludovic Marcotte
On 2014-06-23, 9:57 AM, VILLEMUR Jacques wrote:
 Is it possible to change the display of the task list: add the status
 for example ? 
 Sort of message ( read/Unred ) will soon be available ?
Are you referring to this?

http://sogo.nu/bugs/view.php?id=2760

If so, this feature has been implemented and will be part of v2.2.6.

-- 
Ludovic Marcotte
lmarco...@inverse.ca  ::  +1.514.755.3630  ::  http://inverse.ca
Inverse inc. :: Leaders behind SOGo (http://sogo.nu) and PacketFence 
(http://packetfence.org)

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


[SOGo] Address book searches for Asterisk look-up

2014-06-23 Thread Ian McMichael
I'd like to be able to search a SOGo address book for a given number and
return the name(s) associated with it.  This would enable our Asterisk
VoIP PBX to look-up the number of incoming calls and display names from
the company address book.

We use MySQL for our database and I can see each address book has an
_quick table associated with it, which contains the name and one
(presumably preferred?) telephone number.  This would partially work but
ideally I'd be able to search all telephone number fields.

Is there a way to add additional search fields to the address books
quick tables?  Alternatively, is there any sort of API (web-based,
maybe?) that can be used to programmatically query the data?

Thanks for any suggestions...

-- 

Ian McMichael

. E-Mail: ian.mcmich...@gmail.com
. Phone: +44-(0)7703-192837

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

Re: [SOGo] Task and mail unread

2014-06-23 Thread VILLEMUR Jacques

No, this is also to add a column for the status in the list.

And the sort of messages ?
Jacques

Le Lundi 23 Juin 2014 16:15 CEST, Ludovic Marcotte lmarco...@inverse.ca a 
écrit:
 On 2014-06-23, 9:57 AM, VILLEMUR Jacques wrote:
 Is it possible to change the display of the task list: add the status
 for example ?
 Sort of message ( read/Unred ) will soon be available ?
Are you referring to this?

http://sogo.nu/bugs/view.php?id=2760

If so, this feature has been implemented and will be part of v2.2.6.

--
Ludovic Marcotte
lmarco...@inverse.ca :: +1.514.755.3630 :: http://inverse.ca
Inverse inc. :: Leaders behind SOGo (http://sogo.nu) and PacketFence 
(http://packetfence.org)

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

Re: [SOGo] Integrator Question re: adding prefs to site.js?

2014-06-23 Thread Charles Marcus

On 6/10/2014 1:22 PM, Ludovic Marcotte lmarco...@inverse.ca wrote:

site.js is use for 'initial preference values'.

This is documented in 
http://www.sogo.nu/files/docs/SOGo%20Mozilla%20Thunderbird%20Configuration.pdf 
:


Settings that pushed are pushed *during initial configuration* are 
controlled by the

./defaults/preferences/site.js fle from SOGo Integrator.

Preferences that *are forced upon every restart* of Thunderbird are 
controlled from the
./chrome/content/general/custom-preferences.js confguration file. 


Thanks Ludo - working on implementing this now, but...

How do I specify values that are neither integers (assuming 'int' stands 
for 'integer') or boolean (true/false)?


For example, how would I specify:

user_pref(mail.addr_book.quicksearchquery.format, 
?(or(Company,c,@V)(PrimaryEmail,c,@V)(DisplayName,c,@V)(FirstName,c,@V)(LastName,c,@V)));


or

user_pref(browser.cache.disk.capacity, 40960);

Just use force_bool_pref?

Thanks,


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

Re: [SOGo] Integrator Question re: adding prefs to site.js?

2014-06-23 Thread Ludovic Marcotte

On 2014-06-23, 4:30 PM, Charles Marcus wrote:

For example, how would I specify:

user_pref(mail.addr_book.quicksearchquery.format, 
?(or(Company,c,@V)(PrimaryEmail,c,@V)(DisplayName,c,@V)(FirstName,c,@V)(LastName,c,@V)));


force_char_pref(mail.addr_book.quicksearchquery.format, 
?(or(Company,c,@V)(PrimaryEmail,c,@V)(DisplayName,c,@V)(FirstName,c,@V)(LastName,c,@V)));

or

user_pref(browser.cache.disk.capacity, 40960);



force_int_pref(browser.cache.disk.capacity, 40960);

Cheers,

--
Ludovic Marcotte
lmarco...@inverse.ca  ::  +1.514.755.3630  ::  http://inverse.ca
Inverse inc. :: Leaders behind SOGo (http://sogo.nu) and PacketFence 
(http://packetfence.org)

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


Re: [SOGo] Integrator Question re: adding prefs to site.js?

2014-06-23 Thread Tanstaafl

On 6/23/2014 4:44 PM, Ludovic Marcotte lmarco...@inverse.ca wrote:

On 2014-06-23, 4:30 PM, Charles Marcus wrote:

For example, how would I specify:

user_pref(mail.addr_book.quicksearchquery.format,
?(or(Company,c,@V)(PrimaryEmail,c,@V)(DisplayName,c,@V)(FirstName,c,@V)(LastName,c,@V)));



force_char_pref(mail.addr_book.quicksearchquery.format,
?(or(Company,c,@V)(PrimaryEmail,c,@V)(DisplayName,c,@V)(FirstName,c,@V)(LastName,c,@V)));


Thanks


or

user_pref(browser.cache.disk.capacity, 40960);



force_int_pref(browser.cache.disk.capacity, 40960);


Lol - thx - dunno what I was thinking (40960 is still an integer)...
--
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] BTS activities for Monday, June 23 2014

2014-06-23 Thread SOGo reporter
Title: BTS activities for Monday, June 23 2014





  
BTS Activities

  Home page: http://www.sogo.nu/bugs
  Project: SOGo
  For the period covering: Monday, June 23 2014

  
  
idlast updatestatus (resolution)categorysummary
	
	
	  
	
2817
	2014-06-23 15:54:06
	updated (open)
	ActiveSync
	ActiveSync attachement broken using Outlook 2013
	
	  
	
2299
	2014-06-23 05:35:25
	updated (open)
	with external server
	Unable to Synch Contacts with iCloud in TB
	
	  
	
2823
	2014-06-23 15:51:12
	assigned (open)
	Backend Address Book
	Collected Address Book now appears on all iPhones
	
	  
	
2827
	2014-06-23 15:50:00
	assigned (open)
	Web Address Book
	Error on LDAP account properties on the webinterface
	
	  
	
2825
	2014-06-23 12:19:49
	resolved (fixed)
	Backend General
	SOGoCacheGCSObject: column definition of c_type (tinyint) cannot store ActiveSyncGlobalCacheObject