this post was submitted on 26 Aug 2023
35 points (97.3% liked)

Selfhosted

39151 readers
321 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

I use O365 Business (Or whatever the heck they call it now) for my email, so for SMTP on all my devices at home, I use an O365 account with an app password, sending as a distro-group so it can have a custom name

This works, but I don't like how every device/server has O365 creds in it. I am thinking I should setup an SMTP Relay at home locally, which sends to O365 (Or Sendgrid, etc etc) and then SMTP on local services can just point to that local address

Is this the right way to go about it? What is the current best software do it? I've only ever had experience using IIS to do this, and of course I don't want to be running windows!

top 18 comments
sorted by: hot top controversial new old
[–] krnl386@lemmy.ca 7 points 1 year ago

Interactive (i.e. end-users) Clients should be using OAuth instead of app passwords. This will allow your users to use their own Office365 credentials for SMTP.

For servers and non-interactive clients (e.g. copiers/printers/toasters/coffee makers) I would suggest something along the lines here: https://learn.microsoft.com/en-us/exchange/mail-flow-best-practices/how-to-set-up-a-multifunction-device-or-application-to-send-email-using-microsoft-365-or-office-365#compare-the-options

[–] SirMaple_@lemmy.sirmaple.ca 5 points 1 year ago

I use https://github.com/YoRyan/mailrise

Mailrise is apprise under the hood. It's an SMTP server that converts all the emails it receives to push messages depending on the To address in the email.

In my case I have postfix running as an open relay inside my network that then relays to Amazon SES. But I have my own domain.

I imagine doing something similar where you relay to o365 might work.

[–] lemming007@lemm.ee 2 points 1 year ago

I think what you're doing is fine, in fact, it's one of the Microsoft recommended methods of doing it.

[–] peregus@lemmy.world 2 points 1 year ago (1 children)

I've started using SMTP2GO for all my notification. Up to 1000 email/month it's free. So I don't have to rely on Google/Microsoft account/changes that they do every once in a while.

[–] Fisch@lemmy.ml 1 points 9 months ago (1 children)

I've been thinking about using that as an SMTP relay as well (Because my email server doesn't have reverse DNS). Would you recommend it?

[–] peregus@lemmy.world 1 points 9 months ago (1 children)

Definitely! I've been using without any problem the free version.

[–] Fisch@lemmy.ml 1 points 9 months ago

I haven't found any reason online for not using it either, so I guess I'll just use that. Free account should be more than enough for me too, no way am I going to send more than 1000 emails a month.

[–] TORFdot0@lemmy.world 1 points 1 year ago

If you are just sending notification emails to your own account then you can use SMTP directly to O365 without authentication and it will be delivered as long as it’s being sent within your tenant (if your home IP isn’t in your SPF record it may get delivered to junk however)

This is how we handle scan to email using MFPs in our org. No credentials, or even a mailbox for the outgoing sender, required

[–] Decronym@lemmy.decronym.xyz 1 points 9 months ago* (last edited 9 months ago)

Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I've seen in this thread:

Fewer Letters More Letters
DNS Domain Name Service/System
IP Internet Protocol
SMTP Simple Mail Transfer Protocol

[Thread #344 for this sub, first seen 12th Dec 2023, 10:55] [FAQ] [Full list] [Contact] [Source code]

[–] nbailey@lemmy.ca 0 points 1 year ago (1 children)

Best bet would be to setup postfix or opensmtpd as an open relay. Just make sure it is only accessible in trusted networks though!!

https://docbot.onetwoseven.one/services/postfix/

You’d want to set the listen address to 0.0.0.0 and use a non-loop back interface.

[–] lando55@lemmy.world 3 points 1 year ago

Just make sure it is only accessible in trusted networks though!!

Aw you're no fun. Next you'll be telling me to block all emails over 500 miles.

[–] cizra@lemm.ee -2 points 1 year ago (1 children)

You're trading one security issue (profileration of app passwords) to another one (an unauthenticated relay). Is it worth it?

[–] SheeEttin@lemmy.world 2 points 1 year ago (2 children)

An unauthenticated relay isn't a security problem when it can only send to certain addresses in 365, and isn't even accessible outside the local network.

[–] PuppyOSAndCoffee@lemmy.ml 0 points 1 year ago (1 children)

Well…it is a potential risk that links back to you pretty much directly. What is stopping some rogue sw from sniffing out smtp and then going bananas?

I would look for other ways tbh. Running smtp locally is imo asking for trouble.

[–] SheeEttin@lemmy.world 1 points 1 year ago (1 children)

It's behind a firewall for one. But even so, you should configure it to only accept connections from the local network, only send via 365, and only to your own address, then the scope is vastly reduced.

[–] PuppyOSAndCoffee@lemmy.ml -1 points 1 year ago* (last edited 1 year ago)

threat & impact is essentially identical => "so for SMTP on all my devices at home"; the home environment is a bit swampy, a mix of protected and unprotected network.

A worm/bot sending out mass emails from Business 365 would be perceptually damaging to the business; would advise against SMTP and instead look at other secure methods of provisioning identity that are not quite as labor intensive as sticking credentials in each nook and cranny. Or...simply don't utilize O365....

[–] cizra@lemm.ee 0 points 1 year ago

Having an unauthenticated relay imposes the responsibility to configure it correctly (the "only certain addresses" part) and protect it (the "accessible outside the local network" bit). Are you sure it's not accessible? Did you remember to test with IPv6 too? Will it remain protected after the next time you mess around with your firewall for some totally unrelated reason?

If it works - good for you, but be mindful of all the baggage that comes with a new service.