summaryrefslogtreecommitdiff
path: root/beinc_config_sample.json
blob: e19ac1f811e7f471661829215b7aa4f9f05531ba (plain)
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
{
    "server": {
        "general": {
            "ssl_private_key": "/home/user/.key.pem",
            "ssl_certificate": "/home/user/.cert.pem",
			"ssl_version": "TLSv1_2",
			"ssl_ciphers": "ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384"
        },
        "instances": [
            {
                "name": "instance1",
                "password": "changeme",
                "osd_system": "pynotify",
                "osd_timeout": 5
            },
            {
                "name": "instance2",
                "password": "changeme",
                "osd_system": "none",
                "osd_timeout": 5,
                "queue_size": 4
            }
        ]
    },
    "irc_client": {
        "use_current_buffer": 0,
        "targets": [
            {
                "name": "instance1",
                "target_url": "https://10.0.0.2:9898",
                "target_password": "changeme",
                "target_cert_file": "/home/user/.ca_cert.pem",
                "target_timestamp_format": "%H:%M:%S",
                "ssl_version": "TLSv1_2",
                "ssl_ciphers": "auto",
                "disable-hostname-check": 0,
                "socket_timeout": 2,
                "pm_title_template": "%s @ %S",
                "pm_message_template": "%m",
                "cm_title_template": "%c @ %S",
                "cm_message_template": "%s -> %m",
                "nm_title_template": "%c @ %S",
                "nm_message_template": "%s -> %m",
                "channel_list": ["LiberaChat.#python",
                                 "Exile.#test",
                                 "LiberaChat.#gentoo",
                                 "Exile.#pichove"],
                "nick_list": ["Exile.Blackmore"],
                "channel_messages_policy": 2,
                "private_messages_policy": 1,
                "notifications_policy": 1,
                "debug": 0,
                "enabled": 1
            }
        ]
    },
    "config_version": 2
}