From 801ff62207c4cff3e2f6c0a729dfb03f5c84da7c Mon Sep 17 00:00:00 2001 From: CentOS Buildsys Date: Apr 30 2013 14:15:14 +0000 Subject: import fetchmail-6.3.24-3.el7.src.rpm --- diff --git a/.fetchmail.metadata b/.fetchmail.metadata new file mode 100644 index 0000000..6269121 --- /dev/null +++ b/.fetchmail.metadata @@ -0,0 +1,2 @@ +dff091c04ab64c25f7b6af758f93a75b969117e0 SOURCES/fetchmail-6.3.24.tar.xz.asc +8cb2aa3a85dd307ccd1899ddbb4463e011048535 SOURCES/fetchmail-6.3.24.tar.xz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/fetchmail-6.3.24-data-loss.patch b/SOURCES/fetchmail-6.3.24-data-loss.patch new file mode 100644 index 0000000..a65cfd0 --- /dev/null +++ b/SOURCES/fetchmail-6.3.24-data-loss.patch @@ -0,0 +1,128 @@ +From 21ac960a3e648cd53c155bd2b724f72f0164416f Mon Sep 17 00:00:00 2001 +From: Matthias Andree +Date: Fri, 17 Jun 2011 03:11:39 +0200 +Subject: [PATCH] Fix mimedecode last-line omission. + +The mimedecode feature failed to ship the last line of the body if it +was encoded as quoted-printable and had a MIME soft line break in the +very last line. Reported by Lars Hecking in June 2011. + +Bug introduced on 1998-03-20 when the mimedecode support was added by +ESR before release 4.4.1 through code contributed by Henrik Storner, +in driver.c. + +Workaround for older releases: do not use mimedecode feature. +--- + NEWS | 8 ++++++++ + transact.c | 59 +++++++++++++++++++++++++++++++++++++++++++++-------------- + 2 files changed, 53 insertions(+), 14 deletions(-) + +diff --git a/NEWS b/NEWS +index 26709e4..ac9bc42 100644 +--- a/NEWS ++++ b/NEWS +@@ -156,6 +156,14 @@ fetchmail-6.3.23 (released 2012-12-10, 26106 LoC): + * Clean up logfile vs. syslog handling, and in case logfile overrides + syslog, send a message to the latter stating where logging goes. + ++# BUG FIXES ++* The mimedecode feature failed to ship the last line of the body if it was ++ encoded as quoted-printable and had a MIME soft line break in the very last ++ line. Reported by Lars Hecking in June 2011. ++ Bug introduced on 1998-03-20 when the mimedecode support was added by ESR ++ before release 4.4.1 through code contributed by Henrik Storner. ++ Workaround for older releases: do not use mimedecode feature. ++ + # CHANGES + * The build process can now be made a bit more silent and concise through + ./configure --enable-silent-rules, or by adding "V=0" to the make command. +diff --git a/transact.c b/transact.c +index ec8013a..5449e56 100644 +--- a/transact.c ++++ b/transact.c +@@ -1383,6 +1383,28 @@ process_headers: + return PS_SOCKET; + } + ++/** Convenience function factored out from readbody(): ++ * send buffer \a buf via stuffline() and handle errors and progress. ++ * Store return value in \a *n, and return PS_IOERR for failure or ++ * PS_SUCCESS otherwise. */ ++static int rb_send(struct query *ctl, char *buf, int *n) ++{ ++ *n = stuffline(ctl, buf); ++ ++ if (*n < 0) ++ { ++ report(stdout, GT_("error writing message text\n")); ++ release_sink(ctl); ++ return(PS_IOERR); ++ } ++ else if (want_progress()) ++ { ++ fputc('*', stdout); ++ fflush(stdout); ++ } ++ return PS_SUCCESS; ++} ++ + int readbody(int sock, struct query *ctl, flag forward, int len) + /** read and dispose of a message body presented on \a sock */ + /** \param ctl query control record */ +@@ -1478,7 +1500,7 @@ int readbody(int sock, struct query *ctl, flag forward, int len) + /* ship out the text line */ + if (forward && (!issoftline)) + { +- int n; ++ int n, err; + inbufp = buf; + + /* guard against very long lines */ +@@ -1486,22 +1508,31 @@ int readbody(int sock, struct query *ctl, flag forward, int len) + buf[MSGBUFSIZE+2] = '\n'; + buf[MSGBUFSIZE+3] = '\0'; + +- n = stuffline(ctl, buf); +- +- if (n < 0) +- { +- report(stdout, GT_("error writing message text\n")); +- release_sink(ctl); +- return(PS_IOERR); +- } +- else if (want_progress()) +- { +- fputc('*', stdout); +- fflush(stdout); +- } ++ err = rb_send(ctl, buf, &n); ++ if (err != PS_SUCCESS) ++ return err; + } + } + ++ /* Flush buffer -- bug introduced by ESR on 1998-03-20 before ++ * release 4.4.1 when ESR did not sufficiently audit Henrik ++ * Storner's patch. ++ * Trouble reported in June 2011 by Lars Hecking, with ++ * text/html quoted-printable messages generated by ++ * Outlook/Exchange that got mutilated by fetchmail. ++ */ ++ if (forward && issoftline) ++ { ++ int n; ++ ++ /* force proper line termination */ ++ inbufp[0] = '\r'; ++ inbufp[1] = '\n'; ++ inbufp[2] = '\0'; ++ ++ return rb_send(ctl, buf, &n); ++ } ++ + return(PS_SUCCESS); + } + +-- +1.7.1 + diff --git a/SPECS/fetchmail.spec b/SPECS/fetchmail.spec new file mode 100644 index 0000000..f134ffd --- /dev/null +++ b/SPECS/fetchmail.spec @@ -0,0 +1,609 @@ +%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} + +Summary: A remote mail retrieval and forwarding utility +Name: fetchmail +Version: 6.3.24 +Release: 3%{?dist} +Source0: http://download.berlios.de/fetchmail/fetchmail-%{version}.tar.xz +Source1: http://download.berlios.de/fetchmail/fetchmail-%{version}.tar.xz.asc +URL: http://fetchmail.berlios.de/ +# For a breakdown of the licensing, see COPYING +License: GPL+ and Public Domain +Group: Applications/Internet +BuildRequires: gettext-devel hesiod-devel krb5-devel openssl-devel +# Patch0: already upstream +Patch0: fetchmail-6.3.24-data-loss.patch + +%description +Fetchmail is a remote mail retrieval and forwarding utility intended +for use over on-demand TCP/IP links, like SLIP or PPP connections. +Fetchmail supports every remote-mail protocol currently in use on the +Internet (POP2, POP3, RPOP, APOP, KPOP, all IMAPs, ESMTP ETRN, IPv6, +and IPSEC) for retrieval. Then Fetchmail forwards the mail through +SMTP so you can read it through your favorite mail client. + +Install fetchmail if you need to retrieve mail over SLIP or PPP +connections. + +%prep +%setup -q +%patch0 -p1 -b .data-loss + +%build +%configure --enable-POP3 --enable-IMAP --with-ssl --with-hesiod \ + --enable-ETRN --enable-NTLM --enable-SDPS --enable-RPA \ + --enable-nls --with-kerberos5 --with-gssapi \ + --enable-fallback=no +make + +%install +make install DESTDIR=$RPM_BUILD_ROOT + +# remove fetchmailconf stuff +rm -f $RPM_BUILD_ROOT%{_bindir}/fetchmailconf* +rm -f $RPM_BUILD_ROOT%{_mandir}/man1/fetchmailconf.1* +rm -f $RPM_BUILD_ROOT%{python_sitelib}/fetchmailconf.py* + +%find_lang %name + +%files -f %{name}.lang +%doc COPYING FAQ FEATURES NEWS NOTES README README.SSL TODO +%{_bindir}/fetchmail +%{_mandir}/man1/fetchmail.1* + +%changelog +* Thu Apr 25 2013 Vitezslav Crhonek - 6.3.24-3 +- Fix fetchmail loses last line of message if the non-default "mimedecode" option + is enabled and if that line is not properly terminated + Resolves: #955814 + +* Wed Feb 13 2013 Fedora Release Engineering - 6.3.24-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Mon Jan 07 2013 Vitezslav Crhonek - 6.3.24-1 +- Update to fetchmail-6.3.24 + +* Tue Dec 11 2012 Vitezslav Crhonek - 6.3.23-1 +- Update to fetchmail-6.3.23 + +* Mon Sep 03 2012 Vitezslav Crhonek - 6.3.22-1 +- Update to fetchmail-6.3.22 + +* Mon Aug 27 2012 Vitezslav Crhonek - 6.3.21-5 +- Fix issues found by fedora-review utility in the spec file + +* Thu Jul 19 2012 Fedora Release Engineering - 6.3.21-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Mar 13 2012 Vitezslav Crhonek - 6.3.21-3 +- Remove obsolete fetchmailconf stuff + +* Fri Jan 13 2012 Fedora Release Engineering - 6.3.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Mon Aug 22 2011 Vitezslav Crhonek - 6.3.21-1 +- Update to fetchmail-6.3.21 + Resolves: #732400 + +* Tue Jun 07 2011 Vitezslav Crhonek - 6.3.20-1 +- Update to fetchmail-6.3.20 + +* Thu Jun 02 2011 Vitezslav Crhonek - 6.3.19-5 +- Fix CVE-2011-1947 + +* Mon Mar 07 2011 Vitezslav Crhonek - 6.3.19-4 +- Remove server(smtp) dependency + +* Wed Feb 09 2011 Vitezslav Crhonek - 6.3.19-3 +- Disable /usr/bin/procmail fallback + Resolves: #672452 + +* Tue Feb 08 2011 Fedora Release Engineering - 6.3.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Mon Dec 13 2010 Vitezslav Crhonek - 6.3.19-1 +- Update to fetchmail-6.3.19 + +* Tue Oct 12 2010 Vitezslav Crhonek - 6.3.18-1 +- Update to fetchmail-6.3.18 + +* Thu May 6 2010 Vitezslav Crhonek - 6.3.17-1 +- Update to fetchmail-6.3.17 + +* Wed Apr 7 2010 Vitezslav Crhonek - 6.3.16-1 +- Update to fetchmail-6.3.16 + +* Mon Mar 29 2010 Vitezslav Crhonek - 6.3.15-1 +- Update to fetchmail-6.3.15 + +* Tue Feb 9 2010 Vitezslav Crhonek - 6.3.14-1 +- Update to fetchmail-6.3.14 +- Use xz compressed upstream tarball + +* Tue Nov 3 2009 Vitezslav Crhonek - 6.3.13-1 +- Update to fetchmail-6.3.13 + +* Wed Oct 7 2009 Vitezslav Crhonek - 6.3.12-1 +- Update to fetchmail-6.3.12 + +* Fri Aug 21 2009 Tomas Mraz - 6.3.11-3 +- rebuilt with new openssl + +* Tue Aug 18 2009 Vitezslav Crhonek - 6.3.11-2 +- Regression bug fix for fetchmail 6.3.11 + +* Thu Aug 6 2009 Vitezslav Crhonek - 6.3.11-1 +- Update to fetchmail-6.3.11 +- Remove addrconf patch (upstream now) + +* Fri Jul 24 2009 Fedora Release Engineering - 6.3.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Jun 09 2009 Adam Jackson 6.3.9-4 +- Rebuild to get rid of libkrb4 dependency. + +* Tue Feb 24 2009 Fedora Release Engineering - 6.3.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Fri Jan 16 2009 Tomas Mraz - 6.3.9-2 +- rebuild with new openssl + +* Wed Dec 3 2008 Vitezslav Crhonek - 6.3.9-1 +- Update to fetchmail-6.3.9 + +* Tue Sep 18 2008 Vitezslav Crhonek - 6.3.8-8 +- Rediff all patches to work with patch --fuzz=0 +- Replace server(smtp) requires by procmail + Resolves: #66396 + +* Fri Jun 27 2008 Vitezslav Crhonek - 6.3.8-7 +- Fix CVE-2008-2711 + +* Wed Mar 26 2008 Vitezslav Crhonek - 6.3.8-6 +- Replace smtpdaemon requires by server(smtp) requires + Resolves: #66396 + +* Mon Feb 11 2008 Vitezslav Crhonek - 6.3.8-5 +- Fix Buildroot + +* Wed Dec 5 2007 Vitezslav Crhonek - 6.3.8-4 +- Rebuild + +* Tue Sep 4 2007 Vitezslav Crhonek - 6.3.8-3 +- Fix CVE-2007-4565 + +* Thu Aug 23 2007 Vitezslav Crhonek - 6.3.8-2 +- fix license +- rebuild + +* Mon Jul 2 2007 Vitezslav Crhonek - 6.3.8-1 +- Update to fetchmail-6.3.8 (#246445) + +* Mon Feb 19 2007 Miloslav Trmac - 6.3.7-1 +- Update to fetchmail-6.3.7 + +* Mon Jan 22 2007 Miloslav Trmac - 6.3.6-2 +- Let KPOP use PASS again + Resolves: #223661 + +* Sat Jan 6 2007 Miloslav Trmac - 6.3.6-1 +- Update to fetchmail-6.3.6 (CVE-2006-5867, CVE-2006-5974) + +* Wed Nov 1 2006 Miloslav Trmac - 6.3.5-1 +- Update to fetchmail-6.3.5 +- Fix some rpmlint warnings + +* Sun Sep 24 2006 Miloslav Trmac - 6.3.4-2 +- Don't increase the certificate search path on each poll (#206346) + +* Wed Jul 12 2006 Jesse Keating - 6.3.4-1.1 +- rebuild + +* Mon May 1 2006 Miloslav Trmac - 6.3.4-1 +- Update to fetchmail-6.3.4 + +* Sat Apr 1 2006 Miloslav Trmac - 6.3.3-3 +- Fix fetchmail-6.3.3-resolv.patch + +* Fri Mar 31 2006 Miloslav Trmac - 6.3.3-2 +- Fix some type mismatches on 64-bit architectures +- Fix checking for res_* on architectures with newer glibc ABI + +* Fri Mar 31 2006 Miloslav Trmac - 6.3.3-1 +- Update to fetchmail-6.3.3 + +* Fri Feb 10 2006 Jesse Keating - 6.3.2.1-1.2 +- bump again for double-long bug on ppc(64) + +* Tue Feb 07 2006 Jesse Keating - 6.3.2.1-1.1 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Mon Jan 30 2006 Miloslav Trmac - 6.3.2.1-1 +- Update to fetchmail-6.3.2.1 + +* Mon Jan 23 2006 Miloslav Trmac - 6.3.2-1 +- Update to fetchmail-6.3.2 (CVE-2006-0321) + +* Tue Dec 20 2005 Miloslav Trmac - 6.3.1-1 +- Update to fetchmail-6.3.1 (CVE-2005-4348) + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Fri Dec 2 2005 Miloslav Trmac - 6.3.0-1 +- Update to fetchmail-6.3.0 +- Remove nohesiod and nokerberos conditionals + +* Wed Nov 30 2005 Miloslav Trmac - 6.2.9-0.1.rc10 +- Update to fetchmail-6.2.9-rc10 + +* Wed Nov 9 2005 Miloslav Trmac - 6.2.5.2-2 +- Rebuild with new openssl +- Ship README.SSL, drop html documentation copies + +* Fri Jul 22 2005 Miloslav Trmac - 6.2.5.2-1 +- Update to fetchmail-6.2.5.2 + +* Thu Jul 21 2005 Miloslav Trmac - 6.2.5.1-1 +- Update to fetchmail-6.2.5.1 to fix CAN-2005-2335 (#163819) +- Fix crash on empty Message-ID + +* Mon Jul 18 2005 Karsten Hopp 6.2.5-10 +- Buildrequires gettext-devel for AM_GNU_GETTEXT macro + +* Sat Jun 11 2005 Miloslav Trmac - 6.2.5-9 +- Fix fetchmailconf handling of unspecified server port + +* Tue Jun 7 2005 Miloslav Trmac - 6.2.5-8 +- Fix APOP and RPOP (#127315) +- Don't link to libdl + +* Wed Mar 16 2005 Nalin Dahyabhai 6.2.5-7 +- stop using one of the libkrb5 private functions + +* Thu Sep 30 2004 John Dennis 6.2.5-6 +- fix bug #113492 + after expunge, dovecot hangs fetchmail if new e-mail came in + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Wed May 19 2004 Nalin Dahyabhai 6.2.5-4 +- turn on SDPS (#123599) and RPA + +* Wed May 19 2004 Joe Orton 6.2.5-3 +- pass AI_ADDRCONFIG to getaddrinfo to prevent pointless AAAA lookups + +* Wed Apr 21 2004 Nalin Dahyabhai 6.2.5-2 +- distill out portions of pop3.c which don't affect capa probing + +* Fri Apr 16 2004 Nalin Dahyabhai +- switch to Robert Scheck's fix for capa probing endless loop on pop servers + which don't support capa (#115474) + +* Thu Apr 15 2004 Nalin Dahyabhai +- split the use-correct-service-name and check-for-gssapi-in-pop portions of + gssapi+pop fix into pieces +- only trigger pop capa probe if authentication method != password + +* Mon Mar 15 2004 Nalin Dahyabhai 6.2.5-1 +- update to 6.2.5, per Eric's recommendation + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Mon Feb 2 2004 Nalin Dahyabhai 6.2.0-9 +- add patch to ensure that stuffed warnings always end in cr-lf (#114470) + +* Tue Nov 25 2003 Nalin Dahyabhai +- blah, merge multiple patches for krb5-config things into one + +* Fri Nov 14 2003 Nalin Dahyabhai +- fix gssapi support authenticating to imap, even when connected to pop + +* Thu Nov 13 2003 Nalin Dahyabhai +- munge, munge, munge. kpop build resurrected, at least for now. + +* Fri Oct 10 2003 Nalin Dahyabhai 6.2.0-8 +- add patch to not truncate headers which have been munged to include a + hostname where one didn't exist before (CAN-2003-0792), backport from fix + for 6.2.4 included in 6.2.5 + +* Thu Oct 9 2003 Nalin Dahyabhai +- add patch from Markus Friedl to fix possible buffer underrun (CAN-2003-0790) + +* Tue Sep 23 2003 Florian La Roche +- allow compiling without hesiod + +* Tue Jun 22 2003 Nalin Dahyabhai 6.2.0-6 +- rebuild + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Tue Apr 29 2003 Nalin Dahyabhai +- update URLs + +* Wed Jan 22 2003 Tim Powers 6.2.0-3 +- rebuilt + +* Tue Jan 7 2003 Nalin Dahyabhai 6.2.0-2 +- rebuild + +* Fri Dec 13 2002 Nalin Dahyabhai 6.2.0-1 +- update to 6.2.0 + +* Mon Nov 4 2002 Nalin Dahyabhai 6.1.2-1 +- update to 6.1.2 + +* Fri Oct 4 2002 Nalin Dahyabhai 6.1.0-1 +- add -L/usr/kerberos/%%{_lib} to LDFLAGS so that the Kerberos libraries will + be found again + +* Wed Sep 25 2002 Nalin Dahyabhai +- update to 6.0.0 + +* Fri Jun 21 2002 Tim Powers +- automated rebuild + +* Tue Jun 11 2002 Nalin Dahyabhai 5.9.0-15 +- remove and obsolete the fetchmailconf subpackage (tkinter is gone, so it + can't be run) + +* Mon Jun 3 2002 Nalin Dahyabhai 5.9.0-14 +- require hesiod at build-time + +* Sun May 26 2002 Tim Powers +- automated rebuild + +* Fri May 17 2002 Nalin Dahyabhai 5.9.0-12 +- rebuild in new environment +- require autoconf213 +- enable hesiod support + +* Wed May 1 2002 Nalin Dahyabhai 5.9.0-11 +- rebuild + +* Wed May 1 2002 Nalin Dahyabhai 5.9.0-10 +- reject bogusly large message counts on 64-bit systems, too + +* Wed Mar 27 2002 Nalin Dahyabhai 5.9.0-8 +- configure with --enable-NTLM, not --enable-ntlm, ditto for ETRN, POP3, IMAP + +* Mon Mar 11 2002 Nalin Dahyabhai +- add patch to reject bogusly large message counts, backported from 5.9.10 +- build for RHL 6.2 errata + +* Fri Feb 22 2002 Nalin Dahyabhai 5.9.0-5 +- rebuild + +* Wed Jan 23 2002 Nalin Dahyabhai 5.9.0-4 +- rebuild in new environment + +* Wed Jan 09 2002 Tim Powers 5.9.0-3 +- automated rebuild + +* Tue Nov 13 2001 Nalin Dahyabhai 5.9.0-2 +- remove explicit dependency on krb5-libs + +* Mon Aug 13 2001 Nalin Dahyabhai 5.9.0-1 +- update to 5.9.0 final release + +* Thu Aug 9 2001 Nalin Dahyabhai +- update to 5.8.17, candidate for 5.9.0 + +* Tue Jul 17 2001 Nalin Dahyabhai +- update to 5.8.14 + +* Fri Jul 6 2001 Nalin Dahyabhai +- update to 5.8.12 + +* Mon Jul 2 2001 Nalin Dahyabhai +- update to 5.8.11 + +* Mon Jun 25 2001 Nalin Dahyabhai +- fetchmailconf should depend on tkinter (#42156) + +* Thu Jun 21 2001 Nalin Dahyabhai +- update to 5.8.8 + +* Tue Jun 19 2001 Nalin Dahyabhai +- update to 5.8.7 + +* Tue Jun 12 2001 Nalin Dahyabhai +- update to 5.8.6, which approaches a 5.9.0 + +* Wed May 30 2001 Nalin Dahyabhai +- update to 5.8.5 + +* Tue May 22 2001 Nalin Dahyabhai +- update to 5.8.4 + +* Fri Apr 27 2001 Nalin Dahyabhai +- rebuild in new environment + +* Tue Apr 17 2001 Nalin Dahyabhai +- update to 5.8.1, which includes patches we were using + +* Wed Apr 4 2001 Nalin Dahyabhai +- fix handling of "any" authentication (#32527) +- accept more arguments to --auth +- parse "auth password" correctly in the configuration file + +* Wed Mar 21 2001 Nalin Dahyabhai +- fall back to plain auth if gssapi fails (#32527) + +* Tue Mar 13 2001 Nalin Dahyabhai +- properly handle "nospambounce" in the config file (#31234) + +* Mon Mar 12 2001 Nalin Dahyabhai +- update to 5.7.4, which merges our patches + +* Mon Mar 5 2001 Nalin Dahyabhai +- update to 5.7.2 +- call AC_PROG_MAKE_SET in configure.in +- fix various things which cause it to not compile if gssapi is enabled + +* Fri Mar 2 2001 Nalin Dahyabhai +- rebuild in new environment + +* Fri Feb 23 2001 Trond Eivind Glomsrød +- langify + +* Mon Feb 12 2001 Nalin Dahyabhai +- work around sockets without an sa_len field + +* Fri Feb 9 2001 Nalin Dahyabhai +- fix for exception when adding hosts in fetchmailconf (#26387) + +* Thu Feb 8 2001 Nalin Dahyabhai +- add Todd Sabin's patch for handling untagged responses during CRAM-MD5 auth + +* Mon Jan 15 2001 Nalin Dahyabhai +- enable IPv6 support (#24033) + +* Tue Nov 28 2000 Nalin Dahyabhai +- enable NLS (#21419) + +* Mon Nov 27 2000 Nalin Dahyabhai +- update to 5.6.0 +- revert "untagged" patch, which went upstream + +* Wed Nov 8 2000 Nalin Dahyabhai +- patch to handle untagged responses during IMAP-GSS authentication +- update to 5.5.5 + +* Thu Aug 17 2000 Nalin Dahyabhai +- enable SSL support + +* Sat Aug 12 2000 Nalin Dahyabhai +- update to 5.5.0 +- change Copyright: to License: GPL + +* Tue Aug 8 2000 Nalin Dahyabhai +- back out MDA patch; sendmail started listening by default again + +* Thu Aug 3 2000 Nalin Dahyabhai +- patch to use procmail as an MDA by default +- patch to not run makedepend + +* Wed Jul 12 2000 Prospector +- automatic rebuild + +* Sun Jul 2 2000 Nalin Dahyabhai +- update to 5.4.3 + +* Thu Jun 29 2000 Nalin Dahyabhai +- fix a typo in 5.4.2 + +* Wed Jun 28 2000 Matt Wilson +- fixed configure arguments to not have a continuation at the end of the last + one + +* Tue Jun 27 2000 Nalin Dahyabhai +- update to 5.4.2 + +* Fri Jun 9 2000 Nalin Dahyabhai +- update to 5.4.1 +- FHS fixes, with mandir override +- change fetchmailconf.1 symlink to an include + +* Thu May 25 2000 Nalin Dahyabhai +- fix Kerberos configure patch to work correctly for krb5 1.0, too + +* Fri May 19 2000 Nalin Dahyabhai +- update to 5.4.0 +- rework Kerberos dependencies + +* Fri Apr 21 2000 Nalin Dahyabhai +- update to 5.3.8 + +* Tue Apr 4 2000 Bill Nottingham +- eliminate explicit krb5-configs dependency + +* Mon Mar 6 2000 Bernhard Rosenkränzer +- 5.3.1 - This fixes Bugs #9982 and #9987 + +* Wed Mar 1 2000 Nalin Dahyabhai +- make kerberos support conditional at build-time + +* Wed Mar 1 2000 Bill Nottingham +- integrate kerberos support into main tree + +* Fri Feb 25 2000 Nalin Dahyabhai +- Add Kerberos and GSS authenticator support + +* Fri Feb 25 2000 Cristian Gafton +- version 5.3.0 has a correct version of the rfc822 patch + +* Fri Feb 25 2000 Jeff Johnson +- fix length of rfc822 headers in strcncasecmp(). + +* Tue Feb 15 2000 Bernhard Rosenkränzer +- 5.2.8 (fixes the POP3-UIDL bug) +- Fix up the fetchmailconf man page symlink + +* Fri Feb 11 2000 Cristian Gafton +- version 5.2.7 +- add patch so that fetchmailconf will not output ssl configure statements + is no ssl is configured + +* Mon Jan 31 2000 Cristian Gafton +- rebuild to fix deps +- man pages are compressed +- enable %%clean + +* Tue Jan 11 2000 Bernhard Rosenkraenzer +- 5.2.3 +- fetchmailconf requires fetchmail = %%{version} +- fix compilation + +* Mon Dec 27 1999 Bernhard Rosenkraenzer +- 5.2.2 + +* Thu Sep 23 1999 Preston Brown +- got 5.1.0, fixes potential buffer overflow... + +* Sat Jun 12 1999 Jeff Johnson +- update to 5.0.4. + +* Mon Apr 05 1999 Cristian Gafton +- 5.0.0 + +* Tue Mar 30 1999 Preston Brown +- subpackage for fetchmailconf + +* Sun Mar 21 1999 Cristian Gafton +- auto rebuild in the new build environment (release 2) + +* Thu Dec 17 1998 Cristian Gafton +- version 4.7.0 +- build against glibc 2.1 + +* Sat Sep 19 1998 Jeff Johnson +- correct typo in dangling symlink fix. + +* Wed Sep 09 1998 Cristian Gafton +- update to 4.5.8 + +* Wed Jul 22 1998 Jeff Johnson +- update to 4.5.3. + +* Fri May 08 1998 Cristian Gafton +- fixed spelung eror in the decsriptoin + +* Thu May 07 1998 Cristian Gafton +- new version 4.4.4 fixes a lot of bugs + +* Fri Apr 24 1998 Prospector System +- translations modified for de, fr, tr + +* Thu Apr 09 1998 Cristian Gafton +- upgraded to 4.4.1 +- buildroot + +* Thu Oct 23 1997 Michael Fulbright +- Updated to 4.3.2 using SRPM from Eric Raymond + +* Thu Jul 10 1997 Erik Troan +- built against glibc