-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitmek-rcv_config.example.php
More file actions
48 lines (45 loc) · 933 Bytes
/
gitmek-rcv_config.example.php
File metadata and controls
48 lines (45 loc) · 933 Bytes
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
<?php
$logfile = "/var/tmp/gitmek-rcv.log";
$maxcommits = 10;
/* Send config */
$sendto = array(
GITHUB_T => array(
/* SteamDB */
"SteamDatabase/SteamLinux" => array(
"irc://chat.freenode.net/#steamlug",
),
"SteamDatabase/*" => array(
"irc://chat.freenode.net/#steamdb",
),
/* Personal */
"meklu/mekoverlay" => array(
"irc://chat.freenode.net/meklu,isnick",
),
),
BITBUCKET_T => array(
),
);
/* Global display config */
$config = array(
"color" => false,
"shorten" => false,
"notime" => false,
"striporg" => false,
"filesummary" => false,
"commitmsglen" => 120,
);
/* Channel-specific configuration overrides */
$targetconfig = array(
"irc://chat.freenode.net/#steamdb" => array(
"color" => true,
"shorten" => true,
"notime" => true,
"striporg" => true,
),
"irc://chat.freenode.net/meklu,isnick" => array(
"color" => true,
"filesummary" => true,
"commitmsglen" => 50,
),
);
?>