Negative Keyword Search
The Update-On-Keywords feature in the bookmark properties triggers a notification only if one of the specified keywords is found in new or changed content.
If you want to receive an update notification when a keyword is not found in new or changed content, you can use the following Plugin.
Sub Wsw_CheckKeywords($sMemChanges, ByRef $sStatusMessage, ByRef $iKeywordFound)
If KeywordExists($sMemChanges, "your keyword", True) Then
' keyword found
$iKeywordFound = 0
$sStatusMessage = "No notification because keyword found"
Else
' keyword NOT found
$iKeywordFound = 1
$sStatusMessage = "Notification because keyword NOT found"
End If
End Sub
For a negative keyword search, do not enter any keywords in the Update-On-Keywords section.
For details about when this Event function is called or not called, see the topic Wsw_CheckKeywords.