Hi, I will do delayed NMU with attached diff since you are so quiet.
Osamu
diff -Nru getmail4-4.14.0/debian/changelog getmail4-4.16.0/debian/changelog --- getmail4-4.14.0/debian/changelog 2010-04-29 00:40:39.000000000 +0900 +++ getmail4-4.16.0/debian/changelog 2010-04-29 00:40:39.000000000 +0900 @@ -1,3 +1,18 @@ +getmail4 (4.16.0-0.1) unstable; urgency=low + + * Non-maintainer upload. + * New upstream release + - fixing default port for MultidropIMAPSSLRetriever. + - continuing getmail for IMAP exceptions. Closes: #481380, 443856 + * Fixed watch file not to fetch beta version from 5 series. + * Removed useless debian/getmail4.dirs. + * Bumped to "Standards-Version: 3.8.4". + * Added debian/source/format. + * Fixed lintian build-depends-on-python-dev-with-no-arch-any. + * Fixed lintian possible-documentation-but-no-doc-base-registration + + -- Osamu Aoki <[email protected]> Thu, 29 Apr 2010 00:07:20 +0900 + getmail4 (4.14.0-2) unstable; urgency=low * Updated to versioned build depends on debhelper 7. diff -Nru getmail4-4.14.0/debian/control getmail4-4.16.0/debian/control --- getmail4-4.14.0/debian/control 2010-04-29 00:40:39.000000000 +0900 +++ getmail4-4.16.0/debian/control 2010-04-29 00:40:39.000000000 +0900 @@ -2,9 +2,9 @@ Section: mail Priority: optional Maintainer: Fredrik Steen <[email protected]> -Build-Depends-Indep: python-all-dev +Build-Depends-Indep: python Build-Depends: debhelper (>= 7), cdbs (>= 0.4.41), python-support (>= 0.3) -Standards-Version: 3.8.3 +Standards-Version: 3.8.4 Package: getmail4 Architecture: all diff -Nru getmail4-4.14.0/debian/doc-base getmail4-4.16.0/debian/doc-base --- getmail4-4.14.0/debian/doc-base 1970-01-01 09:00:00.000000000 +0900 +++ getmail4-4.16.0/debian/doc-base 2010-04-29 00:40:39.000000000 +0900 @@ -0,0 +1,11 @@ +Document: getmail4 +Title: getmail documentation +Author: Charles Cazabon +Abstract: This is the documentation for getmail version 4. +Section: Network/Communication + +Format: HTML +Index: /usr/share/doc/getmail4/documentation.html +Files: /usr/share/doc/getmail4/*.html + + diff -Nru getmail4-4.14.0/debian/getmail4.dirs getmail4-4.16.0/debian/getmail4.dirs --- getmail4-4.14.0/debian/getmail4.dirs 2009-11-28 23:02:07.000000000 +0900 +++ getmail4-4.16.0/debian/getmail4.dirs 1970-01-01 09:00:00.000000000 +0900 @@ -1,4 +0,0 @@ -usr/bin -usr/share/doc -usr/share/man -usr/share/getmail4 diff -Nru getmail4-4.14.0/debian/source/format getmail4-4.16.0/debian/source/format --- getmail4-4.14.0/debian/source/format 1970-01-01 09:00:00.000000000 +0900 +++ getmail4-4.16.0/debian/source/format 2010-04-29 00:40:39.000000000 +0900 @@ -0,0 +1,2 @@ +1.0 + diff -Nru getmail4-4.14.0/debian/watch getmail4-4.16.0/debian/watch --- getmail4-4.14.0/debian/watch 2009-11-28 23:02:07.000000000 +0900 +++ getmail4-4.16.0/debian/watch 2010-04-29 00:40:39.000000000 +0900 @@ -1,2 +1,2 @@ version=3 -http://pyropus.ca/software/getmail/old-versions/getmail-(.*)\.tar\.gz +http://pyropus.ca/software/getmail/old-versions/getmail-(4\..*)\.tar\.gz diff -Nru getmail4-4.14.0/docs/CHANGELOG getmail4-4.16.0/docs/CHANGELOG --- getmail4-4.14.0/docs/CHANGELOG 2009-11-24 08:08:03.000000000 +0900 +++ getmail4-4.16.0/docs/CHANGELOG 2010-01-06 11:19:44.000000000 +0900 @@ -1,3 +1,13 @@ +Version 4.16.0 +5 January 2010 + -additional fix for IMAP server that offers a message it then fails to return, + to allow getmail to continue with the next message. Thanks: Yaw Anokwa. + +Version 4.15.0 +2 December 2009 + -default port for MultidropIMAPSSLRetriever was incorrect. Thanks: David + Lehn. + Version 4.14.0 23 November 2009 -handle additional cases where IMAP (and for good measure, POP3) server is diff -Nru getmail4-4.14.0/getmailcore/__init__.py getmail4-4.16.0/getmailcore/__init__.py --- getmail4-4.14.0/getmailcore/__init__.py 2009-11-24 08:08:03.000000000 +0900 +++ getmail4-4.16.0/getmailcore/__init__.py 2010-01-06 11:19:44.000000000 +0900 @@ -16,7 +16,7 @@ raise ImportError('getmail version 4 requires Python version 2.3.3' ' or later') -__version__ = '4.14.0' +__version__ = '4.16.0' __all__ = [ 'baseclasses', diff -Nru getmail4-4.14.0/getmailcore/_retrieverbases.py getmail4-4.16.0/getmailcore/_retrieverbases.py --- getmail4-4.14.0/getmailcore/_retrieverbases.py 2009-11-24 08:08:03.000000000 +0900 +++ getmail4-4.16.0/getmailcore/_retrieverbases.py 2010-01-06 11:19:44.000000000 +0900 @@ -860,7 +860,7 @@ + os.linesep) try: response = self._parse_imapuidcmdresponse('FETCH', uid, part) - except imaplib.IMAP4.error, o: + except (imaplib.IMAP4.error, getmailOperationError), o: # server gave a negative/NO response, most likely. Bad server, # no doughnut. raise getmailRetrievalError( diff -Nru getmail4-4.14.0/getmailcore/retrievers.py getmail4-4.16.0/getmailcore/retrievers.py --- getmail4-4.14.0/getmailcore/retrievers.py 2009-11-24 08:02:18.000000000 +0900 +++ getmail4-4.16.0/getmailcore/retrievers.py 2009-12-02 22:18:25.000000000 +0900 @@ -471,7 +471,7 @@ # socket.ssl() and socket timeouts are incompatible in Python 2.3 #ConfInt(name='timeout', required=False, default=180), ConfString(name='server'), - ConfInt(name='port', required=False, default=110), + ConfInt(name='port', required=False, default=imaplib.IMAP4_SSL_PORT), ConfString(name='username'), ConfPassword(name='password', required=False, default=None), ConfTupleOfStrings(name='mailboxes', required=False, diff -Nru getmail4-4.14.0/getmail.spec getmail4-4.16.0/getmail.spec --- getmail4-4.14.0/getmail.spec 2009-11-24 09:52:27.000000000 +0900 +++ getmail4-4.16.0/getmail.spec 2010-01-06 11:20:08.000000000 +0900 @@ -2,7 +2,7 @@ Summary: POP3 mail retriever with reliable Maildir delivery Name: getmail -Version: 4.14.0 +Version: 4.16.0 Release: 1 License: GPL Group: Applications/Internet @@ -52,6 +52,12 @@ %{python_sitelib}/getmailcore/ %changelog +* Tue Jan 05 2010 Charles Cazabon <[email protected]> +-update to version 4.16.0 + +* Wed Dec 02 2009 Charles Cazabon <[email protected]> +-update to version 4.15.0 + * Mon Nov 23 2009 Charles Cazabon <[email protected]> -update to version 4.14.0 diff -Nru getmail4-4.14.0/PKG-INFO getmail4-4.16.0/PKG-INFO --- getmail4-4.14.0/PKG-INFO 2009-11-24 09:52:29.000000000 +0900 +++ getmail4-4.16.0/PKG-INFO 2010-01-06 11:20:10.000000000 +0900 @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: getmail -Version: 4.14.0 +Version: 4.16.0 Summary: a mail retrieval, sorting, and delivering system Home-page: http://pyropus.ca/software/getmail/ Author: Charles Cazabon

