email: Pass 'config' and 'section' through from send() to *_send()
[rss2email.git] / CHANGELOG
1 v3.4 (unreleased)
2     * Added post-processing hooks for user-specified message manipulation.
3     * 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`.
4
5 v3.3 (2013-04-13)
6     * Fix SMTP message submission logic.
7     * Fix error inheritence (super() calls).
8     * Convert html2text parsing errors to `ProcessingError`s.
9     * Cleanup html2text error handling.
10     * Drop Google Reader rel-via manipulation.
11     * Drop the wrapping <table> elements from HTML mail
12
13 v3.2 (2013-03-13)
14     * Use extended interpolation in configuration files, to allow percent signs (%).
15     * Added .as_string() fallback to email flattening (only used if `use-smtp = False` and `use-8bit = True`).
16     * Added sendmail configuration option.  Change this if you want to use an alternative, sendmail-compatible mailer.
17
18 v3.1 (2013-02-14)
19     * Import __url__, __author__, and __email__ in rss2email.error, which fixes bugs in formatting a number of errors.
20
21 v3.0 (2013-02-13)
22     * Changed project email (rss2email@tremily.us) and homepage (http://github.com/wking/rss2email).
23     * 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).
24     * Use the XDG Base Directory Specification for standardized configuration and data file locations.
25     * Converted the command line interface to argparse, with some restructuring along the way.
26     * Added the r2e.1 man page (based on one from the Debian package).
27     * Added setup.py and a PyPI page for simpler installation (http://pypi.python.org/pypi/rss2email).
28     * Added Message-ID headers to outgoing email.
29     * Added a test suite.
30     * Upgraded to Python 3.2 to take advantage of cleaner Unicode handling and argparse.
31     * Require Signed-off-by lines in new commit messages, following the Linux and Git projects.
32
33 v2.71 (2011-03-04)
34     * Upgraded to feedparser v5.01! (http://code.google.com/p/feedparser/)
35     * Upgrade to html2text v3.01! (https://github.com/aaronsw/html2text)
36     * Potentialy safer method for writing feeds.dat on UNIX
37     * Handle via links with no title attribute
38     * Handle attributes more cleanly with OVERRIDE_EMAIL and DEFAULT_EMAIL
39
40 v2.70 (2010-12-21)
41     * Improved handling of given feed email addresses to prevent mail servers rejecting poorly formed Froms
42     * Added X-RSS-TAGS header that lists any tags provided by an entry, which will be helpful in filtering incoming messages
43
44 v2.69 (2010-11-12)
45     * Added support for connecting to SMTP server via SSL, see SMTP_SSL option
46     * Improved backwards compatibility by fixing issue with listing feeds when run with older Python versions
47     * Added selective feed email overrides through OVERRIDE_EMAIL and DEFAULT_EMAIL options
48     * Added NO_FRIENDLY_NAME to from from address only without the friendly name
49     * Added X-RSS-URL header in each message with the link to the original item
50
51 v2.68 (2010-10-01)
52     * Added ability to pause/resume checking of individual feeds through pause and unpause commands
53     * Added ability to import and export OPML feed lists through importopml and exportopml commands
54
55 v2.67 (2010-09-21)
56     * Fixed entries that include an id which is blank (i.e., an empty string) were being resent
57     * Fixed some entries not being sent by email because they had bad From headers
58     * Fixed From headers with HTML entities encoded twice
59     * Compatibility changes to support most recent development versions of feedparser
60     * Compatibility changes to support Google Reader feeds
61
62 v2.66 (2009-12-21)
63     * Complete packaging of all necessary source files (rss2email, html2text, feedparser, r2e, etc.) into one bundle
64         o Included a more complete config.py with all options
65         o Default to HTML mail and CSS results
66     * Added 'reset' command to erase history of already seen entries
67     * Changed project email to 'lindsey@allthingsrss.com' and project homepage to 'http://www.allthingsrss.com/rss2email/'
68     * Made exception and error output text more useful
69     * Added X-RSS-Feed and X-RSS-ID headers to each email for easier filtering
70     * Improved enclosure handling
71     * Fixed MacOS compatibility issues
72
73 v2.65 (2009-01-05)
74     * Fixed warnings caused by Python v2.6 (using hashlib, removing mimify, etc.)
75     * Deprecated QP_REQUIRED option as this is more than likely no longer needed and part of what triggered Python warnings
76     * Fixed unicode errors in certain post headers
77     * Attempted to incorporate Debian/Ubuntu patches into the mainstream release
78     * Support img type enclosures
79     * No file locking for SunOS
80
81 v2.64 (2008-10-21)
82     * Bug-fix version
83         o Gracefully handle missing charsets
84         o Friendlier and more useful message if sendmail isn't installed
85         o SunOS locking fix
86
87 v2.63 (2008-06-13)
88     * Bug-fix version and license change:
89         o Licensed under GPL 2 & 3 now
90         o Display feed number in warning and error message lines
91         o Fix for unicode handling problem with certain entry titles
92
93 v2.62 (2008-01-14)
94     * Bug-fix version:
95         o Simplified SunOS fix
96         o Local feeds (/home/user/file.xml) should work
97
98 v2.61 (2007-12-07)
99     * Bug-fix version:
100         o Now really compatible with SunOS
101         o Don't wrap long subject headers
102         o New parameter CHARSET_LIST to override or supplement the order in which charsets are tried against an entry
103         o Don't use blank content to generate id
104         o Using GMail as mail server should work
105
106 v2.60 (2006-08-25)
107     * Small bug-fix version:
108         o Now compatible with SunOS
109         o Correctly handle international character sets in email From
110
111 v2.59 (2006-06-09)
112     * Finally added oft-requested support for enclosures. Any enclosures, such as a podcast MP3, will be listed under the entry URL
113     * Made feed timeout compatible with Python versions 2.2 and higher, instead of v2.4 only
114     * 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.
115     * Improved empty feed checking
116     * Improved invalid feed messages
117     * 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.
118
119 v2.58 (2006-05-11)
120     * Total rewrite of email code that should fix encoding problems
121     * Added configurable timeout for nonresponsive feeds
122     * Fixed incorrectly using text summary_detail instead of html content
123     * Fixed bug with deleting feed 0 if no default email was set
124     * Print name of feed that is being deleted
125
126 v2.57 (2006-04-07)
127     * Integrated Joey Hess's patches
128        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
129        o Next a patch that avoids a backtrace if there's no email address defined, and outputs a less scary error message.
130        o Next, a simple change to the usage; since the "email" subcommand always needs a parameter, don't mark it as optional.
131        o And, avoid a backtrace if the email subcommand does get run w/o a parameter.
132        o And also avoid backtraces if delete is run w/o a parameter. Also adds support for --help.
133        o Simple change, make a comment match reality (/usr/sbin/sendmail)
134        o This avoids another backtrace, this time if there's no feed file yet. [load()]
135        o Add a handler for the AttributeError exception, which feedparser can throw. Beats crashing..
136        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.
137        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".
138     * add() catches error case on first feed add and no email address is set
139     * Made "emailaddress" consistent param label throughout
140     * Error message improvements
141     * Deleted problematic "if title" line
142     * Deleted space in front of SMTP_USER
143     * Only logs into SMTP server once
144     * Added exception handling around SMTP server connect and login attempt
145     * Broke contributors across multiple lines
146
147 v2.56 (2006-04-04)
148     * SMTP AUTH support added
149     * Windows support
150     * Fixed bug with HTML in titles