-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample_config.yaml
44 lines (36 loc) · 1.46 KB
/
sample_config.yaml
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
caches: # Cache destinations section.
default: # Special default cache destination.
# If a feed lacks 'cache' reference, it will take 'default' one.
host: "cache.db" # Sqlite database file name
# If 'host' contains any path separator character, a file will be
# looked for starting from the current directory. Otherwise,
# '~/.config/getfeed/' is default. In later releases, relative
# pathes will likely be started from the configuration file
# directory.
my_cache: # Another cache destination.
host: "/home/user/.cache.db"
# Default section contents:
# default:
# host: "cache.db"
# none: # Used to turn caching off
#
drops: # Email destinations section.
default: # Special default email destination.
# If a feed lacks 'drop' destination, it will take 'default' one.
command: "tee -a ~/getfeed.log"
# Default section contents:
# default:
# command: "tee -a ~/getfeed.log" # can be changed in later releases
# none:
# command: "true"
feeds: # Main section describing feeds to proceed.
- url: "http://bash.org.ru/rss/"
headers:
From: "bash.org.ru@ss-comp"
Subject: "[Bash.Org.Ru] {e.title}" # Default is '{e.title}'
body: "{e.summary}" # This is default
- url: "http://ithappens.ru/rss/" # Fetch only
cache: "none"
drop: "none"
- url: "http://zadolba.li/rss/" # Fetch and cache, but do not pipe.
drop: "none"