diff options
author | Peter Palfrader <peter@palfrader.org> | 2002-07-06 00:50:27 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2002-07-06 00:50:27 +0000 |
commit | 93280fea38fe311792758ac25aff1dce1e43e884 (patch) | |
tree | 047f91c72886f49229cff17c501e5e77ccbcfc3d /Echolot/Mailin.pm | |
parent | 2db6a09c7c28d168724f17e24697f8e1dc40b496 (diff) |
Added Thesaurus
Diffstat (limited to 'Echolot/Mailin.pm')
-rw-r--r-- | Echolot/Mailin.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Echolot/Mailin.pm b/Echolot/Mailin.pm index 3b28276..7ecaa9a 100644 --- a/Echolot/Mailin.pm +++ b/Echolot/Mailin.pm @@ -1,7 +1,7 @@ package Echolot::Mailin; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: Mailin.pm,v 1.3 2002/06/11 10:00:38 weasel Exp $ +# $Id: Mailin.pm,v 1.4 2002/07/06 00:50:27 weasel Exp $ # =pod @@ -76,6 +76,7 @@ sub handle($) { Echolot::Conf::remailer_key($body, $type, $timestamp), return 1 if ($type =~ /^key\./); Echolot::Conf::remailer_help($body, $type, $timestamp), return 1 if ($type =~ /^help\./); Echolot::Conf::remailer_stats($body, $type, $timestamp), return 1 if ($type =~ /^stats\./); + Echolot::Conf::remailer_adminkey($body, $type, $timestamp), return 1 if ($type =~ /^adminkey\./); Echolot::Pinger::receive($body, $type, $timestamp), return 1 if ($type eq 'ping'); |