-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRSSReader.config
56 lines (49 loc) · 1.63 KB
/
RSSReader.config
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
our (%CFG);
%CFG = (
'run' => 'true',
'minutesinscope' => 90,
'execintervalseconds' => 30,
'log' => {
'file' => './RSSReader.log',
'level' => 1,
},
'feeds' => {
'feed1' => {
'source' => 'NZZ',
'url' => 'https://www.nzz.ch/startseite.rss',
'timezone' => 'UTC', #Sat, 17 Nov 2018 17:00:00 +0100
'priority' => 4,
'skip' => {
'NZZ News – Aktuelle Nachrichten - Neue Zürcher Zeitung' => 1
},
},
'feed2' => {
'source' => 'CNN',
'url' => 'http://rss.cnn.com/rss/edition.rss',
'timezone' => 'GMT', #Sat, 17 Nov 2018 18:52:21 GMT
'priority' => 1,
'skip' => {
'CNN.com - RSS Channel - App International Edition' => 1
},
},
'feed3' => {
'source' => 'Reuters',
'url' => 'http://feeds.reuters.com/reuters/topNews',
'timezone' => 'UTC', #Sat, 17 Nov 2018 17:00:00 -0500
'priority' => 2,
'skip' => {
'Reuters: Top News' => 1,
'Reuters News' => 1
},
},
'feed4' => {
'source' => 'BBC',
'url' => 'http://feeds.bbci.co.uk/news/world/rss.xml',
'timezone' => 'GMT', #Sat, 17 Nov 2018 17:57:40 GMT
'priority' => 3,
'skip' => {
'BBC News - World' => 1
},
},
}
);