Please stop hijacking scrolling. Thankyou.
Sorry, we didn't notice that. The design comes with this feature, but we will probably change it very soon.
Show HN: Fake SMTP server as a service
81–90 of 91 posts
Re: Show HN: Fake SMTP server as a service
#82Please stop hijacking scrolling. Thankyou.
Sorry, we didn't notice that. The design comes with this feature, but we will probably change it very soon.
Re: Show HN: Fake SMTP server as a service
#83sudo python -m smtpd -n -c DebuggingServer localhost:25
Re: Show HN: Fake SMTP server as a service
#84This seems similar to https://mailtrap.io
Re: Show HN: Fake SMTP server as a service
#85Earlier quoted context omitted.
Agreed. Don't use real PII for test environments. If you absolutely need to, find a way to create several hundred real functioning email addresses which are dedicated to testing purposes at different domains/services, as widely spread out as you can, to verify that your outgoing email is actually being delivered from a test environment. You need to be able to verify, by looking at the receive headers on the individua…
This is why I love Google's feature of letting you generate addresses with a +. It's so very useful
Re: Show HN: Fake SMTP server as a service
#86Shameless plug https://github.com/SpartaSystems/holdmail
† This comes with the caveat that you don't use PII, because people make configuration mistakes - but if that's how you do testing, then I'd argue you have bigger problems in your organization than capturing mail. We use it with somefakeguy@ourdomain.com, someotherguy_datetime_from_automatedtest@ourdomain.com, rather than just sending stuff to _real_ addresses.
Re: Show HN: Fake SMTP server as a service
#87Earlier quoted context omitted.
Agreed. Don't use real PII for test environments. If you absolutely need to, find a way to create several hundred real functioning email addresses which are dedicated to testing purposes at different domains/services, as widely spread out as you can, to verify that your outgoing email is actually being delivered from a test environment. You need to be able to verify, by looking at the receive headers on the individua…
This is why I love Google's feature of letting you generate addresses with a +. It's so very useful
Re: Show HN: Fake SMTP server as a service
#88"No fake recipient email addresses anymore, use real ones!" This is a really bad idea. Keep PII far away from your test environments.
We added both the SMTP option and wildcard email address suffix for this reason - Some people want to use SMTP to catch all, others prefer specific email addresses (e.g. One per test run)
Re: Show HN: Fake SMTP server as a service
#89This seems similar to https://mailtrap.io
Disclaimer co-founder
Re: Show HN: Fake SMTP server as a service
#90It was an evening's work, so it's very simple, but it works and we've found it very useful. (The original idea was to very simply expose the application flows involving mail to selenium, but I've found it very useful for dev, too.)