Forum Replies Created

Viewing 7 replies - 706 through 712 (of 712 total)
  • Author
    Replies
  • in reply to: Capturing events as they happen #6732
    Support 1
    Participant

      GroupWise does not expose events associated with an Address Book. Unfortunately, this means there is no way (using Formativ) to determine an edited Contact.

      Advansys Support

      in reply to: Save & strip an attachment, leaving a reference? #6730
      Support 1
      Participant

        GroupWise does not allow deleting attachments from received email.

        However, GroupWise 6.0 or above can recreate the message (using API method AddExistingMessage) minus attachments, and insert reference text, eg attachment caption, into the email message body.

        Note that ‘recreate’ is different to cloning a message. Cloning is also possible in GroupWise, though it excludes part of the message (eg Properties), and is not available for received messages.

        You can find examples that save selected messages and their attachments to disk here.

        Advansys Support

        in reply to: use of “FolderMoveTo” #6728
        Support 1
        Participant

          The GroupWise token

          FolderMoveTo(Source, Target)

          does not move messages from one folder to another. Rather, it moves the folder; in other words, it makes Source a sub-folder of Target.

          I think the sample code below does what you are want. It uses Object API to move messages from one folder to another folder.

          '-------------------------------------------------------------------------------
          ' Move all messages from the 'Work In Progress' folder into 'Cabinet'.
          '-------------------------------------------------------------------------------
          Sub Main(Client, GWEvent)
           
           dim x
           dim iCounter
           dim oWIPMessages
           dim oCabinetMessages
           
           set oWIPMessages = GroupWise.account.WorkFolder.Messages
           iCounter = oWIPMessages.count
           
           if (iCounter = 0) then
             msgbox "No messages to move from the Work In Progress folder."
             exit sub
           end if
           
           set oCabinetMessages = GroupWise.account.Cabinet.Messages
           
          
           for x = iCounter to 1 step -1
             msgbox x
             call oWIPMessages.Move(x, oCabinetMessages)
           next
           
           msgbox(iCounter & " messages moved from WIP to Cabinet.")
           
           set oWIPMessages = nothing
           set oCabinetMessages = nothing
           
          End Sub
          

          I hope this example is helpful to you.

          Advansys Support

          in reply to: Signature file not being seen #5796
          Support 1
          Participant

            We have received your message; thank you. Our engineers are looking into the problem.

            Advansys Support

            in reply to: If-then-else statement , if mail is send local #6445
            Support 1
            Participant

              Thank you for sending the files. I have forwarded them to our engineers.

              We will be in touch as soon as we have a resolution for you.

              Advansys Support

              in reply to: If-then-else statement , if mail is send local #6455
              Support 1
              Participant

                GroupWise displays this error for an HTML-formatted message when inserting HTML that is corrupt (or non-standard). The problem here could also be related to the version of GroupWise.

                Please send a copy of the HTML disclaimer file, the applet and your Formativ configuration information to the email address below:

                Support@advansyscorp.com

                (You can access Formativ configuration via the main GroupWise menu: select Help | About Formativ. When the about box appears, select the configuration tab, then press the ‘copy to clipboard’ button. Then paste the contents of the clipboard into the body of your email message.)

                Advansys Support

                in reply to: Signature file not being seen #5798
                Support 1
                Participant

                  I infer that your other users don’t have this problem with Multiple Signatures. This implies it may a version issue – with the applet or Formativ.

                  Please send a copy of the applet and your Formativ configuration information to the email address below:

                  Support@advansyscorp.com

                  (You can access Formativ configuration via the main GroupWise menu: select Help | About Formativ. When the about box appears, select the configuration tab, then press the ‘copy to clipboard’ button. Then paste the contents of the clipboard into the body of your email message.)

                  Advansys Support

                Viewing 7 replies - 706 through 712 (of 712 total)