This is how you can add an internet password security settings.
An other way to do the same:
Force a user to change Internet password on next login:
Force more users to change their Internet password on next login:
Source codes, snippets and interesting solution in IBM Lotus Notes and Domino environment.
![]() |
Settings |
function exportEML As Boolean
On Error GoTo ErrHdl
Dim fileNum As Integer
Dim mime As NotesMIMEEntity
Dim stream As NotesStream
Dim evalstr As String
Dim tmp As Variant
Dim expFileName As String
Dim mimeType As String
Dim mimeBoundAryStart As string
Dim mimeBoundAryEnd As string
ss.Convertmime = False
fileNum% = FreeFile()
Set mime = maildoc.GetMIMEentity
If mime Is Nothing Then
Call maildoc.ConvertToMIME(3)
Set mime = maildoc.GetMIMEentity
End If
If Not mime Is Nothing Then
Set stream = ss.Createstream()
expFileName$ = wDir & "\" & maildoc.Universalid & ".eml" ...
If Dir$(expFileName$) <> "" Then
Kill expFileName$ ...
End If
Call stream.Open(expFileName$, mime.Charset)
...
mimeType = mime.Contenttype
mimeBoundAryStart = mime.Boundarystart
mimeBoundAryEnd = mime.Boundaryend
Call mime.GetEntityAsText(stream)
Set mime = mime.GetNextEntity
While Not mime Is Nothing
Call stream.Writetext("", 3)
Call stream.Writetext(mime.BoundAryStart)
Call mime.DecodeContent()
Call mime.Encodecontent( 1727 )
Call mime.GetentityAsText(stream)
Call stream.Writetext(mime.BoundAryEnd)
Set mime = mime.GetNextEntity
Wend
Call stream.WriteText(mimeBoundAryEnd)
Call stream.Close()
...
exportEML = True
Else
...
exportEML = False
End If
ErrHdl:
If Err Then
Print " Error @ " & db.Filename & " (" & db.Title & ") - " & ag.Name & " - 'function exportEml' (" & Err & ") " & Error & " - line: " & Erl
exportEML = false
Exit Function
End If
End Function
![]() |
Enabling the sched. local agents |