Hello,
I have implemented iframe Zimlet to Zimbra webmail v8.8.15, Iframe loads page with form on it. Form contain few inputs, selects, and file upload. Now I would like to get session data of logged user(I only need email of user logged in webmail). I have been looking into getInfo SOAP API documentation, but its not very clear to me how to implement this. Can someone point me in the right direction to achive this ?
Thank you.
iframe Zimlet, session data
-
- Zimbra Employee
- Posts: 2
- Joined: Mon Sep 12, 2022 6:41 am
Re: iframe Zimlet, session data
Please look at this blog post it may guide you about fetching accountInfo.
https://blog.zimbra.com/2021/01/zimbra- ... roperties/
By the way, any specific reason you are going with iFrame, it's less secure.
https://blog.zimbra.com/2021/01/zimbra- ... roperties/
By the way, any specific reason you are going with iFrame, it's less secure.
-
- Posts: 2
- Joined: Wed Apr 05, 2023 1:32 pm
Re: iframe Zimlet, session data
hi rakeshmore,
thank you for providing me with a blog post, I will look into it. No there is no specific reason, this is my first encounter with Zimlets and I really wanted to see how it works.
What would you suggest to as correct way to implement this feature?
thank you for providing me with a blog post, I will look into it. No there is no specific reason, this is my first encounter with Zimlets and I really wanted to see how it works.
What would you suggest to as correct way to implement this feature?
-
- Zimbra Employee
- Posts: 14
- Joined: Sun Jun 19, 2022 1:41 pm
Re: iframe Zimlet, session data
In Zimlet JS file, you can try with
Also you can check Example zimlet for SOAP API -https://wiki.zimbra.com/wiki/ZCS_6.0:Zi ... API_Basics
Code: Select all
appCtxt.getUsername()
sejokalash wrote: ↑Wed Apr 05, 2023 1:41 pm Hello,
I have implemented iframe Zimlet to Zimbra webmail v8.8.15, Iframe loads page with form on it. Form contain few inputs, selects, and file upload. Now I would like to get session data of logged user(I only need email of user logged in webmail). I have been looking into getInfo SOAP API documentation, but its not very clear to me how to implement this. Can someone point me in the right direction to achive this ?
Thank you.