DOLS and Discussion Template

I do NOT have the DOLS DSAPI filter loading on my server. When I access a database created with the standard Discussion template, the “Go Offline” frame still shows and is active. Is there a way to disable the “Go Offline” from showing that doesn’t require a design change to the database?Thanks,

Margie

Subject: DOLS and Discussion Template

In case anyone ever runs across this, the answer is to delete the DOLS profile. If you go into the profile even once, the “Go Offline” will show up whether the server is enabled for DOLS or not. The code to delete it is:

Dim s as New NotesSession

Dim db as NotesDatabase

Dim doc as NotesDocument

Set db = s.currentdatabase

Set doc = db.GetProfileDocument(“dolsofflineconfiguration”)

Call doc.Remove(True)