this post was submitted on 29 May 2024
28 points (96.7% liked)

Open Source

29009 readers
127 users here now

All about open source! Feel free to ask questions, and share news, and interesting stuff!

Useful Links

Rules

Related Communities

Community icon from opensource.org, but we are not affiliated with them.

founded 4 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 4 points 1 month ago* (last edited 1 month ago)

No, it's just a service that's running without me thinking about it.

My setup is:

  • debian as system
  • exim for smtp
  • courier for pop3
  • mariadb for accounts

But I'd like to make a point that's not being made in any of the other comments. It does not require an SMTP server to send e-mail. All you have to do is lookup the MX DNS record of the domain, connect to that SMTP server and write a few commands fx.:

EHLO senderdomain.tld
MAIL FROM:<[email protected]> 
RCPT TO:<[email protected]>
DATA
Subject: Blabla

Bla bla
.