File: r2e.1

package info (click to toggle)
rss2email 1%3A3.9-2.1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,520 kB
  • ctags: 405
  • sloc: python: 2,008; makefile: 5
file content (311 lines) | stat: -rw-r--r-- 9,946 bytes parent folder | download | duplicates (3)
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
.TH R2E 1
.SH NAME
r2e \- receive RSS feeds by email
.SH SYNOPSIS
.B r2e [options] <command> [<args>]
.SH DESCRIPTION
.BR r2e
is a simple program which you can run in your crontab.
It watches RSS feeds and sends you nicely formatted email message
for each new item.
.P
For a quick start with \fBr2e\fR, try these steps:
.P
.RS 4
.nf
.BI "r2e new " "your@yourdomain.com"
.BI "r2e add " "feedname http://feed.url/somewhere.rss"
.BI "r2e run"
.RE
.P
The last command should eventually be put into your crontab, if you
want things be sent you automatically.
.SH OPTIONS
.TP 4
\-\-help
Print the rss2email help and exit.
.TP
\-v, \-\-version
Print the rss2email version and exit.
.TP
\-c, \-\-config \fI<path>\fR
The program configuration is read from $XDG_CONFIG_HOME/rss2mail.cfg
by default (see also FILES and ENVIRONMENT VARIABLES below).  Use this
option to set a different configuration file.
.TP
\-d, \-\-data \fI<path>\fR
Dynamic program data is read from $XDG_DATA_HOME/rss2mail\&.json by
default (see also FILES and ENVIRONMENT VARIABLES below).  Use this
option to set a different data file.
.TP
\-V, \-\-verbose
Increment the logging verbosity.
.SH COMMANDS
.TP 4
.B new [\fI<email>\fR]
Create a new feed database. If the \fI<email>\fR argument is given, it
sets the default email address that mails are sent to.
.TP
.B email [\fI<email>\fR]
Update the default target email address to \fI<email>\fR.
.TP
.B add \fI<name>\fR \fI<url>\fR [\fI<email>\fR]
Subscribe to a feed. The \fI<name>\fR argument gives the feed a name
for future manipulation. \fI<url>\fR is the URL of the feed.  The
optional \fI<email>\fR argument is the email address to send new items
to, overriding the default address for this particular feed.  Repeat
for each feed you want to subscribe to.
.TP
.B run [\-\-no-send] [\fI<index>\fR [\fI<index>\fR ...]]
Scan the feeds and send emails for new items. This can be run in a cron
job.
.P
.RS 4
The \-\-no-send option stops \fBr2e\fR from sending any email. This can be
useful the first time you run it, as otherwise it would send an email
for every available feed entry.
.P
If an \fI<index>\fR is specified, \fBr2e\fR will only download that
feed. \fI<index>\fR can be either the feed name (as set by \fBadd\fR)
or the feed index (as shown by \fBlist\fR).
.RE
.TP
.B list
List all the feeds in the database.
.TP
.B pause [\fI<index>\fR [\fI<index>\fR ...]]
Pause feeds (disable fetching).  The \fI<index>\fR option selects the
feed(s) to pause (see \fBrun\fR for possible values).  If no
\fI<index>\fR is given, all feeds are paused.
.TP
.B unpause [\fI<index>\fR [\fI<index>\fR ...]]
Unpause feeds (enable fetching).
.TP
.B delete \fI<index>\fR [\fI<index>\fR [\fI<index>\fR ...]]
Remove a feed (or feeds) from the database.  The \fI<index>\fR option
selects the feed(s) to delete (see \fBrun\fR for possible values).
.TP
.B reset [\fI<index>\fR [\fI<index>\fR ...]]
Forget dynamic feed data (e.g. to re-send old entries).  The
\fI<index>\fR option selects the feed(s) to reset (see \fBrun\fR for
possible values).  If no \fI<index>\fR is given, all feeds are reset.
.TP
.B opmlimport [\fI<path>\fR]
Import new feeds from OPML.  \fI<path>\fR is the file from which the
OPML data will be read.  If \fI<path>\fR is not given \fBr2e\fR reads
the data from stdin.
.TP
.B opmlexport [\fI<path>\fR]
Export all feeds to OPML.  \fI<path>\fR is the file to which the OPML
data will be written.  If \fI<path>\fR is not given \fBr2e\fR writes
the data to stdout.
.SH "CONFIGURATION"
The program's behavior can be controlled via the
$XDG_CONFIG_HOME/rss2email.cfg (see also FILES and ENVIRONMENT
VARIABLES below). The file format is similar to a Microsoft Windows
INI file.  It is parsed by Python's ConfigParser class, so see the
Python documentation at
http://docs\&.python\&.org/3/library/configparser\&.html for format
details.
.P
The config file stores general configuration (applied to all feeds) in
the \fB[DEFAULT]\fR section.  The \fBnew\fR command will create a
configuration file for you, which you can edit as you see fit.  The
\fBadd\fR command will add feed-specific sections.  To override any a
setting for all feeds, change the value in the \fB[DEFAULT]\fR
section.  To override a setting for a particular feed, add that
setting to the feed-specific section.  Here is an example overriding
\fBuse-publisher-email\fR and \fBname-format\fR for the
\fBfeedname\fR feed.
.P
.RS 4
.nf
[DEFAULT]
from = user@rss2email.invalid
force-from = False
use-publisher-email = False
name-format = {feed-title}: {author}
  .\|.\|.
verbose = warning

[feed.feedname]
url = http://feed.url/somewhere.rss
use-publisher-email = True
name-format = {author} ({feed.title})
.RE
.P
You can configure the following items:
.SS Addressing
.RS
.IP from
The email address messages are from by default
.IP use-8bit
Transfer-Encoding. For local mailing it is safe and
convient to use 8bit.
.IP force-from
True: Only use the 'from' address.
False: Use the email address specified by the feed, when possible.
.IP use-publisher-email
True: Use the publisher's email if you can't find the author's.
False: Just use the 'from' email instead.
.IP name-format
If empty, only use the feed email address rather than
friendly name plus email address.  Available attributes may
include 'feed', 'feed-title', 'author', and 'publisher', but
only 'feed' is guaranteed.
.IP to
Set this to default To email addresses.
.RE
.SS Fetching
.RS
.IP proxy
Set an HTTP proxy (e.g. 'http://your.proxy.here:8080/')
.IP feed-timeout
Set the timeout (in seconds) for feed server response
.RE
.SS Processing
.RS
.IP active
True: Fetch, process, and email feeds.
False: Don't fetch, process, or email feeds
.IP digest
True: Send a single, multi-entry email per feed per rss2email run.
False: Send a single email per entry.
.IP date-header
True: Generate Date header based on item's date, when possible.
False: Generate Date header based on time sent.
.IP date-header-order
A comma-delimited list of some combination of
('issued', 'created', 'modified', 'expired')
expressing ordered list of preference in dates
to use for the Date header of the email.
.IP bonus-header
Set this to add bonus headers to all emails
Example: bonus-header = 'Approved: joe@bob.org'
.IP trust-guid
True: Receive one email per post.
False: Receive an email every time a post changes.
.IP trust-link
True: Receive one email per unique link url.
False: Defer to trust-guid preference.
Toggling this for existing feeds may result in duplicates,
because the old entries will not be recorded under their new
link-based ids.
.IP encodings
To most correctly encode emails with international
characters, we iterate through the list below and use the
first character set that works.
.IP post-process
User processing hooks.  Note the space after the module name.
Example: post-process = 'rss2email.post_process.downcase downcase_message'
.IP digest-post-process
User processing hooks for digest messages.  If 'digest' is
enabled, the usual 'post-process' hook gets to massage the
per-entry messages, but this hook is called with the full
digest message before it is mailed.
Example: digest-post-process = 'rss2email.post_process.downcase downcase_message'
.RE
.SS HTML conversion
.RS
.IP html-mail
True: Send text/html messages when possible.
False: Convert HTML to plain text.
.IP use-css
Use CSS
.IP css
Optional CSS styling
.RE
.SS html2text options
.RS
.IP unicode-snob
Use Unicode characters instead of their ascii psuedo-replacements
.IP links-after-each-paragraph
Put the links after each paragraph instead of at the end.
.IP body-width
Wrap long lines at position. 0 for no wrapping.
.RE
.SS Mailing
.RS
.IP email-protocol
Select protocol from: sendmail, smtp, imap
.IP sendmail
Path to sendmail (or compatible)
.RE
.SS SMTP configuration
.RS
.IP smtp-auth
Set to True to use SMTP AUTH
.IP smtp-username
username for SMTP AUTH
.IP smtp-password
password for SMTP AUTH
.IP smtp-server
SMTP server
.IP smtp-ssl
Connect to the SMTP server using SSL
.IP smtp-ssl-protocol
TLS/SSL version to use on STARTTLS when not using 'smtp-ssl'.
.RE
.SS IMAP configuration
.RS
.IP imap-auth
set to True to use IMAP auth.

.IP imap-username
username for IMAP authentication
.IP imap-password
password for IMAP authentication
.IP imap-server
IMAP server
.IP imap-port
IMAP port
.IP imap-ssl
connect to the IMAP server using SSL
.IP imap-mailbox
where we should store new messages
.RE
.SS Miscellaneous
.RS
.IP verbose
Verbosity (one of 'error', 'warning', 'info', or 'debug').
.RE
.P
.SH FILES
.TP 4
.B $XDG_CONFIG_HOME/rss2email.cfg
If this file exists, it it read to configure the program.
.TP
.B $XDG_DATA_HOME/rss2email\&.json
The database of feeds. Use \fBr2e\fR to add, remove, or modify feeds,
do not edit it directly.
.SH "ENVIRONMENT VARIABLES"
The environment variables used by \fBr2e\fR are all defined in the XDG
Base Directory Specification, which aims to standardize locations for
user-specific configuration and data files.
.TP 4
.B XDG_CONFIG_HOME
The preferred directory for configuration files.  Defaults to
$HOME/\&.config.
.TP
.B XDG_DATA_HOME
The preferred directory for data files.  Defaults to
$HOME/\&.local/share.
.TP
.B XDG_CONFIG_DIRS
A colon ':' separated, preference ordered list of base directories for
configuration files in addition to $XDG_CONFIG_HOME.  Defaults to
/etc/xdg.  If multiple configuration files are found in this path,
they will all be read by the ConfigParser class (see also
CONFIGURATION above).
.TP
.B XDG_DATA_DIRS
A colon ':' separated, preference ordered list of base directories for
data files.  Defaults to /usr/local/share/:/usr/share/.  Only the
first matching file is used.
.B 
.SH AUTHORS
rss2email was started by Aaron Swartz, and is currently maintained by
W. Trevor King.  For a more complete list of contributors, see the
__contributors__ list in rss2email/__init__\&.py.
.SH "REPORTING BUGS"
Report bugs to the mailing list (see the README for details).