dumbster icon indicating copy to clipboard operation
dumbster copied to clipboard

Dumbster - a simple fake SMTP server for unit testing

Results 8 dumbster issues
Sort by recently updated
recently updated
newest added

I took the patch mentioned in comment https://github.com/kirviq/dumbster/issues/4#issue-344539637 and added some more methods to get different recipient addresses. Also created tests for them.

Hi, I found at that `javax.mail.internet`, is splitting `InternetAddress` lists longer than 76 characters with character "\r\n\t". See line 503 of https://github.com/javaee/javamail/blob/master/mail/src/main/java/javax/mail/internet/InternetAddress.java I guess it's standart. However, it seems that...

Thank you for this software! I was using dumbster to test multipart messages and I found it didn't handle them right, missing some newline characters. I have written a small...

It's just a fork to correct some issues with your version. We ain't to use your project to make our smtp unit test mock in some projects.

Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...

dependencies

It doesn't seem possible to test for bccs. would it be possible to implement the idea at https://sourceforge.net/p/dumbster/feature-requests/6/ ? The patch doesn't apply cleanly (a bit better with more fuzz),...

Each time I test the port with `telnet x.x.x.x 25` and quit, my server got `java.util.NoSuchElementException` and the `SimpleSmtpServer` object fails to receive new emails. wiht this try/catch this problem...

Use a unbounded FIFO Queue object (ConcurrentLinkedQueue) as backing data structure instead of ArrayList. This extends the current functionality with the possibility to pop/poll (i.e. get and remove) single received...