[-]
[+]
|
Changed |
getmail.changes
|
|
[-]
[+]
|
Changed |
getmail.spec
^
|
|
[-]
[+]
|
Changed |
getmail-4.41.0.tar.bz2/PKG-INFO
^
|
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: getmail
-Version: 4.40.3
+Version: 4.41.0
Summary: a mail retrieval, sorting, and delivering system
Home-page: http://pyropus.ca/software/getmail/
Author: Charles Cazabon
|
[-]
[+]
|
Changed |
getmail-4.41.0.tar.bz2/docs/CHANGELOG
^
|
@@ -1,3 +1,9 @@
+Version 4.41.0
+26 May 2013
+ -messages retrieved with POP could have a blank trailing line removed when
+ delivered; fixed. Thanks: Christoph Mitterer, Krzysztof Warzecha.
+ -fix an ImportError when IMAP retriever used with getmail under Python 2.4.
+
Version 4.40.3
10 May 2013
-increase system recursion limit when run with Python 2.3, to prevent
|
[-]
[+]
|
Changed |
getmail-4.41.0.tar.bz2/getmail.spec
^
|
@@ -2,7 +2,7 @@
Summary: POP3 mail retriever with reliable Maildir delivery
Name: getmail
-Version: 4.40.3
+Version: 4.41.0
Release: 1
License: GPL
Group: Applications/Internet
@@ -52,6 +52,9 @@
%{python_sitelib}/getmailcore/
%changelog
+* Sun May 26 2013 Charles Cazabon <charlesc-getmail-rpm@pyropus.ca>
+-update to version 4.41.0
+
* Fri May 10 2013 Charles Cazabon <charlesc-getmail-rpm@pyropus.ca>
-update to version 4.40.3
|
[-]
[+]
|
Changed |
getmail-4.41.0.tar.bz2/getmailcore/__init__.py
^
|
@@ -16,7 +16,7 @@
raise ImportError('getmail version 4 requires Python version 2.3.3'
' or later')
-__version__ = '4.40.3'
+__version__ = '4.41.0'
__all__ = [
'baseclasses',
|
[-]
[+]
|
Changed |
getmail-4.41.0.tar.bz2/getmailcore/_retrieverbases.py
^
|
@@ -707,7 +707,7 @@
response, lines, octets = self.conn.retr(msgnum)
self.log.debug('RETR response "%s", %d octets'
% (response, octets) + os.linesep)
- msg = Message(fromlines=lines)
+ msg = Message(fromlines=lines+[''])
return msg
except poplib.error_proto, o:
raise getmailRetrievalError(
|
[-]
[+]
|
Changed |
getmail-4.41.0.tar.bz2/getmailcore/message.py
^
|
@@ -20,8 +20,11 @@
try:
from email.header import Header
except ImportError, o:
- # Python < 2.5
- from email import Header
+ try:
+ from email.Header import Header
+ except ImportError, o:
+ # Python < 2.5
+ from email import Header
from getmailcore.exceptions import *
from getmailcore.utilities import mbox_from_escape, format_header, \
|