Jpxx Mail Server (JMS)

  • Increase font size
  • Default font size
  • Decrease font size
Jpxx Mail Server

Bug fix 2010-02-11

E-mail Print PDF

1. Top Command.

The argument index is error. It should start from 0.

        String argument1 = null;
String argument2 = null;
try {
argument1 = session.getCommandLine().getArgument(0); // Error 1
argument2 = session.getCommandLine().getArgument(1); // Error 2
} catch (ArgumentException ae) {
}

2. IF MailBox is not exist when using POP, the NULL pointer exception will be throwed.

        private ArrayList<Mail> getMailList() {
String userDir = sc.getHomeDir(emailAddress.getUserName(), emailAddress.getDomain());
// Fix the null pointer exception (if dir not exit).
File dir = new File(userDir);
if (!dir.exists()) {
dir.mkdirs();
}


Last Updated on Thursday, 11 February 2010 08:52
 

Contact Us

E-mail Print PDF

email: This e-mail address is being protected from spambots. You need JavaScript enabled to view it

Last Updated on Tuesday, 09 February 2010 14:30
 

SVN Repositories

E-mail Print PDF

Repositories

SVN browse code

svn co https://jpxx.svn.sourceforge.net/svnroot/jpxx jpxx

Last Updated on Sunday, 07 February 2010 13:32
 

What is JMS?

E-mail Print PDF

What is Jpxx Mail Server? Jpxx Mail Server is a lightweight (E)SMTP/POP3 mail server, which is based on Java. Now the latest version is 1.0.0 . It can be run with a separate servlet engine (or application server) such as Tomcat or Resin now.

Last Updated on Sunday, 07 February 2010 11:51