236cb07769
security.md is linked from the README documentation table and now from SECURITY.md, so a reader following either link landed in a Russian document while everything around it was English. Translated in full; the requirements, the accepted risks, and the CSRF ADR are unchanged in substance. The reviewing model is no longer named in the text — that the pre-release review ran, and when, is what a reader needs; who ran it is process detail kept in development.md. extract-cert.sh keeps its spec 10.3 quotation, translated. In sasl.go the quotation from the closed plan is dropped rather than translated: rendered in English it restated the sentence it hung off. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
29 lines
1.0 KiB
Bash
29 lines
1.0 KiB
Bash
#!/bin/sh
|
|
# Extracts a PEM cert/key pair for one domain out of Traefik's acme.json
|
|
# (spec 10.3: "Traefik keeps certificates in acme.json, so a PEM extraction
|
|
# step is required"). Run this on the host, after Traefik has issued or
|
|
# renewed the certificate, and again on a schedule (cron/systemd timer) since
|
|
# acme.json is not itself watched by SelfPost/Postfix.
|
|
#
|
|
# Requires jq. Usage: ./extract-cert.sh <acme.json path> <domain> <output dir>
|
|
set -eu
|
|
|
|
ACME_JSON="${1:?path to acme.json}"
|
|
DOMAIN="${2:?domain name, e.g. mail.example.com}"
|
|
OUT_DIR="${3:?output directory, e.g. ./extracted-certs}"
|
|
|
|
mkdir -p "$OUT_DIR"
|
|
|
|
jq -r --arg domain "$DOMAIN" '
|
|
.le.Certificates[]
|
|
| select(.domain.main == $domain)
|
|
| .certificate' "$ACME_JSON" | base64 -d > "$OUT_DIR/fullchain.pem"
|
|
|
|
jq -r --arg domain "$DOMAIN" '
|
|
.le.Certificates[]
|
|
| select(.domain.main == $domain)
|
|
| .key' "$ACME_JSON" | base64 -d > "$OUT_DIR/privkey.pem"
|
|
|
|
chmod 0640 "$OUT_DIR/fullchain.pem" "$OUT_DIR/privkey.pem"
|
|
echo "extracted $DOMAIN to $OUT_DIR/{fullchain,privkey}.pem"
|