bildung.social ist einer von vielen unabhängigen Mastodon-Servern, mit dem du dich im Fediverse beteiligen kannst.
Bildung unter den Bedingungen der digitalen Transformation.

Verwaltet von:

Serverstatistik:

848
aktive Profile

#smtp

0 Beiträge0 Beteiligte0 Beiträge heute
Fortgeführter Thread

System Administration

Week 8, The Simple Mail Transfer Protocol

Shared by a student of mine: Email vs Capitalism, or, Why We Can't Have Nice Things, a talk given by Dylan Beattie at NDC Oslo 2023. Covers a lot of our materials and adds some additional context.

youtu.be/mrGfahzt-4Q

#SysAdmin#DevOps#SRE
Fortgeführter Thread

System Administration

Week 8, The Simple Mail Transfer Protocol, Part III

In this video, we look at ways to combat Spam. In the process, we learn about email headers, the Sender Policy Framework (#SPF), DomainKeys Identified Mail (#DKIM), and Domain-based Message Authentication, Reporting and Conformance (#DMARC). #SMTP doesn't seem quite so simple any more...

youtu.be/KwCmv3GHGfc

Fortgeführter Thread

System Administration

Week 8, The Simple Mail Transfer Protocol, Part II

In this video, we observe the incoming mail on our MTA, look at how STARTTLS can help protect information in transit, how MTA-STS can help defeat a MitM performing a STARTTLS-stripping attack, and how DANE can be used to verify the authenticity of the mail server's certificate.

youtu.be/RgEiAOKv640

#SysAdmin#SRE#DevOps
Fortgeführter Thread

System Administration

Week 8, The Simple Mail Transfer Protocol

In this video, we begin our discussion of E-Mail by looking at the components of the larger mail system (the Mail User Agent, Mail Transfer Agent, Mail Delivery Agent, Access Agent); we observe the packets involved in a simple #SMTP exchange and track an email from one system to the other, both through the logs and on the wire, before we then learn to speak SMTP via telnet(1).

youtu.be/Ai8rjqelwsI

Hi there. I'm self hosting my SMTP server for years, and I have 10/10 on mail-tester.com/

Recently, I've got 2 messages rejected by Apple server (on "@me.com" addresses), and today I've got a SPAM abuse signalement (probably automatic) for those 2 emails! I could send to those same addresses without problem before.

Do other people have had similar problems with Apple SMTP servers recently? What can we do? TIA

www.mail-tester.comNewsletter Spam-Test von mail-tester.comMit dem kostenlosen Online Service mail-tester.com können Sie Ihre E-Mails prüfen, ob sie als Spam eingestuft würden und ob die Formatierung und die Server-Einstellungen einwandfrei sind.
#askfedi#selfhosting#smtp

I thought I had seen it all when it comes to mail delivery and security issues.

But this morning I was introduced to the fact that there are Exchange admins who will implement a rule that all incoming mail from outside their own organization should be flagged as potentially dangerous and presented to the user with the option to block sender and no option to mark the message or the sender as valid.

Yes, that for every single message.

#exchange#smtp#email

Although there are a couple more days in the month, today is a wrap for me on #Fedibruary .
To round out the month I installed #GoToSocial (#mastodon alternative #ActivityPub service) in a test environment and played around.

I'm pretty happy with it! the install was simple (barring a confusing error message or two), #pachli worked with it (once I changed from port 8080 to 443) and it has a nice little admin portal to manage the deployments website.

There are a bunch of settings related to #SMTP and #OIDC which make it attractive as a medium term deployment project when I want to run my own server for reals.

Some services in my homelab can send out emails for different things and obviously require an SMTP server. I still use my old gmail account for sending out emails like this, but it's rather icky.

Has anyone found a good solution for doing the same without Google or similar, like a reliable independent provider to use? (If Proton could be used like this I would be very happy) I don't want to host my own email server for this purpose if at all possible.

#homelab#smtp#selfhost

Announcing Email-Simplified (and Flask-Email-Simplified), a library for creating and sending email in Python. I blogged about it here: davidism.com/email-simplified/

Sets up TLS trust correctly, handles international domains, HTML with inline attachments, converting to/from MIME. Works in plain Python, has an API for integrating with frameworks, and an API for writing new service providers in addition to the built-in SMTP provider. And much more! #python #email #smtp

David LordEmail with Python, SimplifiedI just released a new Python library, ; along with a Flask/Quart extension, . I wrote most of this library a year ago and have been using it privately, but d...