e4c85f62505d21f22ba7cf3cc08312ca56835df9 galt Mon Aug 27 15:53:35 2018 -0700 dregs of dregs, i.e. mostly email domains: changing cse to soe diff --git src/hg/das/das.c src/hg/das/das.c index f8b28d8..6d7d1b1 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@cse.ucsc.edu to ask that your site " + "Please contact genome@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))) {