I'm trying to find some open source alternatives to PowerMTA - specifically a mail delivery backend that handles email delivery, inbound bounces & replies, reporting & load balancing.

I'm interested in building an open-source front end of top of one of these systems.

I haven't had much luck locating a suitable open source system. Does anyone have suggestions?

Thank you.

link|improve this question

20% accept rate
feedback

6 Answers

up vote 0 down vote accepted

PowerMTA is for the most part use for mailing company emails to mailing lists. My understanding is that PowerMTA built a very useful API to handle a few of the requirements that you have, like reporting, bouncing, and spam mgmt. As Dirk pointed out, I am almost certain that you are able to use postfix, exim or sendmail for any of those purposes. Because the later tools are open source you will most likely find open source plug-ins that will do the other part of the job.

For Example: in order to use postfix with some kind of bounce management you can use VERP process. And in order to do automatic subscription of lists, you could use phplist. Is a matter of diagramming what you need and then look how to solve each requirement.

I think a good SysAdmin will be able to point you to the right place.

Thanks and I hope you find the solution.

Geo

link|improve this answer
feedback

Of course there is no open source alternative.

Open source is all about providing perfect building blocks. If you want a ready to use building, you should either build it or buy it.

Thus you face a very common problem: if you can't build it yourself, you need to choose if you pay to someone who can or buy something ready to use.

Ready to use means you can get it right now and start using it. But building it yourself means flexibility and a final result perfectly fitting your needs.

In this particualar case I don't see anything in Powermta feature list that can't be easily implemented in a system based upon any open source MTA.

And BTW, I am not sure Powermta is really able to monitor reputation, because in case of big ESP's like Yahoo or MSN it requires setting up feedback loops and the like. I think Powermta can only process defers, because this is what it can get from SMTP session. But in this case it's not very useful. If you get defers, it's already too late for reputation.

This demonstrates perfectly that basically professional email server is one of the things that must be open source based because it needs so much flexibility that integrated solution never can provide.

link|improve this answer
feedback

Have you looked at the industrial strength MTAs included in Debian / Ubuntu such as

  1. postfix
  2. exim
  3. qmail
  4. sendmail

Can you detail why these won't do? The Wikipedia Comparison of MTAs doesn't even list PowerMTA.

[Follow-up after OP's answer] I am not a mail-system specialist, but

  • bounces etc are all handled but the standard systems I listed,
  • reporting is usually done by additional tools analysing the log files (following the Unix tradition of tools designed for particular tasks chained together),
  • load balancing is also done at the network layer

Maybe you should try to have a chat with Linux mail admin. Good luck.

link|improve this answer
Specifically I'm looking for an integrated solution that handles bounces, reporting, load balancing etc... all the requirements of a enterprise system. We're not interested in building the infrastructure and would like to just be able to plug a fancy front-end into a battle tested high-load system. Postfix, exim, qmail & sendmail only send the email messages. They don't handle integrated reporting, bounce management & reporting. Ideally I'd like to find an open source system that handles a substantial number of those features. – zemaj Jul 31 '09 at 3:05
feedback

I see this thread is pretty old, but just wanted to give some info that some of the answers dont seem to get. Programming wise, the programs listed by Dirk are standard for normal email use, and you wouldnt find powermta on any kind of wiki list because its not the same kind of tool. Powermta and about 20 other commercial programs like it, are meant for mass mailing and doing more than just sending the mail (including what has been listed already, managing bounces, and reporting). Its also used to rotate through many different sending ip addresses, mask domains for all the links, adjust header information (legally) to comply with different ISPs, control feedback loops, and some of the better ones, communicate between ip addresses to know when to slow down, and even mail from 20-30 servers at once all from one control panel.

As for reputation, they do help watch your rep with the methods I already stated, and it catches spam traps, black list bots and manage suppresion lists, handle unsubscribes, etc. ISP / ESP rep is far more complicated than stated, you wont destroy a domain / ip reputation from one mailing usually, and if you know what you are doing the info the mta gives you helps this greatly and an experienced email marketer knows how to get these black lists removed and clean thier ips. I mean no offense to any of the answers given, you are all correct from a programmer's point of view. An email marketer's definition of an MTA is different from a programmer's definition, but the letters stand for mail transfer agent in both cases so its confusing if you don't have experience from both sides.

link|improve this answer
feedback

Sounds like you're looking for an all-inclusive system as you could combine several tools to build a suitable system for free using the normal open source tools as Dirk suggested.

I'm not sure if they have the reporting tools you're looking for but you could try

Zimbra or Citadel

link|improve this answer
feedback

I have not tried yet, but there is an open source called bounceHammer which can handle email bounces.

http://bouncehammer.jp/en/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.