52990d0eb995b59123d54fb08898305463095b0e
hiram
  Thu May 28 12:27:22 2026 -0700
change bounce address refs #31811

diff --git src/hg/utils/otto/userRequests/ottoRequest.py src/hg/utils/otto/userRequests/ottoRequest.py
index d1ec80e228b..caccd849924 100755
--- src/hg/utils/otto/userRequests/ottoRequest.py
+++ src/hg/utils/otto/userRequests/ottoRequest.py
@@ -274,27 +274,27 @@
         else:
             body = (
                 f"Your alignment request has been received and is being\n"
                 f"processed.\n"
                 f"\n"
                 f"Request details:\n"
                 f"  From:      {req['fromDb']}\n"
                 f"  To:        {req['toDb']}\n"
                 f"  Comment:   {req['comment'].rstrip()}\n"
                 f"  Submitted: {req['requestTime']}\n"
                 f"\n"
                 f"Will advise when this alignment is available in the genome browser.\n"
                 f"\n"
                 f"-- UCSC Genome Browser\n"
             )
-        bitParts = ["h", "cla", "wson", "@", "uc", "sc.", "ed", "u"]
+        bitParts = ["gb", "aut", "o", "@", "uc", "sc.", "ed", "u"]
         if sendMail(userEmail, subject, body,
            fromAddr=NOTIFY_FROM, bccAddr=bccAddr, bounceAddr="".join(bitParts)):
                hgsqlUpdate(ottoDb, f"UPDATE {ottoTable} SET status = 1"
                    f" WHERE id = {req['id']}")
         else:
             print(f"Failed to send notification for request #{req['id']}",
                   file=sys.stderr)
 
 
 if __name__ == '__main__':
     main()