#! /usr/bin/perl -wT -I/var/dcc/cgi-bin # Display a message in a user's log directory # Copyright (c) 2019 by Rhyolite Software, LLC # # Permission to use, copy, modify, and distribute this software without # changes for any purpose with or without fee is hereby granted, provided # that the above copyright notice and this permission notice appear in all # copies and any distributed versions or copies are either unchanged # or not called anything similar to "DCC" or "Distributed Checksum # Clearinghouse". # # __________________________________________________ # # THE SOFTWARE IS PROVIDED "AS IS" AND RHYOLITE SOFTWARE, LLC DISCLAIMS ALL # WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES # OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL RHYOLITE SOFTWARE, LLC # BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, # WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, # ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # # Rhyolite Software DCC 2.3.167-1.41 $Revision$ # Generated automatically from list-msg.in by configure. # This file must protected with an equivalent to httpd.conf lines # in the README file. use strict 'subs'; use common; # display the message literally if asked if ($query{literal}) { my($buf, $msg, $path); # punt to directory listing if no message specified punt2("no message specified for listing", $list_log_url) if (!$query{msg}); punt2("bad message $query{msg} specified for listing", $list_log_url) if ($query{msg} !~ /^([a-zA-Z\d][a-zA-Z\d]{5}[a-zA-Z\d.]{0,4})$/); $msg = $1; $path = msg2path($msg); if (!open(MSG, $path)) { html_head("Message $msg for $user"); print "
Cannot open $path: $!\n"; html_footer(); print "