4898794edd81be5285ea6e544acbedeaeb31bf78
max
  Tue Nov 23 08:10:57 2021 -0800
Fixing pointers to README file for license in all source code files. refs #27614

diff --git src/lib/mailViaPipe.c src/lib/mailViaPipe.c
index b5c322b..251b211 100644
--- src/lib/mailViaPipe.c
+++ src/lib/mailViaPipe.c
@@ -1,24 +1,24 @@
 /* mailViaPipe - a safer and sharable sendmail utility using
  * more secure pipeline module.
  * Special note: 
  * Currently, RR never return exit or error status to the browser 
  * after sendmail, so the implementation here does not handle any 
  * error condition at all, and will return 0 regardless. */
 
 /* Copyright (C) 2013 The Regents of the University of California 
- * See README in this or parent directory for licensing information. */
+ * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */
  
 #include "pipeline.h"
 #include "common.h"
 #include "mailViaPipe.h"
 
 int mailViaPipe(char *toAddress, char *theSubject, char *theBody, char *fromAddress)
 /* Send mail via pipeline to sendmail.  Abort if a problem. */
 {
 char *cmd1[] = {"/usr/sbin/sendmail", "-t", "-oi", NULL};
 struct pipeline *dataPipe = pipelineOpen1(cmd1, pipelineWrite | pipelineNoAbort,
                                           "/dev/null", NULL, 0);
 FILE *out = pipelineFile(dataPipe);
 fprintf(out, "To: %s\n", toAddress);
 fprintf(out, "From: %s\n", fromAddress);
 fprintf(out, "Subject: %s\n", theSubject);