summaryrefslogtreecommitdiff
path: root/bin/bbackupd/win32/NotifySysAdmin.vbs
blob: 49082887fc7d133c36b9296bd395ae4b5459603c (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
Dim hostname
Dim account
Dim from
Dim sendto
Dim subjtmpl
Dim subject
Dim body
Dim smtpserver

Set WshNet = CreateObject("WScript.Network")
hostname = WshNet.ComputerName

account = "0a1"
from = "boxbackup@" & hostname
sendto = "admin@example.com"
subjtmpl = "BACKUP PROBLEM on host " & hostname
smtpserver = "smtp.example.com"

Set args = WScript.Arguments

If args(0) = "store-full" Then
	subject = subjtmpl & " (store full)"
	body =	"The store account for "&hostname&" is full." & vbCrLf & vbCrLf & _
			"=============================" & vbCrLf & _
			"FILES ARE NOT BEING BACKED UP" & vbCrLf & _
			"=============================" & vbCrLf & vbCrLf & _
			"Please adjust the limits on account "&account&" on server "&hostname&"." _
			& vbCrLf
	SendMail from,sendto,subject,body
ElseIf args(0) = "read-error" Then
	subject = subjtmpl & " (read errors)"
	body =	"Errors occured reading some files or directories for backup on "&hostname&"." _
			& vbCrLf & vbCrLf & _
			"===================================" & vbCrLf & _
			"THESE FILES ARE NOT BEING BACKED UP" & vbCrLf & _
			"===================================" & vbCrLf & vbCrLf & _
			"Check the logs on "&hostname&" for the files and directories which caused" & _
			"these errors, and take appropraite action." & vbCrLf & vbCrLf & _
			"Other files are being backed up." & vbCrLf
	SendMail from,sendto,subject,body
ElseIf args(0) = "backup-start" Or args(0) = "backup-finish" Then
	' do nothing for these messages by default
Else
	subject = subjtmpl & " (unknown)"
	body =	"The backup daemon on "&hostname&" reported an unknown error." _
			& vbCrLf & vbCrLf & _
			"==========================" & vbCrLf & _
			"FILES MAY NOT BE BACKED UP" & vbCrLf & _
			"==========================" & vbCrLf & vbCrLf & _
			"Please check the logs on "&hostname&"." & vbCrLf
	SendMail from,sendto,subject,body
End If

Function CheckSMTPSvc()
	Set objWMISvc = GetObject("winmgmts:" _
		& "{impersonationLevel=impersonate}!\\.\root\cimv2")
	Set colSMTPSvc = objWMISvc.ExecQuery("Select * From Win32_Service " _
		& "Where Name='SMTPSVC'")
	If colSMTPSvc.Count > 0 Then
		CheckSMTPSvc = True
	Else
		CheckSMTPSvc = False
	End If
End Function

Sub SendMail(from,sendto,subject,body)
	Set objEmail = CreateObject("CDO.Message")
	Set WshShell = CreateObject("WScript.Shell")
	Dim cdoschema
	cdoschema = "http://schemas.microsoft.com/cdo/configuration/"
	
	With objEmail
		.From = from
		.To = sendto
		.Subject = subject
		.TextBody = body
		If CheckSMTPSvc = False Then
			.Configuration.Fields.Item(cdoschema & "sendusing") = 2
			.Configuration.Fields.Item(cdoschema & "smtpserver") = smtpserver
			.Configuration.Fields.Item(cdoschema & "smtpserverport") = 25
			.Configuration.Fields.Update
		End If
	End With
	On Error Resume Next
	rc = objEmail.Send
	If rc Then
		WshShell.Exec "eventcreate /L Application /ID 201 /T WARNING " _
			& "/SO ""Box Backup"" /D """ & args(0) _
			& " notification sent to " & sendto & "."""
	Else
		WshShell.Exec "eventcreate /L Application /ID 202 /T ERROR " _
			& "/SO ""Box Backup"" /D ""Failed to send " & args(0) _
			& " notification to " & sendto & "."""
	End If
End Sub