Capture web login name

We use a custom login form in domcfg.nsf for a user to log into our web server. Is there a way to capture the username they key in so that we can track invalid access attempts?

Subject: Capture web login name

from hjelp …

Dim session As New NotesSession

Dim doc As NotesDocument

Set doc = session.DocumentContext

Print "User = " + doc.remote_user(0)

Subject: RE: Capture web login name

help …

Subject: Capture web login name

Domconfg doesn’t run under the normal rules – WebQuery agents will not run, for instance, so you’d probably need to use a DSAPI (Domino Server API) filter to do the job. If you look in the Sandbox, there’s a “three strikes and you’re out” filter there that you can download to prevent password guessing. I suspect you’d need similar code to intercept and log username guessing.