Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>A little more detail to expand on Panu's answer...</p> <p>The first thing you have to do is establish your access to every mail file. Without that, you're not going to get anywhere with this project. If your code is running under your own identity, you probably don't have access to any of the other users mail files. You may need to have your sysadmins create an ID for your code, add that ID to a Group, and give that Group 'No Access with Read Public Documents' access to all users' mail files. Note: I am suggesting this level instead of 'Reader' because this will limit your code to only seeing public calendar entries. Your code will not see any entries that the user has marked 'Private', and your code will not be able to read the users' email messages. This is consistent with standard Notes/Domino security practices. 'No Access with Read Public Documents' is the same access level that Notes gives to users when you use the built-in delegation feature.</p> <p>Once your access is established, take the code that you say is successfully opening your own mail database and reading your calendar, take it and make it into a function that is called with parameters for the serverName and and mailFile, using those parameters to replace the strings that you hard-coded in your current code.</p> <p>Now, write a new main loop that opens the Domino Directory (names.nsf) on a server, opens the "People" view, and loops through all the Person documents. Read the following two NotesItems: from each document: "MailServer" and "MailFile". If they are non-blank, call your function with these as parameters. </p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload