r2e.1: Fix 'massage' -> 'message' typo
[rss2email.git] / CHANGELOG
1 v3.10 (unreleased)
2     * Add a manually extracted list of config options to r2e.1.
3
4 v3.9 (2014-09-01)
5     * Catch and error out if a user adds a feed with a duplicate name.
6     * Split sender into both sendmail's -F and -f.
7     * Fix an error with SMTPConnectionError inheritance order ("does not take keyword arguments").
8     * Add a new `smtp-ssl-protocol` setting, to select acceptable protocols for SMTP connections.
9     * Fix non-compliant User-Agent header for HTTP/1.1.
10     * Fix an error in the NoToEmailAddress invocation.
11     * Add a new `trust-link` setting, to prefer the `link` attribute over the `id` attribute for identifying entries.
12
13 v3.8 (2014-01-18)
14     * Sluggify feed names on opmlimport.
15     * Allow Unicode letters and digits in feed names, instead of just ASCII lettters and digits.
16
17 v3.7 (2013-10-11)
18     * Fix fallback for titles that contain malformed HTML.
19     * Fix atomic saves to avoid garbling config and data files if the disk is full.
20     * Convert the `friendly-name` boolean to the new `name-format` setting.  This allow users to customize how the friendly name is constructed.
21     * Demote guessed encodings logs from 'error' to 'warning'.
22
23 v3.6 (2013-09-09)
24     * Fix missing port argument for IMAPAuthenticationError.
25     * Fix `<div id="entry>` syntax error in HTML mail.
26
27 v3.5 (2013-06-05)
28     * Added digest generation and post-processing hooks.
29     * Fix html2text configuration (ignored since 2012-10-04).
30     * Fix opmlexport crash due to orphaned feed data.
31     * Use feed names in OPML 'text' attributes.
32
33 v3.4 (2013-05-14)
34     * Added post-processing hooks for user-specified message manipulation.
35     * Added settings for IMAP delivery.  The old `use-smtp` boolean has been replaced by a new `email-protocol` setting.  Non-IMAP users should adjust their configuration to set `email-protocol` to either `sendmail` or `smtp`.
36
37 v3.3 (2013-04-13)
38     * Fix SMTP message submission logic.
39     * Fix error inheritence (super() calls).
40     * Convert html2text parsing errors to `ProcessingError`s.
41     * Cleanup html2text error handling.
42     * Drop Google Reader rel-via manipulation.
43     * Drop the wrapping <table> elements from HTML mail
44
45 v3.2 (2013-03-13)
46     * Use extended interpolation in configuration files, to allow percent signs (%).
47     * Added .as_string() fallback to email flattening (only used if `use-smtp = False` and `use-8bit = True`).
48     * Added sendmail configuration option.  Change this if you want to use an alternative, sendmail-compatible mailer.
49
50 v3.1 (2013-02-14)
51     * Import __url__, __author__, and __email__ in rss2email.error, which fixes bugs in formatting a number of errors.
52
53 v3.0 (2013-02-13)
54     * Changed project email (rss2email@tremily.us) and homepage (http://github.com/wking/rss2email).
55     * Split static configuration parameters into a ConfigParser-read config file (rss2email.cfg).  Data that depends on the feed state is recorded using JSON (rss2email.json).
56     * Use the XDG Base Directory Specification for standardized configuration and data file locations.
57     * Converted the command line interface to argparse, with some restructuring along the way.
58     * Added the r2e.1 man page (based on one from the Debian package).
59     * Added setup.py and a PyPI page for simpler installation (http://pypi.python.org/pypi/rss2email).
60     * Added Message-ID headers to outgoing email.
61     * Added a test suite.
62     * Upgraded to Python 3.2 to take advantage of cleaner Unicode handling and argparse.
63     * Require Signed-off-by lines in new commit messages, following the Linux and Git projects.
64
65 v2.71 (2011-03-04)
66     * Upgraded to feedparser v5.01! (http://code.google.com/p/feedparser/)
67     * Upgrade to html2text v3.01! (https://github.com/aaronsw/html2text)
68     * Potentialy safer method for writing feeds.dat on UNIX
69     * Handle via links with no title attribute
70     * Handle attributes more cleanly with OVERRIDE_EMAIL and DEFAULT_EMAIL
71
72 v2.70 (2010-12-21)
73     * Improved handling of given feed email addresses to prevent mail servers rejecting poorly formed Froms
74     * Added X-RSS-TAGS header that lists any tags provided by an entry, which will be helpful in filtering incoming messages
75
76 v2.69 (2010-11-12)
77     * Added support for connecting to SMTP server via SSL, see SMTP_SSL option
78     * Improved backwards compatibility by fixing issue with listing feeds when run with older Python versions
79     * Added selective feed email overrides through OVERRIDE_EMAIL and DEFAULT_EMAIL options
80     * Added NO_FRIENDLY_NAME to from from address only without the friendly name
81     * Added X-RSS-URL header in each message with the link to the original item
82
83 v2.68 (2010-10-01)
84     * Added ability to pause/resume checking of individual feeds through pause and unpause commands
85     * Added ability to import and export OPML feed lists through importopml and exportopml commands
86
87 v2.67 (2010-09-21)
88     * Fixed entries that include an id which is blank (i.e., an empty string) were being resent
89     * Fixed some entries not being sent by email because they had bad From headers
90     * Fixed From headers with HTML entities encoded twice
91     * Compatibility changes to support most recent development versions of feedparser
92     * Compatibility changes to support Google Reader feeds
93
94 v2.66 (2009-12-21)
95     * Complete packaging of all necessary source files (rss2email, html2text, feedparser, r2e, etc.) into one bundle
96         o Included a more complete config.py with all options
97         o Default to HTML mail and CSS results
98     * Added 'reset' command to erase history of already seen entries
99     * Changed project email to 'lindsey@allthingsrss.com' and project homepage to 'http://www.allthingsrss.com/rss2email/'
100     * Made exception and error output text more useful
101     * Added X-RSS-Feed and X-RSS-ID headers to each email for easier filtering
102     * Improved enclosure handling
103     * Fixed MacOS compatibility issues
104
105 v2.65 (2009-01-05)
106     * Fixed warnings caused by Python v2.6 (using hashlib, removing mimify, etc.)
107     * Deprecated QP_REQUIRED option as this is more than likely no longer needed and part of what triggered Python warnings
108     * Fixed unicode errors in certain post headers
109     * Attempted to incorporate Debian/Ubuntu patches into the mainstream release
110     * Support img type enclosures
111     * No file locking for SunOS
112
113 v2.64 (2008-10-21)
114     * Bug-fix version
115         o Gracefully handle missing charsets
116         o Friendlier and more useful message if sendmail isn't installed
117         o SunOS locking fix
118
119 v2.63 (2008-06-13)
120     * Bug-fix version and license change:
121         o Licensed under GPL 2 & 3 now
122         o Display feed number in warning and error message lines
123         o Fix for unicode handling problem with certain entry titles
124
125 v2.62 (2008-01-14)
126     * Bug-fix version:
127         o Simplified SunOS fix
128         o Local feeds (/home/user/file.xml) should work
129
130 v2.61 (2007-12-07)
131     * Bug-fix version:
132         o Now really compatible with SunOS
133         o Don't wrap long subject headers
134         o New parameter CHARSET_LIST to override or supplement the order in which charsets are tried against an entry
135         o Don't use blank content to generate id
136         o Using GMail as mail server should work
137
138 v2.60 (2006-08-25)
139     * Small bug-fix version:
140         o Now compatible with SunOS
141         o Correctly handle international character sets in email From
142
143 v2.59 (2006-06-09)
144     * Finally added oft-requested support for enclosures. Any enclosures, such as a podcast MP3, will be listed under the entry URL
145     * Made feed timeout compatible with Python versions 2.2 and higher, instead of v2.4 only
146     * Added optional, configurable CSS styling to HTML mail. Set USE_CSS_STYLING=1 in your config.py to enable this. If you want to tweak the look, modify STYLE_SHEET.
147     * Improved empty feed checking
148     * Improved invalid feed messages
149     * Unfortunately, rss2email is no longer compatible with Python v2.1. Two of the most serious lingering issues with rss2email were waiting forever for non-responsive feeds and its inablility to properly handle feeds with international characters. To properly fix these once and for all, rss2email now depends on functionality that was not available until Python v2.2. Hopefully this does not unduly inconvenience anyone that has not yet upgraded to a more current version of Python.
150
151 v2.58 (2006-05-11)
152     * Total rewrite of email code that should fix encoding problems
153     * Added configurable timeout for nonresponsive feeds
154     * Fixed incorrectly using text summary_detail instead of html content
155     * Fixed bug with deleting feed 0 if no default email was set
156     * Print name of feed that is being deleted
157
158 v2.57 (2006-04-07)
159     * Integrated Joey Hess's patches
160        o First, a patch that makes delete more reliable, so it no longer allows you to remove the default email address ('feed' 0) and thereby hose your feed file, or 'remove' entries that don't exist without warning; and so it only says IDs have changed when they really have. Originally from http://bugs.debian.org/313101
161        o Next a patch that avoids a backtrace if there's no email address defined, and outputs a less scary error message.
162        o Next, a simple change to the usage; since the "email" subcommand always needs a parameter, don't mark it as optional.
163        o And, avoid a backtrace if the email subcommand does get run w/o a parameter.
164        o And also avoid backtraces if delete is run w/o a parameter. Also adds support for --help.
165        o Simple change, make a comment match reality (/usr/sbin/sendmail)
166        o This avoids another backtrace, this time if there's no feed file yet. [load()]
167        o Add a handler for the AttributeError exception, which feedparser can throw. Beats crashing..
168        o Next, four hunks that make it more robust if no default email address is set and feeds are added w/o an email address. This patch originally comes from http://bugs.debian.org/310485 which has some examples.
169        o Finally, this works around a bug in mimify that causes it to add a newline to the subject header if it contains very long words. Details at http://bugs.debian.org/320185. Note that Tatsuya Kinoshita has a larger patch torard the end of that bug report that deals with some other problems in this area, Aaron has seen that patch before and said it "looks pretty reasonable".
170     * add() catches error case on first feed add and no email address is set
171     * Made "emailaddress" consistent param label throughout
172     * Error message improvements
173     * Deleted problematic "if title" line
174     * Deleted space in front of SMTP_USER
175     * Only logs into SMTP server once
176     * Added exception handling around SMTP server connect and login attempt
177     * Broke contributors across multiple lines
178
179 v2.56 (2006-04-04)
180     * SMTP AUTH support added
181     * Windows support
182     * Fixed bug with HTML in titles