]> git.proxmox.com Git - pmg-api.git/blob - PMG/RuleDB/Receiver.pm
add some basic ruledb object
[pmg-api.git] / PMG / RuleDB / Receiver.pm
1 package Proxmox::RuleDB::Receiver;
2
3 use strict;
4 use warnings;
5
6 use PMG::RuleDB::EMail;
7
8 use base qw(PMG::RuleDB::EMail);
9
10 sub otype {
11 return 1007;
12 }
13
14 sub receivertest {
15 return 1;
16 }
17
18 1;