blob: d170bbf70173832d333a1eafc57d9ed53839e820 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
require 'net/smtp'
#
# The SMTP-alerter.
#
module Custodian
module Alerter
class AlertSMTP < AlertFactory
#
# The test this alerter cares about
#
attr_reader :test
#
# Constructor - save the test-object away.
#
def initialize( obj )
@test = obj
end
#
# Raise an alert by email.
#
def raise
subject = "#{test.target} failed #{test.get_type}-test - #{test.error()}"
body = "The alert has cleared\nRegards\n";
_send_mail( @target, subject, body )
end
#
# Clear an alert by email.
#
def clear
subject = "#{test.target} failed #{test.get_type}-test"
body = "The alert has raised, with the following details:\n#{test.error()}\nRegards\n";
_send_mail( @target, subject, body )
end
#
# Send an email
#
def _send_mail( to, subject, body )
msg = <<END_OF_MESSAGE
From: #{to}
To: #{to}
Subject: #{subject}
#{body}
END_OF_MESSAGE
Net::SMTP.start("127.0.0.1") do |smtp|
smtp.send_message( msg, to, to)
end
end
register_alert_type "smtp"
end
end
end
|