I want to create a user property by not let it be set by the users. I want it to not be visible in the Property Editor. According to the docs I should be able to set visible="false" in the config...
Type: Posts; User: jfavero; Keyword(s):
I want to create a user property by not let it be set by the users. I want it to not be visible in the Property Editor. According to the docs I should be able to set visible="false" in the config...
Would it be possible to see your CAS implementation in a Zimlet?? This would be an option for me
:)Xythos has developed a Zimlet for integration of Zimbra to Xythos.
Xythos is a secure document management solution that has a proven track
record of enterprise-level of rich features.
The...
I too am building a Zimlet that requires authentication. Right now I use the User Properties to store the User name and Password. However the information is stored in LDAP in clear text. I would like...
I too am building a Zimlet that requires authentication. Right now I use the User Properties to store the User name and Password. However the information is stored in LDAP in clear text. I would...
The check boxes in IE do not correctly stay checked for user properties. Any ideas why??
Thanx Joe
Is there a utility to decode a URL that has been encoded? The AjxStringUtils have the encode methods, but i do not see any decode methods.
Thanx Joe
Kevin
I the init method of the Zimlet, I have been able to call this to
create a new Folder:
// Create Folder
soapDoc = AjxSoapDoc.create("CreateFolderRequest", "urn:zimbraMail");
var...
I want to add another Top Level Folder like "Inbox" to the folders section. I want to call this folder "My Folder" and then be able to add sub folders underneath it to match a directory structure...
Eric
I sent you an email with an explanation and a copy of my zimlet. Let me know if you need more. I appreciate the assistance and will return the favor if I can.
THanx Joe
I am actually writing this right now to a WebDAV repository called Xythos, although it should work for any WebDAV repository. The idea is to drag and drop email into a repository for saving and to...
My main issues is trying to get the ZmMailMsg for the ZmConv object.
What I want is to be able to get to the email attachments and to mime encode and store the entire mail message. I have worked on...
I am receiving the HTTP requests at my server I am running TCPMon in between to inspect the requests as they go through. There is no Authentication information being passed in. I have setup the...
Here is my Javascript being called when a ZmConv is dropped on my Zimlet.
Com_Xythos_XythosZimlet.prototype.noteDropped = function(note) {
this.login();
DBG.println(AjxDebug.DBG1,...
Here is the URL I am passing to the Proxy Servlet. I do not seem to see any Basic Authentication happening to my server:
...
Again,
From My javascript file, how do I call
ZmConv.prototype._loadMsgs =
function(convNode) {
// for all messages in this conversation,
var childNodes = convNode.childNodes;
var len =...
I must be an idiot, but none of these responses make sense!!!
Here is the doDrop() code from the G Translator. Where is
the Mail message being extracted???
Can someone just sent me an example...
Is there a way to add additional folders, besides Inbox, Sent, Draft ..etc.
I want to add an additional folder that is tied to an external content mangement system that has the email stored there....
I have a zimlet javascript that is processing
a ZmConv when I drop an email onto my zimlet.
The problem I am having is how do I get a ZmMailMsg
from the ZmConv?? I want to have access to the...
I have pulled the source code from SVN, however I still am having problems understanding how this all works.
I have a ZmConv (Conversation) object. How do I access the attachements, from/to...
Yes, that is much easier ... thanx
I am using the AjxRpc.invoke through the proxy servlet. I have tried several permutations trying to get basic authentication to work. According to the white paper, I need to set user, pass and...
I am trying to find the documentation on the AjxRpc.invoke and other Zimlet calls. Is there a place to find all this?? The White Paper is not enough
Thanx Joe
I want to drap and drop an email from the Inbox into my Zimlet. The Object type I am getting a ZmConv. I actually expected to get the ZmMailMsg. Why is it be treated as such?? How do I get to...
I have the following code that
sends out a WebDAV request to me server. I have attached it to the single click handler. The first time I click on the Zimlet, it makes the remote calls and works...