Want to give all your users just 1 URL to login to their own mailbox? Well this is a very simple way of performing this function:
Simply, create a new database, which has no anonymous access (eg. mailjump.nsf).
Then, create a page (which is the default launch options for this db), which has the following HTML:
Code
<META HTTP-EQUIV="Refresh"
CONTENT="0;URL=
<computed text>">
The computed text should c
ontain the follwing formula:
tmp:=@DbLookup("":"NoCache";"
":"names.nsf";"people";@Username;
"MailFile");
mailbox:=@If(@IsError(tmp);"";tmp);
"/mail/" + mailbox
Once you have done this, set up a domain such as: "https://mail.<your domain>.co.uk" which points to the mailjump.nsf.
This will ask you to login and then will redirect you to your mailbox.