AWS Security ChangesHomeSearch

AWS ses documentation change

Service: ses · 2025-09-28 · Documentation low

File: ses/latest/dg/postfix.md

Summary

Updated command syntax for certificate export to use `tee` instead of direct redirection

Security assessment

The change modifies command execution syntax but does not address security vulnerabilities or introduce security-related content. It improves command reliability by using `tee` with proper permissions.

Diff

diff --git a/ses/latest/dg/postfix.md b/ses/latest/dg/postfix.md
index 37cb7b306..aa671cb4e 100644
--- a//ses/latest/dg/postfix.md
+++ b//ses/latest/dg/postfix.md
@@ -104 +104 @@ Save and close `sasl_passwd`.
-                sudo security find-certificate -a -p /System/Library/Keychains/SystemRootCertificates.keychain > /etc/ssl/certs/ca-bundle.crt
+                sudo security find-certificate -a -p /System/Library/Keychains/SystemRootCertificates.keychain | sudo tee /etc/ssl/certs/ca-bundle.crt > /dev/null