You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fa...@locus.apache.org on 2000/04/06 15:46:15 UTC

cvs commit: apache-site/bugs processmail

fanf        00/04/06 06:46:14

  Modified:    bugs     processmail
  Log:
  use the correct location of sendmail
  emailing of bug information now works
  Submitted by:	Ryan Morgan from Covalent
  
  Revision  Changes    Path
  1.2       +1 -1      apache-site/bugs/processmail
  
  Index: processmail
  ===================================================================
  RCS file: /home/cvs/apache-site/bugs/processmail,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- processmail	2000/03/10 01:54:33	1.1
  +++ processmail	2000/04/06 13:46:14	1.2
  @@ -326,7 +326,7 @@
               if (!$regenerate) {
                   # Note: fixaddresses may result in a Cc: only.  This seems
                   # harmless.
  -                open(SENDMAIL, "|/usr/lib/sendmail -t") ||
  +                open(SENDMAIL, "|/usr/sbin/sendmail -t") ||
                       die "Can't open sendmail";
                   print SENDMAIL $msg;
                   close SENDMAIL;