Forum Replies Created
-
AuthorReplies
-
Hello Paul,
I suspect you will need to define the connection properties for the Post Offices in the secondary Domain. See the ‘POA Settings’ topic in the Users Guide for details. In a nutshell, you will need to specify the IP address and Port number of the POA serving the POA’s in the secondary Domain.
I hope this helps.
Regards,
Advansys Support
There is no registry/PO setting you can use to disable the inherent GroupWise signature facility. The only way to do it in a deterministic fashion is to run an applet that changes the settings, such as:
Sub Main(Client, GWEvent) call Groupwise.PrefSignature(incNo, false, false, "") End Sub
You could configure the applet to run on client startup to help ensure the user has not turned the facility back on.
I hope this helps.
Advansys Support
An email has been sent to the address you registered in the forums with the debug DLL (zipped).
Regards,
Advansys Support
It should work if you have full rights. I’ll contact you directly via email to get a debug version of Novell’s Trusted Application library. It displays authentication information which generally indicates the exact cause of the rights problem.
Regards,
Advansys Support
We’ll report this as a bug to Novell. I couldn’t say when/if they’ll fix it, though. It always helps getting a bug fixed if other reports are received, so you may want to report a bug in the DisplayProfile() token independently from us.
Regards,
Advansys Support
Toolbar buttons integrations (along with the other integration types) can only be modified if you have a copy Formativ Creator or Studio. In this case you would select the appropriate applet in the designer and turn off the toolbar integrations.
If you only have a copy of Runtime the buttons cannot be easily changed. You could have a look at the header of the applet file (it’s an XML file) to see where the buttons are defined and edit it manually. Of course, this approach is totally unsupported and not encouraged.
Regards,
Advansys Support
Great – keep any eye on http://www.archive2go.com.
Regards,Advansys Support
We tried this token as well and couldn’t get it to do anything. It looks like this token may be broken as well, or we might be calling it with incorrect parameters. I notice the Token documentation (http://developer.novell.com/ndk/doc/gwtoken/gwtokens/data/h8h668yx.html) states
quote:
DocIDStr in the form Domain.PostOffice.Library
oc#.Ver# for ObjectAPI reference: LibraryID: Doc#.Ver#. The DocIDStr is a subset of the object DocumentVersion.ODMADocumentID in the ObjectAPI.
I’m not sure if this means you need to use the ODMADocumentID property of the current version.
I’ll ask Novell about this one – unfortunately it looks like it could be a bug in the GroupWise client. Which version of the client are you using?
Regards,
Advansys Support
In order to create a GroupWise system definition, Archive To Go needs to create a Trusted Application Object within GroupWise. In order to create a Trusted Application object, you require Admin rights to the Domain database. Without the appropriate rights, an authentication error will occur.
Try increasing your rights to the Domain Database and try again. Please let us know if you continue to experience difficulty.
Regards,
Advansys Support
Dear Jeroen,
You cannot call a function in one applet from another. However, you can have one applet call another once the calling applet has finished running. See ‘ChainApplet’ in the Language Guide for full details.
Regards,
Advansys Support
Hi Ralf,
We do our best 😉
Cheers,
Advansys Support
Dear Jeff,
Thank you for your comments above. We are very excited about Archive to Go, and hope it becomes the premier tool for creating snapshots of GroupWise mailboxes for a variety of purposes.
The search facility (currently under development) will search the entire archive, including contacts. It will use advanced text indexing technology to index and search all the data within an archive at high speed.
We expect to reveal the text search facility in beta 2, which is scheduled for release in a couple of weeks.
Regards,
Advansys Support
[This message was edited by Support 1 on September 18, 2005 at 07:44 PM.]
Hello Ralf,
You can do this by integrating your applet with the ‘On ItemReplyOpenItem’ event associated with the GroupWise application (not email). Your applet need to look at the first parameter associated with this command, as it tells you what type of reply the user is attempting. The possible values are:
All = 7
AllPrivate = 39
Sender = 1
SenderPrivate = 33
Discussion = 16
DiscussionNNTP = 144
DiscussionORIG = 256If the value was 7 (All) you would then cancel the command. Here’s some sample code:
Sub Main(Client, GWEvent) if EventParams.Item(0).Value = 7 then ' 7 = Reply to all MsgBox "You cannot reply to all." Groupwise.CancelGroupWiseEvent = true end if End Sub
See http://developer.novell.com/ndk/doc/gwtoken/gwtokens/data/ag3n400.html for more information.
I hope this helps.
Advansys Support
There is no inherent method in Formativ that will tell you the file type based on the content of a file. I suspect you would need to investigate the third party market for a tool that identifies files based on content.
Advansys Support
I am not aware of any other way to determine attachment types, other than looking at the file extensions. What aspect of this approach is not robust enough?
Regards,
Advansys Support
-
AuthorReplies