-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent.ini
50 lines (41 loc) · 1.47 KB
/
event.ini
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
; INI File for Event Notifications
;
[database]
driver = mysql
host = localhost
; port =
name = eventLog
table = events
table2 = event_args
user = "mysql_user"
password = "my_password"
[IM]
sender = "[email protected]"
password = "my_gmail_password"
; This is a comma separated list of recipients
[SMS]
; SMS functions use your email info in the [email] section of this
; config file. Be sure to complete that before sending SMS messages.
; This is a comma separated list of phone number:carrier pairs.
; Default carriers are ATT, Verizon, Sprint, TMobile
; numbers = 1234567890:ATT, 5048675309:TMobile
numbers = "5552145000:TMobile,5558675309:Sprint"
[email]
; Use enabled and disabled, since php parses booleans from ini's very, very strangely.
; This is the default gmail setup.
SMTP = enabled
host = "smtp.gmail.com"
port = 465
; Include the "@host.com" in the user name. "[email protected]"
; If you don't need authentication, leave the user and password blank
user = "[email protected]"
password = "my_gmail_password"
sender = "[email protected]"
sender_name = "Event Notifier"
; A comma separated list of recipients for emails
; The beginning of the email subject line
subject_prefix = "Automated event notification: "
; END OF event.ini FILE