diff options
Diffstat (limited to 'lib/custodian/alerts/smtp.rb')
-rw-r--r-- | lib/custodian/alerts/smtp.rb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/custodian/alerts/smtp.rb b/lib/custodian/alerts/smtp.rb new file mode 100644 index 0000000..21ef791 --- /dev/null +++ b/lib/custodian/alerts/smtp.rb @@ -0,0 +1,34 @@ + + + +# +# The SMTP-alerter. +# +module Custodian + + module Alerter + + class SMTP < AlertFactory + + # + # The test this alerter cares about + # + attr_reader :test + + # + # Constructor + # + def initialize( obj ) + @test = obj + end + + + + register_alert_type "smtp" + + + + + end + end +end |