b39119efb42cec014dfe6cba948bc7717b0176c4 lrnassar Fri Oct 20 14:10:18 2023 -0700 Changing the abuse message to point to private ML instead of public, refs #22423 diff --git src/hg/das/das.c src/hg/das/das.c index 79fb6e4..cea00ae 100644 --- src/hg/das/das.c +++ src/hg/das/das.c @@ -69,31 +69,31 @@ static char dasStrand(char strand) /* convert a strand to a valid DAS strand (+,-,0) */ { if ((strand == '+') || (strand == '-')) return strand; else return '0'; } void sendHogMessage(char *hogHost) { dasHead(DAS_OK, TRUE); printf("Your host, %s, has been sending too many requests lately and is " "unfairly loading our site, impacting performance for other users. " - "Please contact genome@soe.ucsc.edu to ask that your site " + "Please contact genome-www@soe.ucsc.edu to ask that your site " "be reenabled. Also, please consider downloading sequence and/or " "annotations in bulk -- see http://genome.ucsc.edu/downloads.html.", hogHost); exit(0); } void blockHog(char *hogHost, char *hogAddr) /* Compare host/addr to those of an abusive client that we want to block. */ { char *rhost = getenv("REMOTE_HOST"); char *raddr = getenv("REMOTE_ADDR"); if ((rhost != NULL && sameWord(rhost, hogHost)) || (raddr != NULL && sameWord(raddr, hogAddr))) {