-
Topic
-
Hello,
we have following problem. An applet should suppress the GW-Funktion “Answer to all”.
Specifically:
If we opened an email and then we click to the answer button than this applet will works fine. If we opened an email and then we click over the puldown menu “Answer to All” this applets don’t work. Over this way the user can answer to all. The applet are integrated as “Replace Groupwise Item” “ItemReplyOpenItem”.Here is the Applet.
option explicit
dim ArAdres
dim StrAdres
dim counter
dim feldinhalt
const Liste = “SCI-AppletTestverteiler”
Sub Main(Client, GWEvent)
if EventParams.Item(0).Value = 7 then
Call GroupWise.ItemReply(7, True)
StrAdres = groupwise.ItemGetText(“X00”, itfTo) ‘Adressstring holen
ArAdres = Split(StrAdres, “;”, -1,1)’Array füllen mit Seperatoren
counter = -1
while counter < ubound(ArAdres)’Schleife zum prüfen der Arrayfelder
counter = counter + 1
feldinhalt = ArAdres(counter)
if Liste = trim(ArAdres(counter)) then
Call Groupwise.Cancel()
MsgBox ” Bitte haben Sie Verständnis dafür, dass die Funktion ANTWORT AN ALLE “_
&vbCrLf & ” bei EMails die Sie über große Verteiler erhalten haben unterdrückt wird!”_
, 64 ,”GroupWise Information”
end if
wend
elseif EventParams.Item(0).Value = 1 then
Call GroupWise.ItemReply(1, True)
StrAdres = groupwise.ItemGetText(“X00”, itfTo) ‘Adressstring holen
ArAdres = Split(StrAdres, “;”, -1,1)’Array füllen mit Seperatoren
counter = -1
while counter < ubound(ArAdres)’Schleife zum prüfen der Arrayfelder
counter = counter + 1
feldinhalt = ArAdres(counter)
if Liste = trim(ArAdres(counter)) then
Call Groupwise.Cancel()
MsgBox ” Bitte haben Sie Verständnis dafür, dass die Funktion”_
&vbCrLf & ” ANTWORT AN ALLE bei großen Verteilern geblockt wird!”_
, 64 ,”GroupWise Information”
end if
wend
end if
End Sub
Sorry for my bad English and greetings from the good old Germany.
achim
Viewing 5 replies - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.