惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
A
About on SuperTechFans
Y
Y Combinator Blog
V
V2EX
Engineering at Meta
Engineering at Meta
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog
博客园 - 叶小钗
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MongoDB | Blog
MongoDB | Blog
B
Blog
G
Google Developers Blog
J
Java Code Geeks
博客园 - 三生石上(FineUI控件)
IT之家
IT之家
N
Netflix TechBlog - Medium
腾讯CDC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
SMTP Authentication Explained: A Technical Deep Dive for Ema
Dhiraj Chatp · 2026-05-19 · via DEV Community

SMTP Authentication Explained: A Technical Deep Dive for Email Engineers

Every email delivered on the internet passes through SMTP (Simple Mail Transfer Protocol). Yet most engineers who work with email only know it as "the thing that sends our transactional emails." Understanding SMTP authentication mechanisms is essential for anyone responsible for email deliverability.


The SMTP Basics

SMTP was designed in 1982 — long before authentication was a consideration. The protocol runs on port 25 (server-to-server) or 587 (submission with STARTTLS).

A Standard SMTP Session

$ telnet mail.example.com 25
220 mail.example.com ESMTP Postfix
HELO yourserver.com
250 mail.example.com Hello yourserver.com
MAIL FROM:<sender@example.com>
250 OK
RCPT TO:<recipient@target.com>
250 OK
DATA
354 End data with <CR><LF>.<CR><LF>
Subject: Test

This is the body.
.
250 OK: queued as 12345
QUIT
221 Bye

Enter fullscreen mode Exit fullscreen mode

Without authentication, anyone can send mail from any address. That's the problem SMTP authentication solves.


SMTP Authentication Mechanisms

1. PLAIN

The simplest authentication mechanism. Sends username and password as a single Base64-encoded string:

AUTH PLAIN
334 
dXNlcm5hbWUAVXNlcm5hbWU=c2VjcmV0
334 
AQ==
235 Authentication successful

Enter fullscreen mode Exit fullscreen mode

Format: \0username\0password (each separated by null byte, then Base64 encoded)

Security: Only secure over TLS (STARTTLS). Never use PLAIN without encryption.

2. LOGIN

Older mechanism, still widely supported. Sends username and password separately:

AUTH LOGIN
334 VXNlcm5hbWU6
dXNlcm5hbWU=
334 UGFzc3dvcmQ6
c2VjcmV0
235 Authentication successful

Enter fullscreen mode Exit fullscreen mode

Security: Same as PLAIN — requires TLS. Base64 encoding is not encryption.

3. CRAM-MD5 (Challenge-Response)

More secure — the server sends a challenge, and the client responds with a HMAC-MD5 hash that proves they know the password without transmitting it:

AUTH CRAM-MD5
334 PDE2OTUyLjEyMzQ1Njc4OTA=
dXNlcm5hbWUgYTJjMWM2ZjJlNWQwMzk2ZTBmODRhMzBjYzdlMmY5OA==
235 Authentication successful

Enter fullscreen mode Exit fullscreen mode

Security: Password is never transmitted. Still susceptible to replay attacks without additional protection.

4. SCRAM-SHA-256 (Salted Challenge Response Authentication Mechanism)

The modern standard. Defined in RFC 5802, it improves on CRAM-MD5 by:

  • Using SHA-256 instead of MD5
  • Salting the password hash
  • Preventing dictionary attacks
  • Providing mutual authentication (server proves to client it knows the password too)
AUTH SCRAM-SHA-256
334 czs0Ljc4OTAyMDQ3LjM4OTcwNzEwMDA=
c=biws,r=czs0Ljc4OTAyMDQ3LjM4OTcwNzEwMDA=,p=FsWjXmM9v8Y...
335 
d=splain,r=salt,p=storedkey
335

Enter fullscreen mode Exit fullscreen mode

Security: Current best practice. Use this whenever both client and server support it.


AUTH mechanisms in Practice

Most modern SMTP servers advertise supported mechanisms in the EHLO response:

$ telnet mail.example.com 587
220 mail.example.com ESMTP Postfix
EHLO client.example.com
250-mail.example.com
250-PIPELINING
250-SIZE 10240000
250-ETRN
250-STARTTLS
250-AUTH PLAIN LOGIN CRAM-MD5
250-AUTH PLAIN LOGIN CRAM-MD5
250 8BITMIME

Enter fullscreen mode Exit fullscreen mode

The AUTH PLAIN LOGIN CRAM-MD5 line shows supported mechanisms. Always prefer SCRAM-SHA-256 > CRAM-MD5 > PLAIN > LOGIN in that order.


STARTTLS: Encryption in Transit

SMTP without STARTTLS sends everything — including passwords and email content — in plain text. STARTTLS upgrades an unencrypted connection to an encrypted one:

$ telnet mail.example.com 587
220 mail.example.com ESMTP Postfix
EHLO client.example.com
250-STARTTLS
250 AUTH PLAIN LOGIN
AUTH LOGIN
334 VXNlcm5hbWU6
...

Enter fullscreen mode Exit fullscreen mode

Without STARTTLS: An eavesdropper on the network can read all your emails and steal SMTP credentials.

