package Book::Maintenance; use strict; use Apache::Constants qw(:common); sub handler { my $r = shift; $r->send_http_header("text/plain"); print qq{We regret that the service is temporarily unavailable while essential maintenance is undertaken. It is expected to be back online from 12:20 GMT. Please be patient. Thank you!}; return OK; } 1;