Changeset 556
- Timestamp:
- 12/29/06 20:45:22 (2 years ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/cherokee/cherokee-panic (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r555 r556 1 1 2006-12-29 Alvaro Lopez Ortega <alvaro@alobbs.com> 2 2 3 * cherokee/cherokee-panic: Check for the mail command, if it isn't 4 found use cat instead. 5 3 6 * cherokee/virtual_server.c (add_logger): Bug fix: Loggers were 4 7 not initialized. cherokee/trunk/cherokee/cherokee-panic
r438 r556 5 5 # mail - mail the error. You need a working MTA in the system. 6 6 # cat - just print it 7 action=mail 7 if [ `which mail` ]; then 8 action=mail 9 else 10 action=cal 11 fi 8 12 9 13 # Redirect all output to our mail command