Examples: openMailDatabase method

This agent opens the current user's mail database and prints its title, size, and number of documents.

import lotus.domino.*;
public class JavaAgent extends AgentBase {
  public void NotesMain() {
    try {
      Session session = getSession();
      AgentContext agentContext = session.getAgentContext();
      // (Your code goes here) 
      DbDirectory dir = session.getDbDirectory(null);
      Database db = dir.openMailDatabase();
      DocumentCollection dc = db.getAllDocuments();
      System.out.println("Mail database : " +
      db.getTitle() + " is " +
      ((int)(db.getSize()/1024)) + "KB long and has " +
      dc.getCount() + " documents");
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}