Search found 25 matches
- Tue Oct 25, 2011 10:21 am
- Forum: Zimlets
- Topic: accessing left nav items
- Replies: 1
- Views: 267
accessing left nav items
Is it possible to access the items in the left navigation pane through a zimlet? For example I would like to access the various list items/buttons such as 'inbox', 'sent', etc. Using their IDs is obviously not ideal because of the generated/app-like nature of the web-client. Is it po...
- Tue Sep 27, 2011 2:04 pm
- Forum: Administrators
- Topic: [SOLVED] using zmprov to "restore cos default"
- Replies: 3
- Views: 572
[SOLVED] using zmprov to "restore cos default"
Realize I'm bumping an old thread here but ...
Is there something similar to fully reset an account to the COS w/o having to loop over every setting and set it to "" ?
For example something along the lines of:
zmprov resetToCos account@domain.tld
?
Thanks!
Is there something similar to fully reset an account to the COS w/o having to loop over every setting and set it to "" ?
For example something along the lines of:
zmprov resetToCos account@domain.tld
?
Thanks!
- Mon May 16, 2011 2:47 pm
- Forum: Zimlets
- Topic: Detect browser and OS in zimlet ...
- Replies: 0
- Views: 166
Detect browser and OS in zimlet ...
Hey,Wondering if there is an accepted way to detect browser/OS in a zimlet ... ?Of course there are many scripts out there that do nice useragent parsing already for this but I'd rather not bundle more stuff than necessary w/ the zimlet and I figure the zimbra web-frontend surely has a way of de...
- Fri Apr 08, 2011 1:58 pm
- Forum: Zimlets
- Topic: Add to preferences w/ Zimlet?
- Replies: 0
- Views: 150
Add to preferences w/ Zimlet?
Hey,We would like to create a Zimlet that will add some sections to perferences. Preferably we'd like to add another little section under the 'Mail' Preference group (ZCS 7).Is there an accepted/standard way of doing this? The preferences will be for a server-side extension we have alrea...
- Tue Mar 15, 2011 4:52 pm
- Forum: Developers
- Topic: WebClient sits at loading screen if AuthProvider throws AuthProviderException
- Replies: 1
- Views: 302
WebClient sits at loading screen if AuthProvider throws AuthProviderException
Hi,We use a custom AuthProvider implementation.In certain situations it throws exceptions (expected) such as AuthProviderException.FAILURE(...message...) etc ...When this happens the Web Client simply sits at the loading page. Is this expected? It seems it would make more sense for the web client to...
- Fri Mar 11, 2011 8:57 am
- Forum: Developers
- Topic: SOAP auth against AuthProvider
- Replies: 7
- Views: 943
SOAP auth against AuthProvider
It's called by the main login web interface which makes a soap call to the api.It is not called when I make a direct soap request as detailed in the blog entry, specifying my AuthProvider in the authToken 'type' attribute.I will try to post the source code a bit later but it is basically...
- Thu Mar 10, 2011 4:35 pm
- Forum: Developers
- Topic: SOAP auth against AuthProvider
- Replies: 7
- Views: 943
SOAP auth against AuthProvider
Hi Yutaka,Yes zmlocalconfig value zimbra_auth_provider is correctly set to 'CUSTOM_AUTH_PROVIDER' and logging indicates the extension is loading properly. Also login calls made form the main web-client login screen (which uses SOAP) can be seen to be calling the custom auth provider.Thx for ...
- Thu Mar 10, 2011 11:15 am
- Forum: Developers
- Topic: SOAP auth against AuthProvider
- Replies: 7
- Views: 943
SOAP auth against AuthProvider
No luck just using raw posts to the soap api either ...Below is a request that DOES work, using the standard auth token:http://www.w3.org/2003/05/soap-envelope">http://www.w3.org/2003/05/soap-envelope"> ...long-ass-zimbra-auth-token... Now the request trying to use our custom AuthProvider ...
- Thu Mar 10, 2011 10:11 am
- Forum: Developers
- Topic: SOAP auth against AuthProvider
- Replies: 7
- Views: 943
SOAP auth against AuthProvider
Will post a follow up infos ...Have done some packet inspecting and the big difference I can see is that the auth-token im sending is in the soap:body rather than the soap:header as in the example ... will investigate to see if I can get this element in the header using the Lmc* classes ... or if it...
- Wed Mar 09, 2011 6:11 pm
- Forum: Developers
- Topic: SOAP auth against AuthProvider
- Replies: 7
- Views: 943
SOAP auth against AuthProvider
Hey,I've created an AuthProvider implementation to use our authentication system.It's more or less working, I largely copied the ZimbraAuthProvider implementation and changed as necessary...I've hit a problem though: trying to auth through SOAP using our customer provider.I'm basing ...