Changeset 556

Show
Ignore:
Timestamp:
12/29/06 20:45:22 (2 years ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/trunk/ChangeLog

    r555 r556  
    112006-12-29  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
    22 
     3        * cherokee/cherokee-panic: Check for the mail command, if it isn't 
     4        found use cat instead. 
     5         
    36        * cherokee/virtual_server.c (add_logger): Bug fix: Loggers were 
    47        not initialized. 
  • cherokee/trunk/cherokee/cherokee-panic

    r438 r556  
    55#   mail - mail the error. You need a working MTA in the system. 
    66#   cat  - just print it 
    7 action=mail 
     7if [ `which mail` ]; then 
     8   action=mail 
     9else 
     10   action=cal 
     11fi 
    812 
    913# Redirect all output to our mail command