2fe35f1b8d
git-svn-id: https://svn.perl.org/qpsmtpd/branches/v010@34 958fd67b-6ff1-0310-b445-bb7760255be9
13 lines
293 B
Plaintext
13 lines
293 B
Plaintext
|
|
sub register {
|
|
shift->register_hook("quit", "quit_handler");
|
|
}
|
|
|
|
sub quit_handler {
|
|
my $qp = shift->qp;
|
|
my @fortune = `/usr/games/fortune -s`;
|
|
@fortune = map { chop; s/^/ \/ /; $_ } @fortune;
|
|
$qp->respond(221, $qp->config('me') . " closing connection.", @fortune);
|
|
return DONE;
|
|
}
|