auto-import changelog data from fetchmail-5.7.4-4.src.rpm
Wed Apr 04 2001 Nalin Dahyabhai <nalin@redhat.com> - fix handling of "any" authentication (#32527) - accept more arguments to --auth - parse "auth password" correctly in the configuration file
This commit is contained in:
parent
c3ff15bacf
commit
4d745d473d
@ -1 +1 @@
|
|||||||
fetchmail-5.5.0.tar.gz
|
fetchmail-5.7.4.tar.gz
|
||||||
|
@ -1,18 +1,18 @@
|
|||||||
Summary: A remote mail retrieval and forwarding utility.
|
Summary: A remote mail retrieval and forwarding utility.
|
||||||
Name: fetchmail
|
Name: fetchmail
|
||||||
Version: 5.5.0
|
Version: 5.7.4
|
||||||
Release: 4
|
Release: 4
|
||||||
Requires: smtpdaemon
|
Requires: smtpdaemon
|
||||||
Source: http://www.tuxedo.org/~esr/fetchmail/fetchmail-%{version}.tar.gz
|
Source: http://www.tuxedo.org/~esr/fetchmail/fetchmail-%{version}.tar.gz
|
||||||
Source1: fetchmailconf.1
|
Source1: fetchmailconf.1
|
||||||
|
Patch0: fetchmail-5.7.4-nospambounce.patch
|
||||||
|
Patch1: fetchmail-5.7.5-auth.patch
|
||||||
|
Patch2: fetchmail-5.8.0-auth.patch
|
||||||
|
Patch3: fetchmail-5.8.0-auth-password.patch
|
||||||
URL: http://www.tuxedo.org/~esr/fetchmail/
|
URL: http://www.tuxedo.org/~esr/fetchmail/
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: Applications/Internet
|
Group: Applications/Internet
|
||||||
Patch0: fetchmail-5.4.0-krb5fixes.patch
|
Buildroot: %{_tmppath}/%{name}-%{version}-root
|
||||||
Patch1: fetchmail-5.4.3-mda.patch
|
|
||||||
Patch2: fetchmail-5.4.3-makedepend.patch
|
|
||||||
Patch3: fetchmail-5.5.0-untagged.patch
|
|
||||||
Buildroot: %{_tmppath}/%{name}-root
|
|
||||||
BuildPrereq: openssl-devel
|
BuildPrereq: openssl-devel
|
||||||
%{!?nokerberos:Requires: krb5-libs}
|
%{!?nokerberos:Requires: krb5-libs}
|
||||||
%{!?nokerberos:BuildPrereq: krb5-devel}
|
%{!?nokerberos:BuildPrereq: krb5-devel}
|
||||||
@ -44,16 +44,15 @@ need to have python and tk installed in order to use fetchmailconf.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%{!?nokerberos:%patch0 -p1 -b .krb5fixes}
|
%patch0 -p1 -b .nospambounce
|
||||||
#%patch1 -p1 -b .mda
|
%patch1 -p1 -b .auth
|
||||||
%patch2 -p1 -b .makedepend
|
%patch2 -p1 -b .auth2
|
||||||
%patch3 -p1 -b .untagged
|
%patch3 -p1 -b .auth-password
|
||||||
autoconf
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --enable-pop3 --enable-imap --with-ssl=/usr \
|
%configure --enable-pop3 --enable-imap --with-ssl=/usr \
|
||||||
--enable-etrn --enable-ntlm \
|
--enable-etrn --enable-ntlm --enable-nls --enable-inet6 \
|
||||||
%{?nokerberos:--without-kerberos --without-gssapi} \
|
%{?nokerberos:--without-kerberos --without-kerberos5 --without-gssapi} \
|
||||||
%{!?nokerberos:--with-kerberos --with-kerberos5=/usr/kerberos --with-gssapi=/usr/kerberos}
|
%{!?nokerberos:--with-kerberos --with-kerberos5=/usr/kerberos --with-gssapi=/usr/kerberos}
|
||||||
make
|
make
|
||||||
|
|
||||||
@ -63,12 +62,14 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
rm -f $RPM_BUILD_ROOT%{_mandir}/man1/fetchmailconf.1*
|
rm -f $RPM_BUILD_ROOT%{_mandir}/man1/fetchmailconf.1*
|
||||||
install %{SOURCE1} $RPM_BUILD_ROOT%{_mandir}/man1/
|
install %{SOURCE1} $RPM_BUILD_ROOT%{_mandir}/man1/
|
||||||
|
|
||||||
|
%find_lang %name
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%files
|
%files -f %{name}.lang
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc FEATURES README NEWS NOTES *.html FAQ COPYING INSTALL sample.rcfile
|
%doc FEATURES README NEWS NOTES *.html FAQ COPYING INSTALL
|
||||||
%{_bindir}/fetchmail
|
%{_bindir}/fetchmail
|
||||||
%{_mandir}/man1/fetchmail.1*
|
%{_mandir}/man1/fetchmail.1*
|
||||||
|
|
||||||
@ -78,11 +79,53 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_mandir}/man1/fetchmailconf.1*
|
%{_mandir}/man1/fetchmailconf.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Mar 29 2001 Nalin Dahyabhai <nalin@redhat.com>
|
* Wed Apr 4 2001 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- 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 <nalin@redhat.com>
|
||||||
|
- fall back to plain auth if gssapi fails (#32527)
|
||||||
|
|
||||||
|
* Tue Mar 13 2001 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- properly handle "nospambounce" in the config file (#31234)
|
||||||
|
|
||||||
|
* Mon Mar 12 2001 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- update to 5.7.4, which merges our patches
|
||||||
|
|
||||||
|
* Mon Mar 5 2001 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- 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 <nalin@redhat.com>
|
||||||
- rebuild in new environment
|
- rebuild in new environment
|
||||||
|
|
||||||
|
* Fri Feb 23 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
||||||
|
- langify
|
||||||
|
|
||||||
|
* Mon Feb 12 2001 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- work around sockets without an sa_len field
|
||||||
|
|
||||||
|
* Fri Feb 9 2001 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- fix for exception when adding hosts in fetchmailconf (#26387)
|
||||||
|
|
||||||
|
* Thu Feb 8 2001 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- add Todd Sabin's patch for handling untagged responses during CRAM-MD5 auth
|
||||||
|
|
||||||
|
* Mon Jan 15 2001 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- enable IPv6 support (#24033)
|
||||||
|
|
||||||
|
* Tue Nov 28 2000 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- enable NLS (#21419)
|
||||||
|
|
||||||
|
* Mon Nov 27 2000 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- update to 5.6.0
|
||||||
|
- revert "untagged" patch, which went upstream
|
||||||
|
|
||||||
* Wed Nov 8 2000 Nalin Dahyabhai <nalin@redhat.com>
|
* Wed Nov 8 2000 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
- patch to handle untagged responses during IMAP-GSS authentication
|
- patch to handle untagged responses during IMAP-GSS authentication
|
||||||
|
- update to 5.5.5
|
||||||
|
|
||||||
* Thu Aug 17 2000 Nalin Dahyabhai <nalin@redhat.com>
|
* Thu Aug 17 2000 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
- enable SSL support
|
- enable SSL support
|
||||||
|
Loading…
Reference in New Issue
Block a user