Just keep track of the phone calls of people complaining about the garbage in their mail box. They'll be your r4 users.
Otherwise, I'm not aware of any functionality on the server that keeps track of what version client the user is using. Although there may be something in the NAB entry, administration section of the license your people were issued.
We had a similar issue so we put this LotusScript in a news database that all users read. If you add it to the Database Script Under Initalize. It emails a mail in DB with the version info for the user who entered the DB.
Set maildb = session.CurrentDatabase
Set maildoc = New NotesDocument( maildb )
maildoc.form = "Memo"
maildoc.subject= Session.UserName
whenNow$ = Today()
maildoc.body = Session.CommonUserName + " entered News running " + whenNow$ + " using Notes version " + Session.NotesVersion + " on " + Session.Platform + "."
maildoc.NotesVersion = Session.NotesVersion
maildoc.OperatingSystem = Session.Platform
Call maildoc.send( False, "Mail In DB"
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.