Show HN: A self-hosted email engine
31–40 of 63 posts
Re: Show HN: A self-hosted email engine
#32Awesome. We can never have enough of high quality self hosted software.
As someone who has been out of the PHP game for a long time, is it still a viable choice for new software? I don't have fond memories of the language at that time, so seeing PHP in the demo video poster frame was an immediate mark against pitching this at my company. That made me wonder whether it's a reasonable reaction to have. Edit for the downvoters— this is an honest question and I very much agree that we can ne…
Re: Show HN: A self-hosted email engine
#33Earlier quoted context omitted.
As someone who has been out of the PHP game for a long time, is it still a viable choice for new software? I don't have fond memories of the language at that time, so seeing PHP in the demo video poster frame was an immediate mark against pitching this at my company. That made me wonder whether it's a reasonable reaction to have. Edit for the downvoters— this is an honest question and I very much agree that we can ne…
PHP is a very good choice. If you want to refresh your knowledge of PHP take a look here: https://phptherightway.com/ It's fast. PHP has great documentation. PHP ecosystem is now based around Composer, in comparison to mess of package management in JavaScript and Python, Composer is just wonderful to use. Packagist has ton of libraries. Share nothing architecture is very easy to maintain and scale. You can do strict…
Re: Show HN: A self-hosted email engine
#34Re: Show HN: A self-hosted email engine
#35Earlier quoted context omitted.
Sadly, Google will flag as spam most new email servers by default. Email deliverability is a cartel these days.
yeah, came here to ask -- how do you not end up in the gmail spam folder?
- ensure your external IP reputation is good. Check blacklists.
- configure correct dns/reverse dns (PTR) records.
- setup SPF (maybe DKIM with DMARC but I'm not using these)
- do not spam.
Thats it.
Re: Show HN: A self-hosted email engine
#36This is not my area but why dont people setup their own smtp servers, and use plain tools like readcube?
Hosting your own email service is way more difficult than just spinning up a smtp server and some interface. Most big providers (like gmail) are more likely to flag incoming mails from unknown servers. That's the reason why stuff like Sendy[1] is so popular. You host your own interface, settings and so on, but the ugly part of sending your email is handled by AWS SES. [1] https://sendy.co/
Re: Show HN: A self-hosted email engine
#37Re: Show HN: A self-hosted email engine
#38Earlier quoted context omitted.
yeah, came here to ask -- how do you not end up in the gmail spam folder?
I'm surprised that someone is having problem sending email to gmail from their own smtp server. I am doing this for years with tens of thousands emails delivered every week (sometimes daily), yet had no issues. Here are few advises: - ensure your external IP reputation is good. Check blacklists. - configure correct dns/reverse dns (PTR) records. - setup SPF (maybe DKIM with DMARC but I'm not using these) - do not spa…
First off, you don’t really have control over your external IP reputation, unless you have your own IP space, which most people don’t.
You’re at the mercy of your colo/hosting, really. You get whatever IP they give you, baggage included. I think the reputation is also subnet-based, not IP based, so your potential to be included in someone else’s blast radius is increased.
Also, even with a clean IP, the steps you outlined are not sufficient to send significant numbers of non-spam messages and not get spamboxed. Gmail seems to be mostly okay with erring on the side of false positives.
Source: been running my own email servers for 25 years
Re: Show HN: A self-hosted email engine
#39Earlier quoted context omitted.
That's only true if you're spamming people a lot. Running your own postfix server is trivial, and you'll have a fine reputation so long as you aren't sending marketing BS.
Unfortunately, this is the total opposite of my experience. I've never sent any spam from my domains and yet Gmail refused constantly to let any of my emails through regardless of my VPS provider, my DKIM/SPF setup and so on. The _only_ way I could solve it is by letting my email be managed by some other email service provider (I went with Zoho but I don't think it matters).
Re: Show HN: A self-hosted email engine
#40Earlier quoted context omitted.
I'm surprised that someone is having problem sending email to gmail from their own smtp server. I am doing this for years with tens of thousands emails delivered every week (sometimes daily), yet had no issues. Here are few advises: - ensure your external IP reputation is good. Check blacklists. - configure correct dns/reverse dns (PTR) records. - setup SPF (maybe DKIM with DMARC but I'm not using these) - do not spa…
If only it were that easy! This usually isn’t enough anymore. First off, you don’t really have control over your external IP reputation, unless you have your own IP space, which most people don’t. You’re at the mercy of your colo/hosting, really. You get whatever IP they give you, baggage included. I think the reputation is also subnet-based, not IP based, so your potential to be included in someone else’s blast radi…
(btw my mails also seem to get through and i haven't even set up DKIM)