-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.py.sample
39 lines (27 loc) · 1.06 KB
/
settings.py.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
"""CellCius is an automatic balance checking tool for the Cell-C mobile network
in South Africa.
"""
# Don't output anything unless something goes wrong.
quiet = True
# Must either be "localhost" or "gmail"
send_email_via = "gmail"
# If send_email_via is "gmail" this must be a gmail (or google apps) address
send_from = "My Cell-C reporter <[email protected]>"
gmail_username = "[email protected]"
# If send_email_via is "gmail" then you need to provide your password.
gmail_password = "foobar"
# Which address to send the warning to.
send_to = "[email protected]"
# Your MSISDN in the format 0841234567
msisdn = '0841234567'
# Your https://www.cell.co.za/my-account password
# Be careful with this because they lock you out for an hour after 3 incorrects.
cellc_password = 'supersecret'
# Cell C Cost Per Minute for Voice
cellc_voice_per_minute = 0.99
# Below these numbers you will receive an email. None means you don't care.
threshold_sms = None
threshold_voice = 40 # minutes
threshold_data = 500 # megabytes
# How many hours between warning emails.
send_email_every = 2