-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrapidsms.ini
106 lines (89 loc) · 3.05 KB
/
rapidsms.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
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
#!/usr/bin/env python
# vim: ai ts=4 sts=4 et sw=4 encoding=utf-8
[rapidsms]
apps=webapp,ajax,admin,reporters,locations,messaging,httptester,logger,ubuzima,echo,ambulances
backends=
[database]
engine=
name=
user=
password=
host=
port=
[log]
level=
file=
# -- APPS
#
# In this area you can define configurations for individual applications. The app
# must be listed under the section [rapidsms] in "apps". If no configuration is
# listed for your app it will use the default parameters. However, if you wish to
# run two apps of the same type, you MUST define configure them explicitly here.
#[httptester]
#host=localhost
#port=8080
[httptester]
host=
port=
# Example settings for gsm backend for use with PyGSM
[gsm]
port=
[webapp]
# define permissions for anonymous (not logged-in) users.
# tabs can be displayed on the dashboard so that visitors will
# know that more functionality exists and that they need login creds to access them
# BUT we are able to keep things like 'reporters & groups', 'messaging', 'training',
# etc hidden from view
#
# otherwise django auth/permissions would only allow us to have all-or-none
# control of what anonymous users can see.
anon_perms =
# -- BACKENDS
#
# In this area you can define configurations for individual backends. The backend
# must be listed under the section [rapidsms] in "backends". If no configuration is
# listed for your backend it will use the default parameters. However, if you wish to
# run two backends of the same type, you MUST define configure them explicitly here.
[http]
host=
port=
[kannel]
host=
port=
kannel_host=
kannel_port=
kannel_username=
kannel_password=
# -- DJANGO
#
# In this area you can define configuration options for django that would usually
# go into your settings.py file. There's no need to make the variables uppercase
# also do not specify strings by surrounding them with the quotes " or '. This
# is automatically taken care of before injecting it into django's core configuration
[django]
#admin_media_prefix=/admin/media/
#ADMIN_MEDIA_PREFIX=/admin/media/
# An example of how you can specify a cache backend. Caching becomes necessary
# when you have views or sections that are expensive to generate. Please read
# http://docs.djangoproject.com/en/dev/topics/cache/
# for more information on how to use the caching capabilities of django.
#
# cache_backend=dummy:///
login_redirect_url=
# Revence thinks this is necessary.
TIME_ZONE=
#[i18n]
# Settings for RapidSMS Internationalization
#
# At minimum, you should define 'default_language' and 'languages'.
# 'languages' specifies the supported languages. It is a comma-
# separated list of tuples where the first list in the tuple
# is the language code and the remainder are associated names/aliases.
# You can optionally specify web_languages and sms_languages
# if you want to support different languages in the web vs sms UI.
# web_languages and sms_languages override languages.
#
#default_language=fr
#languages=(fr,Français),(en,English)
#web_languages=(fr,Français),(en,English,Engrish)
#sms_languages=(fr,Français),(de,German),(en,English)