Maildog – Hosting email forwarding service on AWS with GitHub Actions
41–50 of 50 posts
Re: Maildog – Hosting email forwarding service on AWS with GitHub Actions
#42I run email for two companies. In both cases, everything from SES goes straight to quarantine and users never see it. I would just reject SES altogether but once in a while something legit comes in and someone asks me to release it. I see a massive amount of spam from SES and pretty much all email service providers.
Okay.
> and pretty much all email service providers.
Uh, how do you handle email then? Which provider do you use / can you recommend?
Re: Maildog – Hosting email forwarding service on AWS with GitHub Actions
#43Earlier quoted context omitted.
Also note that Github will deactivate cron actions if there is no activity in the repo for 60 days. https://github.community/t/do-disabled-scheduled-workflows-r...
Obviously you can automate that with another repo that has a cron job to push a dummy commit every 30 days.
Re: Maildog – Hosting email forwarding service on AWS with GitHub Actions
#44This feels like it's pushing the TOS for Github Actions a bit by using it for post deployment, live operations. Like the hourly health check and your dead letter queue scheduler. It made me curious, so I looked at their TOS[1], and they seem somewhat permissive about things like this. Though vague about where/when you cross the line. Like, this seems clear: "should not be used for...any other activity unrelated to th…
Re: Maildog – Hosting email forwarding service on AWS with GitHub Actions
#45This feels like it's pushing the TOS for Github Actions a bit by using it for post deployment, live operations. Like the hourly health check and your dead letter queue scheduler. It made me curious, so I looked at their TOS[1], and they seem somewhat permissive about things like this. Though vague about where/when you cross the line. Like, this seems clear: "should not be used for...any other activity unrelated to th…
Also note that Github will deactivate cron actions if there is no activity in the repo for 60 days. https://github.community/t/do-disabled-scheduled-workflows-r...
Re: Maildog – Hosting email forwarding service on AWS with GitHub Actions
#46I run email for two companies. In both cases, everything from SES goes straight to quarantine and users never see it. I would just reject SES altogether but once in a while something legit comes in and someone asks me to release it. I see a massive amount of spam from SES and pretty much all email service providers.
> I see a massive amount of spam from SES Okay. > and pretty much all email service providers. Uh, how do you handle email then? Which provider do you use / can you recommend?
In terms of outbound email, I have a very Dilbert answer for you. The marketing guy picked Constant Contact and we use that. I have no idea how good deliverability is with CC vs anyone else. We use an opt-in email list, don't send a lot of communications, and immediately honor opt-outs.
Re: Maildog – Hosting email forwarding service on AWS with GitHub Actions
#47Earlier quoted context omitted.
Also note that Github will deactivate cron actions if there is no activity in the repo for 60 days. https://github.community/t/do-disabled-scheduled-workflows-r...
Obviously you can automate that with another repo that has a cron job to push a dummy commit every 30 days.
Re: Maildog – Hosting email forwarding service on AWS with GitHub Actions
#48Please, oh please, do not forward email. https://www.tidbitsfortechs.com/2018/06/email-forwarding-is-... ^ I am the author of that article. If this is a different kind of mail forwarding, then please educate me as to how. Thanks :)
I think one thing the article doesn't really mention is that the domain sending the email is only one (potentially small) factor in classifying email as spam or not. Gmail has done just fine classifying different emails as spam that are being forwarded from the same domain. After all think of how much spam is sent from the gmail.com domain.
Re: Maildog – Hosting email forwarding service on AWS with GitHub Actions
#49Seems like a lot more hassle than using purelymail[0] for $10 a year, which has full Sieve and SpamAssassin and sub-addressing. 0. https://purelymail.com/pricing
This is great! Thank you. There is also https://forwardemail.net/ which is a different service.