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
|
{
"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": "pyosd",
"osd_timeout": 6,
"pyosd_font": "-adobe-courier-bold-o-normal--24-240-75-75-m-150-iso8859-1",
"pyosd_vertical_offset": 120,
"pyosd_horizontal_offset": 30,
"pyosd_align": "left",
"pyosd_position": "top",
"pyosd_color": "blue"
},
{
"name": "instance3",
"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": ["Freenode.#python",
"Exile.#test",
"Freenode.#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
}
|