This repository has been archived by the owner on Oct 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathexample-config
1424 lines (1299 loc) · 32.3 KB
/
example-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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# Newsbeuter's example config
#
#### always-display-description
#
# If true, then the description will always displayed even if e.g.
# a content:encoded tag has been found.
#
# Syntax: [true/false]
#
# Default value: false
#
# always-display-description true
#### always-download
#
# The parameters of this configuration command are one or more RSS URLs. These
# URLs will always get downloaded, regardless of their Last-Modified timestamp
# and ETag header.
#
# Syntax: <rssurl> [<rssurl>]
#
# Default value: n/a
#
# always-download "http://www.n-tv.de/23.rss"
#### article-sort-order
#
# The sortfield specifies which article property shall be used for sorting
# (currently available: date, title, flags, author, link, guid). The optional
# direction specifies the sort direction ("asc" specifies ascending sorting,
# "desc" specifies descending sorting. for date, "desc" is default, for all
# others, "asc" is default).
#
# Syntax: <sortfield>[-<direction>]
#
# Default value: date
#
# article-sort-order author-desc
#### articlelist-format
#
# This variable defines the format of entries in the article list. See the
# respective section in the documentation for more information on format
# strings (note that the semicolon should actually be a vertical bar; this is
# a limitation in AsciiDoc).
#
# Syntax: <format>
#
# Default value: "%4i %f %D %6L %?T?;%-17T; ?%t"
#
# articlelist-format "%4i %f %D %?T?;%-17T; ?%t"
#### articlelist-title-format
#
# Format of the title in article list. See "Format Strings" section of
# Newsbeuter manual for details on available formats.
#
# Syntax: <format>
#
# Default value: "%N %V - Articles in feed '%T' (%u unread, %t total) - %U"
#
# articlelist-title-format "Articles in feed '%T' (%u unread)"
#### auto-reload
#
# If enabled, all feeds will be automatically reloaded at start up and then
# continuously after a certain time has passed (see reload-time).
#
# Syntax: [yes/no]
#
# Default value: no
#
# auto-reload yes
#### bind-key
#
# Bind key <key> to <operation>. This means that whenever <key> is pressed,
# then <operation> is executed (if applicable in the current dialog). A list of
# available operations can be found below. Optionally, you can specify
# a dialog. If you specify one, the key binding will only be added to the
# specified dialog. Available dialogs are "all" (default if none is specified),
# "feedlist", "filebrowser", "help", "articlelist", "article", "tagselection",
# "filterselection", "urlview" and "podbeuter".
#
# Syntax: <key> <operation> [<dialog>]
#
# Default value: n/a
#
# bind-key ^R reload-all
#### bookmark-autopilot
#
# If set to yes, the configured bookmark command is executed without any
# further input asked from user, unless the url or the title cannot be
# found/guessed.
#
# Syntax: [yes/no]
#
# Default value: no
#
# bookmark-autopilot yes
#### bookmark-cmd
#
# If set, then <bookmark-command> will be used as bookmarking plugin. See the
# documentation on bookmarking for further information.
#
# Syntax: <bookmark-command>
#
# Default value: ""
#
# bookmark-cmd "~/bin/delicious-bookmark.sh"
#### bookmark-interactive
#
# If set to yes, then the configured bookmark command is an interactive
# program.
#
# Syntax: [yes/no]
#
# Default value: no
#
# bookmark-interactive yes
#### browser
#
# Set the browser command to use when opening an article in the browser. If
# <browser-command> contains %u, it will be used as complete commandline and %u
# will be replaced with the URL that shall be opened.
#
# Syntax: <browser-command>
#
# Default value: lynx
#
# browser "w3m %u"
#### cache-file
#
# This configuration option sets the cache file. This is especially useful if
# the filesystem of your home directory doesn't support proper locking (e.g.
# NFS).
#
# Syntax: <path>
#
# Default value: "~/.newsbeuter/cache.db"
#
# cache-file "/tmp/testcache.db"
#### cleanup-on-quit
#
# If yes, then the cache gets locked and superfluous feeds and items are
# removed, such as feeds that can't be found in the urls configuration file
# anymore.
#
# Syntax: [yes/no]
#
# Default value: yes
#
# cleanup-on-quit no
#### color
#
# Set the foreground color, background color and optional attributes for
# a certain element
#
# Syntax: <element> <fgcolor> <bgcolor> [<attr> ...]
#
# Default value: n/a
#
# color background white black
#### confirm-exit
#
# If set to yes, then newsbeuter will ask for confirmation whether the user
# really wants to quit newsbeuter.
#
# Syntax: [yes/no]
#
# Default value: no
#
# confirm-exit yes
#### cookie-cache
#
# Set a cookie cache. If set, then cookies will be cached (i.e. read from and
# written to) in this file.
#
# Syntax: <file>
#
# Default value: ""
#
# cookie-cache "~/.newsbeuter/cookies.txt"
#### datetime-format
#
# This format specifies the date/time format in the article list. For
# a detailed documentation on the allowed formats, consult the manpage of
# strftime(3).
#
# Syntax: <date/time format>
#
# Default value: %b %d
#
# datetime-format "%D, %R"
#### define-filter
#
# With this command, you can predefine filters, which you can later select from
# a list, and which are then applied after selection. This is especially useful
# for filters that you need often and you don't want to enter them every time
# you need them.
#
# Syntax: <name> <filter>
#
# Default value: n/a
#
# define-filter "all feeds with 'fun' tag" "tags # \\"fun\\""
#### delete-read-articles-on-quit
#
# If set to "yes", then all read articles will be deleted when you quit
# newsbeuter.
#
# Syntax: [yes/no]
#
# Default value: "no"
#
# delete-read-articles-on-quit yes
#### dialogs-title-format
#
# Format of the title in dialog list. See "Format Strings" section of
# Newsbeuter manual for details on available formats.
#
# Syntax: <format>
#
# Default value: "%N %V - Dialogs"
#
# N %V - Dialogs|dialogs-title-format "Dialogs"
#### display-article-progress
#
# If set to yes, then a read progress (in percent) is displayed in the article
# view. Otherwise, no read progress is displayed.
#
# Syntax: [yes/no]
#
# Default value: yes
#
# display-article-progress no
#### download-full-page
#
# If set to yes, then for all feed items with no content but with a link, the
# link is downloaded and the result used as content instead. This may
# significantly increase the download times of "empty" feeds.
#
# Syntax: [yes/no]
#
# Default value: no
#
# download-full-page yes
#### download-retries
#
# How many times newsbeuter shall try to successfully download a feed before
# giving up. This is an option to improve the success of downloads on slow and
# shaky connections such as via a TOR proxy.
#
# Syntax: <number retries>
#
# Default value: 1
#
# download-retries 4
#### download-timeout
#
# The number of seconds newsbeuter shall wait when downloading a feed before
# giving up. This is an option to improve the success of downloads on slow and
# shaky connections such as via a TOR proxy.
#
# Syntax: <seconds>
#
# Default value: 30
#
# download-timeout 60
#### error-log
#
# If set, then user errors (e.g. errors regarding defunct RSS feeds) will be
# logged to this file.
#
# Syntax: <path>
#
# Default value: ""
#
# error-log "~/.newsbeuter/error.log"
#### external-url-viewer
#
# If set, then "show-urls" will pipe the current article to a specific external
# tool instead of using the internal URL viewer. This can be used to integrate
# tools such as urlview.
#
# Syntax: <command>
#
# Default value: ""
#
# external-url-viewer "urlview"
#### feed-sort-order
#
# If set to "firsttag", the feeds in the feed list will be sorted by their
# first tag in the urls file.
#
# Syntax: <sortorder>
#
# Default value: none
#
# feed-sort-order firsttag
#### feedhq-flag-share
#
# If this is set and FeedHQ support is used, then all articles that are flagged
# with the specified flag are being "shared" in FeedHQ so that people that
# follow you can see it.
#
# Syntax: <flag>
#
# Default value: ""
#
# feedhq-flag-share "a"
#### feedhq-flag-star
#
# If this is set and FeedHQ support is used, then all articles that are flagged
# with the specified flag are being "starred" in FeedHQ and appear in the list
# of "Starred items".
#
# Syntax: <flag>
#
# Default value: ""
#
# feedhq-flag-star "b"
#### feedhq-login
#
# This variable sets your FeedHQ login for FeedHQ support.
#
# Syntax: <login>
#
# Default value: ""
#
# feedhq-login "your-login"
#### feedhq-min-items
#
# This variable sets the number of articles that are loaded from FeedHQ per
# feed.
#
# Syntax: <number>
#
# Default value: 20
#
# feedhq-min-items 100
#### feedhq-password
#
# This variable sets your FeedHQ password for FeedHQ support. Double quotes
# should be escaped, i.e. you should write +{backslash}"+ instead of +"+.
#
# Syntax: <password>
#
# Default value: ""
#
# feedhq-password "here_goesAquote:{backslash}""
#### feedhq-passwordfile
#
# A more secure alternative to the above, by storing your password elsewhere in
# your system.
#
# Syntax: <path-to-file>
#
# Default value: ""
#
# feedhq-passwordfile "path-to-file"
#### feedhq-passwordeval
#
# Another secure alternative, is providing your password from an external
# command that is evaluated during login. This can be used to read your
# password from a gpg encrypted file or your system keyring.
#
# Syntax: <command>
#
# Default value: ""
#
# feedhq-passwordeval "command some-parameter"
#### feedhq-show-special-feeds
#
# If this is set, then "special feeds" like "People you follow" (articles
# shared by people you follow), "Starred items" (your starred articles) and
# "Shared items" (your shared articles) appear in your subscription list.
#
# Syntax: [yes/no]
#
# Default value: yes
#
# feedhq-show-special-feeds "no"
#### feedhq-url
#
# Configures the URL where your FeedHQ instance resides.
#
# Syntax: <url>
#
# Default value: "https://feedhq.org/"
#
# feedhq-url "https://feedhq.example.com/"
#### feedlist-format
#
# This variable defines the format of entries in the feed list. See the
# respective section in the documentation for more information on format
# strings.
#
# Syntax: <format>
#
# Default value: "%4i %n %11u %t"
#
# feedlist-format " %n %4i - %11u -%> %t"
#### feedlist-title-format
#
# Format of the title in feed list. See "Format Strings" section of Newsbeuter
# manual for details on available formats.
#
# Syntax: <format>
#
# Default value: "N %V - Your feeds (%u unread, %t total)%?T? - tag `%T'&?"
#
# feedlist-title-format "Feeds (%u unread, %t total)"
#### filebrowser-title-format
#
# Format of the title in file browser. See "Format Strings" section of
# Newsbeuter manual for details on available formats.
#
# Syntax: <format>
#
# Default value: "%N %V - %?O?Open File&Save File? - %f"
#
# N %V - %?O?Open File&Save File? - %f|filebrowser-title-format "%?O?Open File&Save File? - %f"
#### goto-first-unread
#
# If set to yes (the default), then the first unread article will be selected
# whenever a feed is entered.
#
# Syntax: [yes/no]
#
# Default value: yes
#
# goto-first-unread no
#### goto-next-feed
#
# If set to yes, then the next-unread, prev-unread and random-unread keys will
# search in other feeds for unread articles if all articles in the current feed
# are read. If set to no, then these keys will stop in the current feed.
#
# Syntax: [yes/no]
#
# Default value: yes
#
# goto-next-feed no
#### help-title-format
#
# Format of the title in help window. See "Format Strings" section of
# Newsbeuter manual for details on available formats.
#
# Syntax: <format>
#
# Default value: "%N %V - Help"
#
# N %V - Help|help-title-format "%N %V - Help"
#### highlight
#
# With this command, you can highlight text parts in the feed list, the article
# list and the article view. For a detailed documentation, see the chapter on
# highlighting.
#
# Syntax: <target> <regex> <fgcolor> [<bgcolor> [<attribute> ...]]
#
# Default value: n/a
#
# highlight all "newsbeuter" red
#### highlight-article
#
# With this command, you can highlight articles in the article list if they
# match a filter expression. For a detailed documentation, see the chapter on
# highlighting.
#
# Syntax: <filterexpr> <fgcolor> <bgcolor> [<attribute> ...]
#
# Default value: n/a
#
# highlight-article "author =~ \\"Andreas Krennmair\\"" white red bold
#### history-limit
#
# Defines the maximum number of entries of commandline resp. search history to
# be saved. To disable history saving, set history-limit to 0.
#
# Syntax: <number>
#
# Default value: 100
#
# history-limit 0
#### html-renderer
#
# If set to "internal", then the internal HTML renderer will be used.
# Otherwise, the specified command will be executed, the HTML to be rendered
# will be written to the command's stdin, and the program's output will be
# displayed. This makes it possible to use other, external programs, such as
# w3m, links or lynx, to render HTML.
#
# Syntax: <path>
#
# Default value: internal
#
# html-renderer "w3m -dump -T text/html"
#### http-auth-method
#
# Set HTTP authentication method. Allowed values: any, basic, digest, digest_ie
# (only available with libcurl 7.19.3 and newer), gssnegotiate, ntlm, anysafe.
#
# Syntax: <method>
#
# Default value: any
#
# http-auth-method digest
#### ignore-article
#
# If a downloaded article from <feed> matches <filterexpr>, then it is ignored
# and not presented to the user. This command is further explained in the "kill
# file" section below.
#
# Syntax: <feed> <filterexpr>
#
# Default value: n/a
#
# ignore-article "*" "title =~ \\"Windows\\""
#### ignore-mode
#
# This configuration option defines in what way an article is ignored (see
# ignore-article). If set to "download", then it is ignored in the
# download/parsing phase (which is the default) and thus never written to the
# cache, if it set to "display", it is ignored when displaying articles but is
# kept in the cache.
#
# Syntax: [download/display]
#
# Default value: download
#
# ignore-mode "display"
#### include
#
# With this command, you can include other files to be interpreted as
# configuration files. This is especially useful to separate your configuration
# into several files, e.g. key configuration, color configuration, ...
#
# Syntax: <path>
#
# Default value: n/a
#
# include "~/.newsbeuter/colors"
#### itemview-title-format
#
# Format of the title in article view. See "Format Strings" section of
# Newsbeuter manual for details on available formats.
#
# Syntax: <format>
#
# Default value: "%N %V - Article '%T' (%u unread, %t total)"
#
# N %V - Article '%T' (%u unread, %t total)|itemview-title-format "Article '%T'"
#### keep-articles-days
#
# If set the a number greater than 0, only articles that are were published
# within the last <n> days are kept, and older articles are deleted. If set to
# 0 (default value), this option is not active.
#
# Syntax: <days>
#
# Default value: 0
#
# keep-articles-days 30
#### macro
#
# With this command, you can define a macro key and specify a list of commands
# that shall be executed when the macro prefix and the macro key are pressed.
#
# Syntax: <macro key> <command list>
#
# Default value: n/a
#
# macro k open ; reload ; quit
#### mark-as-read-on-hover
#
# If set to yes, then all articles that get selected in the article list are
# marked as read.
#
# Syntax: [yes/no]
#
# Default value: no
#
# mark-as-read-on-hover yes
#### max-browser-tabs
#
# Set the maximum number of articles to open in a browser when using the
# open-all-unread-in-browser or open-all-unread-in-browser-and-mark-read
# commands.
#
# Syntax: <number>
#
# Default value: 10
#
# max-browser-tabs 4
#### max-download-speed
#
# If set to a number great than 0, the download speed per download is set to
# that limit (in kB).
#
# Syntax: <number>
#
# Default value: 0
#
# max-download-speed 50
#### max-items
#
# Set the number of articles to maximally keep per feed. If the number is set
# to 0, then all articles are kept.
#
# Syntax: <number>
#
# Default value: 0
#
# max-items 100
#### newsblur-login
#
# This variable sets your NewsBlur login for NewsBlur support.
#
# Syntax: <login>
#
# Default value: ""
#
# newsblur-login "your-login"
#### newsblur-min-items
#
# This variable sets the number of articles that are loaded from NewsBlur per
# feed.
#
# Syntax: <number>
#
# Default value: 20
#
# newsblur-min-items 100
#### newsblur-password
#
# This variable sets your NewsBlur password for Newsblur support. Double quotes
# should be escaped, i.e. you should write +{backslash}"+ instead of +"+.
#
# Syntax: <password>
#
# Default value: ""
#
# newsblur-password "here_goesAquote:{backslash}""
#### newsblur-passwordfile
#
# A more secure alternative to the above, by storing your password elsewhere in
# your system.
#
# Syntax: <path-to-file>
#
# Default value: ""
#
# newsblur-passwordfile "path-to-file"
#### newsblur-passwordeval
#
# Another secure alternative, is providing your password from an external
# command that is evaluated during login. This can be used to read your
# password from a gpg encrypted file or your system keyring.
#
# Syntax: <command>
#
# Default value: ""
#
# newsblur-passwordeval "command some-parameter"
#### newsblur-url
#
# Configures the URL where the newsblur instance resides.
#
# Syntax: <url>
#
# Default value: https://newsblur.com
#
# newsblur-url https://localhost
#### notify-always
#
# If no, notifications will only be made when there are new feeds or articles.
# If yes, notifications will be made regardless.
#
# Syntax: [yes/no]
#
# Default value: no
#
# notify-always yes
#### notify-beep
#
# If yes, then the speaker beep on new articles.
#
# Syntax: [yes/no]
#
# Default value: no
#
# notify-beep yes
#### notify-format
#
# Format string that is used for formatting notifications. See the chapter on
# format strings for more information.
#
# Syntax: <string>
#
# Default value: "newsbeuter: finished reload, %f unread feeds (%n unread articles total)"
#
# notify-format "%d new articles (%n unread articles, %f unread feeds)"
#### notify-program
#
# If set, then the configured program will be executed if new articles arrived
# (through a reload) or if notify-always is true. The first parameter of the
# called program contains the notification message.
#
# Syntax: <path>
#
# Default value: ""
#
# notify-program "~/bin/my-notifier"
#### notify-screen
#
# If yes, then a "privacy message" will be sent to the terminal, containing
# a notification message about new articles. This is especially useful if you
# use terminal emulations such as GNU screen which implement privacy messages.
#
# Syntax: [yes/no]
#
# Default value: no
#
# notify-screen yes
#### notify-xterm
#
# If yes, then the xterm window title will be set to a notification message
# about new articles.
#
# Syntax: [yes/no]
#
# Default value: no
#
# notify-xterm yes
#### ocnews-flag-star
#
# If this is set and ownCloud News support is used, then all articles that are
# flagged with the specified flag are being "starred" in ownCloud News.
#
# Syntax: <character>
#
# Default value: ""
#
# ocnews-flag-star "s"
#### ocnews-login
#
# Sets the username to use with the ownCloud instance.
#
# Syntax: <username>
#
# Default value: ""
#
# ocnews-login "user"
#### ocnews-password
#
# Configures the password to use with the ownCloud instance. Double quotes
# should be escaped, i.e. you should write +{backslash}"+ instead of +"+.
#
# Syntax: <password>
#
# Default value: ""
#
# ocnews-password "here_goesAquote:{backslash}""
#### ocnews-passwordfile
#
# A more secure alternative to the above, by storing your password elsewhere in
# your system.
#
# Syntax: <path-to-file>
#
# Default value: ""
#
# ocnews-passwordfile "path-to-file"
#### ocnews-passwordeval
#
# Another secure alternative, is providing your password from an external
# command that is evaluated during login. This can be used to read your
# password from a gpg encrypted file or your system keyring.
#
# Syntax: <command>
#
# Default value: ""
#
# ocnews-passwordeval "command some-parameter"
#### ocnews-url
#
# Configures the URL where the ownCloud instance resides.
#
# Syntax: <url>
#
# Default value: ""
#
# ocnews-url "https://localhost/owncloud"
#### oldreader-flag-share
#
# If this is set and The Old Reader support is used, then all articles that are
# flagged with the specified flag are being "shared" in The Old Reader so that
# people that follow you can see it.
#
# Syntax: <flag>
#
# Default value: ""
#
# oldreader-flag-share "a"
#### oldreader-flag-star
#
# If this is set and The Old Reader support is used, then all articles that are
# flagged with the specified flag are being "starred" in The Old Reader and
# appear in the list of "Starred items".
#
# Syntax: <flag>
#
# Default value: ""
#
# oldreader-flag-star "b"
#### oldreader-login
#
# This variable sets your The Old Reader login for The Older Reader support.
#
# Syntax: <login>
#
# Default value: ""
#
# oldreader-login "your-login"
#### oldreader-min-items
#
# This variable sets the number of articles that are loaded from The Old Reader
# per feed.
#
# Syntax: <number>
#
# Default value: 20
#
# oldreader-min-items 100
#### oldreader-password
#
# This variable sets your The Old Reader password for The Old Reader support.
# Double quotes should be escaped, i.e. you should write +{backslash}"+ instead
# of +"+.
#
# Syntax: <password>
#
# Default value: ""
#
# oldreader-password "here_goesAquote:{backslash}""
#### oldreader-passwordfile
#
# A more secure alternative to the above, by storing your password elsewhere in
# your system.
#
# Syntax: <path-to-file>
#
# Default value: ""
#
# oldreader-passwordfile "path-to-file"
#### oldreader-passwordeval
#
# Another secure alternative, is providing your password from an external
# command that is evaluated during login. This can be used to read your
# password from a gpg encrypted file or your system keyring.
#
# Syntax: <command>
#
# Default value: ""
#
# oldreader-passwordeval "command some-parameter"
#### oldreader-show-special-feeds
#
# If this is set, then "special feeds" like "People you follow" (articles
# shared by people you follow), "Starred items" (your starred articles) and
# "Shared items" (your shared articles) appear in your subscription list.
#
# Syntax: [yes/no]
#
# Default value: yes
#
# oldreader-show-special-feeds "no"
#### openbrowser-and-mark-jumps-to-next-unread
#
# If set to yes, jump to the next unread item when an item is opened in the
# browser and marked as read.
#
# Syntax: [yes/no]
#
# Default value: no
#
# openbrowser-and-mark-jumps-to-next-unread yes
#### opml-url
#
# If the OPML online subscription mode is enabled, then the list of feeds will
# be taken from the OPML file found on this location. Optionally, you can
# specify more than one URL. All the listed OPML URLs will then be taken into
# account when loading the feed list.
#
# Syntax: <url> ...
#
# Default value: ""
#
# opml-url "http://host.domain.tld/blogroll.opml" "http://example.com/anotheropmlfile.opml"
#### pager
#
# If set to "internal", then the internal pager will be used. Otherwise, the
# article to be displayed will be rendered to be a temporary file and then
# displayed with the configured pager. If the pager path is set to an empty
# string, the content of the "PAGER" environment variable will be used. If the
# pager path contains a placeholder "%f", it will be replaced with the
# temporary filename.
#
# Syntax: [<path>/internal]
#
# Default value: internal
#
# less %f
#### podcast-auto-enqueue
#
# If yes, then all podcast URLs that are found in articles are added to the