-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What is the status of this project? #84
Comments
I would be interested in knowing this as well, the last commit was in March 2015 but there are many forks which moved forward a bit. I my case, I would like to contribute the respawning of the server (stop and then start again), does it make sense to PR this project? Maybe @stickfigure @lookfirst can shed some light on the future of it. It surely is a very useful project and worth maintaining! |
I don't have the expertise, but I encourage this, since this appears to be the only viable java SMTP server. Apache james appears dead too. |
I wouldn't say this project is dead, it is just mostly complete. It isn't like SMTP has changed much in the last 10 years. The original authors are all onto other projects and the other commits look like there is a few probably good ones, but mostly just dependency upgrades. If you have the itch, we welcome you to scratch it. =) Submit some PR's. |
Fiuu, I was afraid this will never get answers. There a couple of things that can be worked on and I just wanted to be sure that if I push a PR there is somebody still looking at it and that can handle releases. I have on Pr in the pipes for instance :))) |
If someone starts a fork they want to maintain publicly, please post here. |
Been a little busy lately, but I hope to be keeping this fork up-to-date. I will certainly promptly accept any issues or beneficial PRs in the meantime! |
Awesome, thanks. I plan to give this thing a shot in production soon. What about you? |
Depends on your definition of soon... :) Certainly hope to in the next few months... |
I'd like to have it up and world-facing by the end of this month 😨 |
That is sooner than me. I’m looking maybe 6 months.
…-josh
From: Dmitry Minkovsky [mailto:[email protected]]
Sent: Saturday, January 7, 2017 5:20 PM
To: voodoodyne/subethasmtp <[email protected]>
Cc: Josh Levine <[email protected]>; Mention <[email protected]>
Subject: Re: [voodoodyne/subethasmtp] What is the status of this project? (#84)
I'd like to have it up and world-facing by the end of this month 😨
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#84 (comment)> , or mute the thread <https://github.com/notifications/unsubscribe-auth/AFQ7mVZ6SJntEwRrl-PboCSH9fIPu_Rtks5rQA90gaJpZM4JHkXG> . <https://github.com/notifications/beacon/AFQ7makompwt5a8DH_26QDuREDbNE-vTks5rQA90gaJpZM4JHkXG.gif>
|
Just a heads up that I've contributed some improvements (got tests working and some other minor stuff) to the fork by @bigjosh. I'm interested in using a Maven Central released artifact so my fork of @bigjosh has been released to Maven Central under |
Hi @bigjosh iam trying to secure my sMTP Server. Any hints on what could be wrong or is that Subetha doesnt support pure SSL connections |
An update of changes in my fork: Re pure SSL support I haven't seen any documentation that this is supposed to be supported beyond the startTLS command. @vivekanandasofware My fork has a full unit test of a startTLS session. If you think pure SSL support is important I'm happy to have a chat about it (and add unit tested support). |
Thank you @davidmoten . |
@vivekanandasofware I believe the software as is supports pure SSL by overriding the method In short: SSLContext ssContext = ...
SMTPServer server = SMTPServer //
.port(PORT) //
.hostName(SERVER_HOSTNAME) //
.messageHandlerFactory(mhf) //
.serverSocketFactory(sslContext) //
.build(); I've released 4.0-RC3 to Maven Central: <dependency>
<groupId>com.github.davidmoten</groupId>
<artifactId>subethasmtp</artifactId>
<version>4.0-RC3</version>
</dependency> Fork is at https://github.com/davidmoten/subethasmtp. |
Well, this was a little bit confusing. Which repository is the new "official" and maintained one @davidmoten's or @bigjosh's? |
I am not using my fork in production at the moment, but the code is clean and could be a good jumping off place for further development. |
My fork was built from josh's and a big cleanup of the code was performed, nice clean builder patterns used, full round-trip SSL tests added, docs updated, is published to Maven Central and is in use in production. A summary of changes is here: https://github.com/davidmoten/subethasmtp#fork-of-a-fork. One restriction with my fork is it requires Java 8 (but this could be relaxed if really needed). I think you'd be mad to miss the changes put in place in my fork but it's up to you. |
I agree with @davidmoten! I might switch to that fork as well! :) |
Thanks @bigjosh, and for giving me a good jumping off place with your mavenisation work! |
Great! I will switch to your fork. |
Thank you @davidmoten and @bigjosh for the nice work. I will switch to the new fork. |
Thanks @davidmoten! I think there is an issue with your fork (and also the original subethasmtp). |
@amanteaux thanks, I've enabled issues on the fork. |
Dear all, I'm testing the MessageHandlerFactory proposed as an example in the projet(which is working fine) but the MessageHandler is receiving the incoming email as an InputStream. |
@quirem It really depends on what the data is that you're receiving. Most likely MIME, which you will need to use |
Yes I tried to create a
|
Data received is a standard email, not sure this is relevant to copy / paste the entire mail received.... |
I tried to do the following: `Properties props = System.getProperties(); SMTPMessage smtp = new SMTPMessage(session, data); MimeMessage msg = new MimeMessage(session, data); but both smtp or Mime Objects are empty, seems that InputStream received from my Postfix server is not well formated to be considered as a MIME Message |
@quirem Hey, I'm super sorry you're having issues, but this issue tracker and particularly this issue isn't a good place to do support. You're sending emails to a whole bunch of people who probably don't care about this. If you have questions about using javax.mail, I suggest you take a look at stackoverflow. If you'd like examples on using subethasmtp you might check out https://github.com/voodoodyne/subetha for a full usecase. |
I'm going to close this issue to prevent further comments here. I think we've already seen other forks of this project generated. Sorry to everyone on it for the trouble. |
@lookfirst This issue should be reopened ( too bad people used it as a random chat forum but the essentials still exist above that chat and are still valid). |
@davidmoten Sorry about that! |
Is there a roadmap regarding java 11 and java 17. I just recently went through the process of upgrading one of my apps from java 11 to java 17. There are a number of changes around going away from javax.* classes to using jakarta.*. |
the current current version does work in java 17. I can confirm this |
re Java 11+ support, raise an issue at https://github.com/davidmoten/subethasmtp which is an actively maintained fork with regular updates being pushed to Maven Central (it's a production artifact at my workplace).
|
cool I might just do that! Thanks!
|
I had to make some changes to code, as you would expect, to go from 3.1.7 to 6.0.1, but I'm going to give this a try today and see if everything functions as you'd expect on java17. if not I'll open a ticket on that fork. Thanks for the suggestion! |
it works flawlessly on java17. So no need to open a ticket at this point. Yay |
Good to see this codebase living on. =) Both Jeff and I are still around developing code, but not so much in this space any longer. |
@davidmoten Maybe you can submit a PR to the README that at the top of the file, links to your project with a little blurb? |
I need an embeddable SMTP server for a new project I'm working on. Is this library stable and being maintained? The versions on maven central are 10 years old.
The text was updated successfully, but these errors were encountered: