1
votes

Is there a way in Lotus Notes (using either @Formula or LotusScript) to get the mail file path of the current user?

2

2 Answers

6
votes
 Dim maildb As New NotesDatabase("", "")
 Call maildb.OpenMail

gives you the mail database of current user.

maildb.FilePath returns the file path.

4
votes

@MailDbName is the formula counterpart to the answer from Knut. It returns a text list with two elements: Server and path.