1
0
mirror of git://f0xx.org/ac/ac-deploy synced 2026-07-29 04:19:00 +03:00

cluster0: QR verify email attachment, libqrencode-tools, src=qr analytics

ShortLinksRepository mail pack + renderQrPng; cluster APK includes
libqrencode-tools; deploy-ac-url-shortener ensures QR CLI.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Anton Afanasyeu
2026-06-23 18:53:35 +02:00
parent d8c8b3a57a
commit 7a014118a2
5 changed files with 154 additions and 20 deletions

View File

@@ -28,7 +28,10 @@ $ok = AuthMailer::sendVerifyEmail($to, $long);
echo $ok ? "mail_ok" : "mail_fail";
' 2>&1)" || _out="mail_fail"
log "$_out to=$TO long=$_long"
log "$_out to=$TO short=$(echo "$_long" | sed 's/token=.*/token=…/')"
if echo "$_out" | grep -q mail_ok; then
log "hint: expect s.f0xx.org short link + verify-email-qr.png attachment (QR encodes …&src=qr)"
fi
case "$_out" in
mail_ok) exit 0 ;;
*) exit 1 ;;