Blame view
config.sample.json
1.24 KB
30ac636c8
|
1 |
{ |
b203521a6
|
2 3 |
"name": "SMS", |
30ac636c8
|
4 5 6 7 8 |
"# messaging_url": "messaging service url", "messaging_url": "http://localhost:32979/", "# listen_port": "HTTP port untuk mendapat perintah dari CORE", "listen_port": 16480, |
f8555c625
|
9 |
"apiserver": { |
30ac636c8
|
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
"# listen_port": "HTTP port untuk mendapat pesan masuk dari modem handler", "listen_port": 16481, "apikey": "PLEASE_CHANGE_ME" }, "number_suffix": "@phonenumber", "modems": { "SMS0": { "url": "http://localhost:2110/sms", "apikey": "PLEASE_CHANGE_ME" } }, "do_not_trim_long_sms": false, |
f53fe083f
|
25 26 27 28 29 30 31 32 33 34 |
"default_modem": "SMS0", "# handler_chooser_algorithm": "algoritma untuk memilih modem dalam mengirim SMS. Pilihan: LAST-SEEN, FORCED. Default: LAST-SEEN", "handler_chooser_algorithm": "LAST-SEEN", "# sending handler": "list modem yang dipakai untuk mengirim jika handler_chooser_algorithm === 'FORCED'", "sending_handler": [ "SMS0", "SMS1" ], |
bf4cb9aaa
|
35 |
"senders_imsi": { |
a21e7a161
|
36 37 |
"prefix_names": { "TELKOMSEL": [ |
a21e7a161
|
38 39 |
], "XL": [ |
a21e7a161
|
40 41 |
] }, |
9b38a77f1
|
42 43 |
"unknown_prefix": [ ], |
a21e7a161
|
44 |
"default": [ |
a21e7a161
|
45 46 |
] }, |
f53fe083f
|
47 48 49 |
"redis": { "host": "127.0.0.1" } |
30ac636c8
|
50 |
} |