With STARTTLS: The connection is encrypted. However, STARTTLS can be stripped by man-in-the-middle attacks (opportunistic encryption doesn't verify certificates by default).

Strict TLS (RFC 8460): Forces encryption and verifies certificates. Required for DMARC alignment in some configurations.

KumoMTA configuration for strict TLS:

submission {
  tls = {
    enabled = true
    require = true
    verify = true
  }
}

Enter fullscreen mode Exit fullscreen mode


OAuth 2.0 for SMTP (XOAUTH2)

Traditional username/password SMTP auth is increasingly blocked by modern email providers:

  • Gmail/Google Workspace: App Passwords required for SMTP (going away in 2024-2026), OAuth 2.0 is the replacement
  • Microsoft/Office 365: Modern authentication (OAuth 2.0) required, basic auth being deprecated

XOAUTH2 Protocol

Instead of username/password, you use an OAuth 2.0 access token:

AUTH XOAUTH2
334 eyJhbGciOiJSUzI1NiJ9...
235 Authentication successful

Enter fullscreen mode Exit fullscreen mode

The SASL XOAUTH2 format:

user=<email>^Aauth=Bearer <access_token>^A^A

Enter fullscreen mode Exit fullscreen mode

Getting OAuth 2.0 Tokens

For Google Workspace:

  1. Create a project in Google Cloud Console
  2. Enable the Gmail API
  3. Create OAuth 2.0 credentials (Client ID + Client Secret)
  4. Use the OAuth 2.0 Playground or your own auth flow to get a refresh token
  5. Exchange refresh token for access token

For Microsoft:

  1. Register an app in Azure AD
  2. Request https://outlook.office365.com/.default scope
  3. Use MSAL library to get tokens

KumoMTA OAuth 2.0 Configuration

auth {
  oauth2 {
    provider = "google"
    client_id = "your-client-id.apps.googleusercontent.com"
    client_secret = "your-client-secret"
    refresh_token = "your-refresh-token"
  }
}

Enter fullscreen mode Exit fullscreen mode


SMTP Authentication for Different Providers

Gmail/Google Workspace

Method Status Notes
App Passwords Deprecated Being phased out, use OAuth 2.0
OAuth 2.0 (XOAUTH2) ✅ Recommended Requires Azure/GCP setup
Basic AUTH ⚠️ Limited Only with 2FA App Passwords

Microsoft/Office 365

Method Status Notes
Modern Auth (OAuth 2.0) ✅ Required Basic auth being deprecated
SMTP AUTH ⚠️ Conditional Must be enabled per mailbox

Amazon SES

Method Status Notes
SMTP credentials ✅ Standard Generated in SES console
IAM users ✅ Alternative More granular permissions
OAuth 2.0 ❌ Not supported SES uses AWS sig v4

Mailgun

Method Status Notes
SMTP credentials ✅ Standard Generated in domain settings
API key ✅ Preferred Faster, no SMTP overhead
OAuth 2.0 ❌ Not supported Use API for sending

Security Best Practices

1. Always use TLS (STARTTLS) for SMTP submission:

submission {
  tls = { enabled = true, require = false }
}

Enter fullscreen mode Exit fullscreen mode

2. Rotate SMTP credentials regularly:
Set a calendar reminder every 90 days to rotate SMTP passwords for any service accounts.

3. Use dedicated credentials per service:
Don't share SMTP credentials across applications. If one service is compromised, you can revoke one credential set without affecting others.

4. Monitor for unauthorized SMTP auth attempts:
Your mail server logs show every authentication attempt. Set up alerts for:

  • Failed authentication attempts (indicates brute force)
  • Authentication from unexpected IPs
  • Authentication for non-existent users

5. Use OAuth 2.0 wherever possible:
It's resistant to credential theft and doesn't require storing passwords.


Testing SMTP Authentication

Test with OpenSSL:

openssl s_client -connect mail.example.com:587 -starttls smtp
EHLO test.com
AUTH PLAIN
# paste Base64 credentials

Enter fullscreen mode Exit fullscreen mode

Test with swaks (Swiss Army Knife for SMTP):

swaks --to recipient@example.com \
  --from sender@example.com \
  --server mail.example.com \
  --auth PLAIN \
  --auth-user username \
  --auth-password password \
  --tls

Enter fullscreen mode Exit fullscreen mode

Test OAuth 2.0:
Use OAuth 2.0 Playground for Google, or Microsoft Identity Platform for Office 365.


Troubleshooting Authentication Failures

Error Cause Solution
535 Authentication credentials invalid Wrong password or expired token Regenerate credentials
535 5.7.3 Authentication mechanism not supported Client/server mechanism mismatch Use supported mechanism from EHLO list
534 5.7.9 Application-specific password required Google requiring 2FA + App Password Set up App Password or switch to OAuth 2.0
454 4.7.0 TLS required Server requires encrypted connection Add STARTTLS to your SMTP client
530 5.7.0 Authentication required AUTH not advertised or required Check EHLO for AUTH mechanisms

Related Guides:


Ready to improve your email deliverability? postmta.com provides enterprise email infrastructure consulting, MTA setup, IP warmup, and deliverability optimization for high-volume senders.