summaryrefslogtreecommitdiff
path: root/lib/custodian/alerts/smtp.rb
blob: 21ef79132c43d91bae51fffd2a05788709a677d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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