/*
* This is the code for read the unread mails from your mail account.
* Requirements:
* JDK 1.5 and above
* Jar:mail.jar
*
*/
import java.io.*;
import java.util.*;
import javax.mail.*;
import javax.mail.Flags.Flag;
import javax.mail.search.FlagTerm;
public class MailReader {
Folder inbox;
// Constructor of the calss.
public MailReader()...