-
Hey, I'm interested. What happend with these changes in the end?.
2009-09-23 23:19:17 UTC by mkpg2
-
thank you.
2007-10-25 17:45:43 UTC by nobody
-
Check out http://mailster.sourceforge.net it may help you in your testing strategy by providing you an advanced visualization of yours mails
Regards.
2007-03-16 01:34:48 UTC by kods
-
Btw NOOP is being sent on javax.mail.Transport.isConnected() call, that's why the problem was found.
2007-03-15 14:45:00 UTC by joawl-sr
-
I have fixed bug in that way:
added a method to SmtpRequest.java to get an action type:
public SmtpActionType getAction() {
return action;
}
and then added condition to the SimpleSmtpServer.java after the response in being sent to client, like this:
// Send reponse to client
sendResponse(out, response);
// http://www.faqs.org/rfcs/rfc2821.html
// This command does not affect...
2007-03-15 14:39:31 UTC by joawl-sr
-
I have same problem and found a possible way to fix it.
An empty message is being created when Dumbster receives a NOOP command after the "Dot". Eg in that sequence of commands two messages are created:
EHLO usertwo
MAIL FROM:
RCPT TO:
DATA
( some data skipped )
.
NOOP
QUIT
First message after the dot, and second - empty message - after the NOOP...
2007-03-15 14:25:07 UTC by joawl-sr
-
I use dumbster not only to unit test our mail code, but also to stand in as a dummy mail server in our development environment. Instead of sending mail, we just log it to the system console so that developers can see what emails the system is sending out as a result of events inside the system.
To accomplish this, we needed a way to have dumbster take some action upon receipt of an SmtpMessag.
2007-02-05 18:44:40 UTC by nobody
-
import java.util.Properties;
import javax.mail.Message;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import junit.framework.TestCase;
import com.dumbster.smtp.SimpleSmtpServer;
/**
* Demonstrate possible bug in Dumbster when Transport.isConnected() is called.
*/
public class...
2006-12-13 20:59:48 UTC by zellyn
-
jasonkitchen committed patchset 17 of module dumbster to the Dumbster CVS repository, changing 1 files.
2005-04-14 14:09:38 UTC by jasonkitchen
-
jasonkitchen committed patchset 16 of module dumbster to the Dumbster CVS repository, changing 2 files.
2005-04-04 23:09:47 UTC by jasonkitchen