-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.yml.sample
137 lines (103 loc) · 3.74 KB
/
config.yml.sample
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# You can customize outbound notifications using these three variables:
#
# * `$PLATFORM` will be replaced with "macOS" or "iOS".
#
# * `$VERSION` will be replaced with the relevant version number.
#
# * `$LINK` will be replaced with a link to the security content page
# for the relevant macOS or iOS version number. If a link for that
# specific version can't be found or hasn't been posted yet, `$LINK`
# defaults to the generic Apple URL for security information:
# https://support.apple.com/en-us/HT201222
#
# Keeping the notification text short is highly recommended, especially
# when SMS providers are enabled.
notification_text: |
Apple has released $PLATFORM $VERSION.
$LINK
# Discord (https://discord.com/)
discord:
enabled: no
# Follow the steps in the "Making a Webhook" section to enable
# Discord integration:
# https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks
webhook_urls:
- https://discord.com/api/webhooks/999999999999999999/vZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ
# Signal (https://signal.org/)
signal:
enabled: no
# - Signal notifications are considered experimental.
#
# - There isn't currently an officially supported method for sending
# programmatic Signal messages (e.g. from bots like this).
#
# - See SETUP.md for more information.
signal_cli_executable: /usr/local/bin/signal-cli
# Phone number that was registered and verified with `signal-cli`.
account_phone: "+18015551234"
groups:
- some-group-id
recipients:
- +18015551234
- +18015555678
# SimpleTexting (https://simpletexting.com/)
simpletexting_sms:
enabled: no
account_phone: 8885551234
api_key: 111XXXXXXXXXXXXXXXXXXXXXXXXXXXXX
# Every release notification is sent as a SimpleTexting "campaign."
# The campaign title prefix is used to generate the campaign name that
# will appear in the Campaigns section of the SimpleTexting admin
# interface, e.g., `Apple Update Notification 2023-05-04 14:11:29.378`.
#
# The campaign title prefix won't be displayed anywhere else and it's
# not part of the notification text that list subscribers will receive.
campaign_title_prefix: "Apple Update Notification"
# The unsubscribe text appears at the end of every update
unsubscribe_text: "Reply STOP to unsubscribe."
list_ids:
- software-update-subscribers
- another-example-list
# Slack (https://slack.com/)
slack:
enabled: no
# Follow these steps to create a new Slack app and set up an
# incoming webhook:
# https://api.slack.com/messaging/webhooks#getting_started
webhook_urls:
- https://hooks.slack.com/services/ZZZ/ZZZZ/ZZZZZ
# Email (SMTP protocol)
smtp:
enabled: no
server: smtp.example.com
port: 465
tls: yes
auth_user: [email protected]
auth_pass: SUPER_SECURE_PASSWORD
# Unless your SMTP server validates the helo domain during
# authentication, this can remain set to localhost.
helo_domain: localhost
subject: A new software update is available!
from_email: Sender Name <[email protected]>
bcc_recipients:
# Telegram (https://telegram.org/)
telegram:
enabled: no
# Message @botfather on Telegram to set up a new bot.
token: 5555555555:AAFYZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ
chat_ids:
- "@softwareupdates"
- "@secondexamplechannel"
# Twilio (https://www.twilio.com/sms)
twilio_sms:
enabled: no
# You can create a new project, provision a new number, and retrieve the
# associated SID and auth token in the Twilio console.
twilio_number: "+15558675309"
twilio_account_sid: ACZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ
twilio_auth_token: 23111111111111111111111111111111
recipients:
- +18015551234
- +18015555678