90daeb3786
The great plugin renaming in the name of inheritance and standardization commit. 1. new concept of standard hook_ names. 2. Plugin::init 3. renamed many subroutines in plugins (and cleaned up register subs) 4. updated README.plugins git-svn-id: https://svn.perl.org/qpsmtpd/trunk@479 958fd67b-6ff1-0310-b445-bb7760255be9
19 lines
470 B
Plaintext
19 lines
470 B
Plaintext
|
|
sub hook_quit {
|
|
my $qp = shift->qp;
|
|
|
|
# if she talks EHLO she is probably too sophisticated to enjoy the
|
|
# fun, so skip it.
|
|
return (DECLINED) if ($qp->connection->hello || '') eq "ehlo";
|
|
|
|
my $fortune = '/usr/games/fortune';
|
|
return DECLINED unless -e $fortune;
|
|
|
|
# local %ENV = ();
|
|
|
|
my @fortune = `$fortune -s`;
|
|
@fortune = map { chop; s/^/ \/ /; $_ } @fortune;
|
|
$qp->respond(221, $qp->config('me') . " closing connection.", @fortune);
|
|
return DONE;
|
|
}
|