You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
689 lines
23 KiB
689 lines
23 KiB
|
|
# Fedora review: http://bugzilla.redhat.com/166008 |
|
|
|
%if 0%{?fedora} || 0%{?rhel} > 6 |
|
%define _with_devel 1 |
|
# ship static lib, matches default upstream config |
|
# as convenience to users, since our hacked shlib can potentially break |
|
# abi semi-often |
|
%global _with_static 1 |
|
%endif |
|
|
|
## don't use even on rhel6, due to libc-client WONTFIX, |
|
## https://bugzilla.redhat.com/show_bug.cgi?id=736120 |
|
#if 0%%{?rhel} == 6 |
|
%if 0 |
|
%global _with_system_libc_client 1 |
|
%endif |
|
|
|
# trim changelog included in binary rpms |
|
%global _changelog_trimtime %(date +%s -d "1 year ago") |
|
|
|
Summary: UW Server daemons for IMAP and POP network mail protocols |
|
Name: uw-imap |
|
Version: 2007f |
|
Release: 22%{?dist} |
|
|
|
# See LICENSE.txt, http://www.apache.org/licenses/LICENSE-2.0 |
|
License: ASL 2.0 |
|
URL: http://www.washington.edu/imap/ |
|
# Old (non-latest) releases live at ftp://ftp.cac.washington.edu/imap/old/ |
|
Source0: ftp://ftp.cac.washington.edu/imap/imap-%{version}%{?beta}%{?dev}%{?snap}.tar.gz |
|
|
|
%global soname c-client |
|
%global shlibname lib%{soname}.so.%{somajor} |
|
%if 0%{?fedora} || 0%{?rhel} > 6 |
|
%global somajor 2007 |
|
%global imap_libs lib%{soname} |
|
%else |
|
# rhel (<7) requires parallel-installable shlib, to not conflict with |
|
# os-provided libc-client |
|
%global somajor %{version} |
|
%global imap_libs lib%{soname}%{somajor} |
|
%endif |
|
|
|
# FC4+ uses %%_sysconfdir/pki/tls, previous releases used %%_datadir/ssl |
|
%global ssldir %(if [ -d %{_sysconfdir}/pki/tls ]; then echo "%{_sysconfdir}/pki/tls"; else echo "%{_datadir}/ssl"; fi) |
|
|
|
# imap -> uw-imap rename |
|
Obsoletes: imap < 1:%{version} |
|
|
|
# newest pam setup, using password-auth common PAM |
|
Source20: imap-password.pam |
|
# new pam setup, using new "include" feature |
|
Source21: imap.pam |
|
# legacy/old pam setup, using pam_stack.so |
|
Source22: imap-legacy.pam |
|
|
|
Source31: imap-xinetd |
|
Source32: imaps-xinetd |
|
Source33: ipop2-xinetd |
|
Source34: ipop3-xinetd |
|
Source35: pop3s-xinetd |
|
|
|
Patch1: imap-2007-paths.patch |
|
# See http://bugzilla.redhat.com/229781 , http://bugzilla.redhat.com/127271 |
|
Patch2: imap-2004a-doc.patch |
|
Patch5: imap-2007e-overflow.patch |
|
Patch9: imap-2007e-shared.patch |
|
Patch10: imap-2007e-authmd5.patch |
|
Patch11: imap-2007e-system_c_client.patch |
|
Patch12: imap-2007f-format-security.patch |
|
Patch13: imap-2007e-poll.patch |
|
# From debian |
|
Patch14: 1006_openssl1.1_autoverify.patch |
|
|
|
Patch15: imap-2007f-ldflags.patch |
|
|
|
BuildRequires: gcc |
|
BuildRequires: krb5-devel |
|
BuildRequires: pam-devel |
|
|
|
Requires: xinetd |
|
Requires(post): openssl |
|
|
|
BuildRequires: openssl-devel |
|
|
|
%if 0%{?_with_system_libc_client} |
|
BuildRequires: libc-client-devel = %{version} |
|
Requires: %{imap_libs}%{?_isa} = %{version} |
|
%else |
|
Requires: %{imap_libs}%{?_isa} = %{version}-%{release} |
|
%endif |
|
|
|
%description |
|
The %{name} package provides UW server daemons for both the IMAP (Internet |
|
Message Access Protocol) and POP (Post Office Protocol) mail access |
|
protocols. The POP protocol uses a "post office" machine to collect |
|
mail for users and allows users to download their mail to their local |
|
machine for reading. The IMAP protocol allows a user to read mail on a |
|
remote machine without downloading it to their local machine. |
|
|
|
%package -n %{imap_libs} |
|
Summary: UW C-client mail library |
|
Group: System Environment/Libraries |
|
Obsoletes: libc-client2004d < 1:2004d-2 |
|
Obsoletes: libc-client2004e < 2004e-2 |
|
Obsoletes: libc-client2004g < 2004g-7 |
|
Obsoletes: libc-client2006 < 2006k-2 |
|
%if "%{imap_libs}" != "libc-client2007" |
|
Obsoletes: libc-client2007 < 2007-2 |
|
%endif |
|
%description -n %{imap_libs} |
|
Provides a common API for accessing mailboxes. |
|
|
|
%package devel |
|
Summary: Development tools for programs which will use the UW IMAP library |
|
Group: Development/Libraries |
|
Requires: %{imap_libs}%{?_isa} = %{version}-%{release} |
|
# imap -> uw-imap rename |
|
Obsoletes: imap-devel < 1:%{version} |
|
%if "%{imap_libs}" == "libc-client" |
|
Obsoletes: libc-client-devel < %{version}-%{release} |
|
Provides: libc-client-devel = %{version}-%{release} |
|
%else |
|
Conflicts: libc-client-devel < %{version}-%{release} |
|
%endif |
|
%description devel |
|
Contains the header files and libraries for developing programs |
|
which will use the UW C-client common API. |
|
|
|
%package static |
|
Summary: UW IMAP static library |
|
Group: Development/Libraries |
|
Requires: %{name}-devel = %{version}-%{release} |
|
#Provides: libc-client-static = %%{version}-%%{release} |
|
Requires: krb5-devel openssl-devel pam-devel |
|
%description static |
|
Contains static libraries for developing programs |
|
which will use the UW C-client common API. |
|
|
|
%package utils |
|
Summary: UW IMAP Utilities to make managing your email simpler |
|
Group: Applications/System |
|
%if ! 0%{?_with_system_libc_client} |
|
Requires: %{imap_libs}%{?_isa} = %{version}-%{release} |
|
%endif |
|
# imap -> uw-imap rename |
|
Obsoletes: imap-utils < 1:%{version} |
|
%description utils |
|
This package contains some utilities for managing UW IMAP email,including: |
|
* dmail : procmail Mail Delivery Module |
|
* mailutil : mail utility program |
|
* mtest : C client test program |
|
* tmail : Mail Delivery Module |
|
* mlock |
|
|
|
|
|
|
|
%prep |
|
%setup -q -n imap-%{version}%{?dev}%{?snap} |
|
|
|
%patch1 -p1 -b .paths |
|
%patch2 -p1 -b .doc |
|
|
|
%patch5 -p1 -b .overflow |
|
|
|
%patch9 -p1 -b .shared |
|
%patch10 -p1 -b .authmd5 |
|
|
|
%if 0%{?fedora} > 11 || 0%{?rhel} > 5 |
|
install -p -m644 %{SOURCE20} imap.pam |
|
%else |
|
%if 0%{?fedora} > 4 || 0%{?rhel} > 4 |
|
install -p -m644 %{SOURCE21} imap.pam |
|
%else |
|
install -p -m644 %{SOURCE22} imap.pam |
|
%endif |
|
%endif |
|
|
|
%if 0%{?_with_system_libc_client} |
|
%patch11 -p1 -b .system_c_client |
|
%endif |
|
|
|
%patch12 -p1 -b .fmt-sec |
|
%patch13 -p1 -b .poll |
|
%patch14 -p1 -b .openssl11 |
|
%patch15 -p1 -b .ldflags |
|
|
|
|
|
%build |
|
|
|
# Kerberos setup |
|
test -f %{_sysconfdir}/profile.d/krb5-devel.sh && source %{_sysconfdir}/profile.d/krb5-devel.sh |
|
test -f %{_sysconfdir}/profile.d/krb5.sh && source %{_sysconfdir}/profile.d/krb5.sh |
|
GSSDIR=$(krb5-config --prefix) |
|
|
|
# SSL setup, probably legacy-only, but shouldn't hurt -- Rex |
|
export EXTRACFLAGS="$EXTRACFLAGS $(pkg-config --cflags openssl 2>/dev/null)" |
|
# $RPM_OPT_FLAGS |
|
export EXTRACFLAGS="$EXTRACFLAGS -fPIC $RPM_OPT_FLAGS" |
|
# jorton added these, I'll assume he knows what he's doing. :) -- Rex |
|
export EXTRACFLAGS="$EXTRACFLAGS -fno-strict-aliasing" |
|
%if 0%{?fedora} > 4 || 0%{?rhel} > 4 |
|
export EXTRACFLAGS="$EXTRACFLAGS -Wno-pointer-sign" |
|
%endif |
|
|
|
echo -e "y\ny" | \ |
|
make %{?_smp_mflags} lnp \ |
|
IP=6 \ |
|
EXTRACFLAGS="$EXTRACFLAGS" \ |
|
EXTRALDFLAGS="$EXTRALDFLAGS $RPM_LD_FLAGS" \ |
|
EXTRAAUTHENTICATORS=gss \ |
|
SPECIALS="GSSDIR=${GSSDIR} LOCKPGM=%{_sbindir}/mlock SSLCERTS=%{ssldir}/certs SSLDIR=%{ssldir} SSLINCLUDE=%{_includedir}/openssl SSLKEYS=%{ssldir}/private SSLLIB=%{_libdir}" \ |
|
SSLTYPE=unix \ |
|
%if 0%{?_with_system_libc_client} |
|
CCLIENTLIB=%{_libdir}/%{shlibname} \ |
|
%else |
|
CCLIENTLIB=$(pwd)/c-client/%{shlibname} \ |
|
%endif |
|
SHLIBBASE=%{soname} \ |
|
SHLIBNAME=%{shlibname} \ |
|
%if 0%{?_with_system_libc_client} |
|
%endif |
|
# Blank line |
|
|
|
|
|
%install |
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/ |
|
|
|
%if ! 0%{?_with_system_libc_client} |
|
%if 0%{?_with_static:1} |
|
install -p -m644 ./c-client/c-client.a $RPM_BUILD_ROOT%{_libdir}/ |
|
ln -s c-client.a $RPM_BUILD_ROOT%{_libdir}/libc-client.a |
|
%endif |
|
|
|
install -p -m755 ./c-client/%{shlibname} $RPM_BUILD_ROOT%{_libdir}/ |
|
|
|
# %%ghost'd c-client.cf |
|
touch c-client.cf |
|
install -p -m644 -D c-client.cf $RPM_BUILD_ROOT%{_sysconfdir}/c-client.cf |
|
%endif |
|
|
|
%if 0%{?_with_devel:1} |
|
ln -s %{shlibname} $RPM_BUILD_ROOT%{_libdir}/lib%{soname}.so |
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_includedir}/imap/ |
|
install -m644 ./c-client/*.h $RPM_BUILD_ROOT%{_includedir}/imap/ |
|
# Added linkage.c to fix (#34658) <mharris> |
|
install -m644 ./c-client/linkage.c $RPM_BUILD_ROOT%{_includedir}/imap/ |
|
install -m644 ./src/osdep/tops-20/shortsym.h $RPM_BUILD_ROOT%{_includedir}/imap/ |
|
%endif |
|
|
|
install -p -D -m644 src/imapd/imapd.8 $RPM_BUILD_ROOT%{_mandir}/man8/imapd.8uw |
|
install -p -D -m644 src/ipopd/ipopd.8 $RPM_BUILD_ROOT%{_mandir}/man8/ipopd.8uw |
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sbindir} |
|
install -p -m755 ipopd/ipop{2d,3d} $RPM_BUILD_ROOT%{_sbindir}/ |
|
install -p -m755 imapd/imapd $RPM_BUILD_ROOT%{_sbindir}/ |
|
install -p -m755 mlock/mlock $RPM_BUILD_ROOT%{_sbindir}/ |
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_bindir}/ |
|
install -p -m755 dmail/dmail mailutil/mailutil mtest/mtest tmail/tmail $RPM_BUILD_ROOT%{_bindir}/ |
|
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1/ |
|
install -p -m644 src/{dmail/dmail,mailutil/mailutil,tmail/tmail}.1 $RPM_BUILD_ROOT%{_mandir}/man1/ |
|
|
|
install -p -m644 -D imap.pam $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/imap |
|
install -p -m644 -D imap.pam $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/pop |
|
|
|
install -p -m644 -D %{SOURCE31} $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d/imap |
|
install -p -m644 -D %{SOURCE32} $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d/imaps |
|
install -p -m644 -D %{SOURCE33} $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d/ipop2 |
|
install -p -m644 -D %{SOURCE34} $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d/ipop3 |
|
install -p -m644 -D %{SOURCE35} $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d/pop3s |
|
|
|
# %ghost'd *.pem files |
|
mkdir -p $RPM_BUILD_ROOT%{ssldir}/certs |
|
touch $RPM_BUILD_ROOT%{ssldir}/certs/{imapd,ipop3d}.pem |
|
|
|
|
|
# FIXME, do on first launch (or not at all?), not here -- Rex |
|
%post |
|
{ |
|
cd %{ssldir}/certs &> /dev/null || : |
|
for CERT in imapd.pem ipop3d.pem ;do |
|
if [ ! -e $CERT ];then |
|
if [ -e stunnel.pem ];then |
|
cp stunnel.pem $CERT &> /dev/null || : |
|
elif [ -e Makefile ];then |
|
make $CERT << EOF &> /dev/null || : |
|
-- |
|
SomeState |
|
SomeCity |
|
SomeOrganization |
|
SomeOrganizationalUnit |
|
localhost.localdomain |
|
root@localhost.localdomain |
|
EOF |
|
fi |
|
fi |
|
done |
|
} || : |
|
/sbin/service xinetd reload > /dev/null 2>&1 || : |
|
|
|
%postun |
|
/sbin/service xinetd reload > /dev/null 2>&1 || : |
|
|
|
%files |
|
%doc docs/SSLBUILD |
|
%config(noreplace) %{_sysconfdir}/pam.d/imap |
|
%config(noreplace) %{_sysconfdir}/pam.d/pop |
|
%config(noreplace) %{_sysconfdir}/xinetd.d/imap |
|
%config(noreplace) %{_sysconfdir}/xinetd.d/ipop2 |
|
%config(noreplace) %{_sysconfdir}/xinetd.d/ipop3 |
|
# These need to be replaced (ie, can't use %%noreplace), or imaps/pop3s can fail on upgrade |
|
# do this in a %trigger or something not here... -- Rex |
|
%config(noreplace) %{_sysconfdir}/xinetd.d/imaps |
|
%config(noreplace) %{_sysconfdir}/xinetd.d/pop3s |
|
%attr(0600,root,root) %ghost %config(missingok,noreplace) %verify(not md5 size mtime) %{ssldir}/certs/imapd.pem |
|
%attr(0600,root,root) %ghost %config(missingok,noreplace) %verify(not md5 size mtime) %{ssldir}/certs/ipop3d.pem |
|
%{_mandir}/man8/* |
|
%{_sbindir}/ipop2d |
|
%{_sbindir}/ipop3d |
|
%{_sbindir}/imapd |
|
|
|
%files utils |
|
%{_bindir}/* |
|
%attr(2755, root, mail) %{_sbindir}/mlock |
|
%{_mandir}/man1/* |
|
|
|
%if ! 0%{?_with_system_libc_client} |
|
%post -n %{imap_libs} -p /sbin/ldconfig |
|
%postun -n %{imap_libs} -p /sbin/ldconfig |
|
|
|
%files -n %{imap_libs} |
|
%doc LICENSE.txt NOTICE SUPPORT |
|
%doc docs/RELNOTES docs/*.txt |
|
%ghost %config(missingok,noreplace) %{_sysconfdir}/c-client.cf |
|
%{_libdir}/lib%{soname}.so.* |
|
%endif |
|
|
|
%if 0%{?_with_devel:1} |
|
%files devel |
|
%{_includedir}/imap/ |
|
%{_libdir}/lib%{soname}.so |
|
%endif |
|
|
|
%if 0%{?_with_static:1} |
|
%files static |
|
%{_libdir}/c-client.a |
|
%{_libdir}/libc-client.a |
|
%endif |
|
|
|
|
|
%changelog |
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2007f-22 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild |
|
|
|
* Tue Apr 24 2018 Karsten Hopp <karsten@redhat.com> - 2007f-21 |
|
- make sure LDFLAGS are used everywhere (rhbz#1541093) |
|
|
|
* Tue Feb 20 2018 Remi Collet <remi@remirepo.net> - 2007f-19 |
|
- missing BR on C compiler |
|
- use ldconfig_scriptlets |
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2007f-19 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild |
|
|
|
* Tue Jan 30 2018 Remi Collet <rcollet@redhat.com> - 2007f-18 |
|
- fix compatibility with OpenSSL 1.1 rhbz#1540020 |
|
using patch from debian |
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2007f-17 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild |
|
|
|
* Mon Jul 31 2017 Rex Dieter <rdieter@fedoraproject.org> - 2007f-16 |
|
- -devel for el7+ too (#1473520) |
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2007f-15 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild |
|
|
|
* Tue Jul 11 2017 Rex Dieter <rdieter@fedoraproject.org> - 2007f-14 |
|
- .spec cosmetics, %%define -> %%global, drop %%clean |
|
- workaround el6 libc-client WONTFIX brokenness (#736120) |
|
- use compat-openssl10 on f26+ (#1424334) |
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2007f-13 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild |
|
|
|
* Thu Jul 28 2016 Joe Orton <jorton@redhat.com> - 2007f-12 |
|
- use poll() not select, from Ben Smithusrt via Debian |
|
|
|
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2007f-11 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild |
|
|
|
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2007f-10 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild |
|
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2007f-9 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild |
|
|
|
* Mon Jul 21 2014 Rex Dieter <rdieter@fedoraproject.org> 2007f-8 |
|
- move scriptlets near corresponding %%files |
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2007f-7 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild |
|
|
|
* Mon Apr 14 2014 Jaromir Capik <jcapik@redhat.com> - 2007f-6 |
|
- Fixing format-security flaws (#1037374) |
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2007f-5 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
|
|
|
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2007f-4 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
|
|
|
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2007f-3 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2007f-2 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
|
|
|
* Tue Aug 02 2011 Rex Dieter <rdieter@fedoraproject.org> 2007f-1 |
|
- imap-2007f |
|
|
|
* Mon Jun 13 2011 Rex Dieter <rdieter@fedoraproject.org> 2007e-13 |
|
- _with_system_libc_client option (el6+) |
|
- tight deps via %%?_isa |
|
- drop extraneous Requires(post,postun): xinetd |
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2007e-12 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
|
|
|
* Tue Apr 27 2010 Rex Dieter <rdieter@fedoraproject.org> - 2007e-11 |
|
- SSL connection through IPv6 fails (#485860) |
|
- fix SSLDIR, set SSLKEYS |
|
|
|
* Wed Sep 16 2009 Tomas Mraz <tmraz@redhat.com> - 2007e-10 |
|
- use password-auth common PAM configuration instead of system-auth |
|
where available |
|
|
|
* Mon Aug 31 2009 Rex Dieter <rdieter@fedoraproject.org> |
|
- omit -devel, -static bits in EPEL builds (#518885) |
|
|
|
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 2007e-9 |
|
- rebuilt with new openssl |
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2007e-8 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
|
|
|
* Wed Jul 08 2009 Rex Dieter <rdieter@fedoraproject.org> - 2007e-7 |
|
- fix shared.patch to use CFLAGS for osdep.c too |
|
|
|
* Tue Jul 07 2009 Rex Dieter <rdieter@fedoraproject.org> - 2007e-6 |
|
- build with -fPIC |
|
- rebase patches (patch fuzz=0) |
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2007e-5 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
|
|
|
* Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> 2007e-4 |
|
- rebuild with new openssl |
|
|
|
* Mon Jan 12 2009 Rex Dieter <rdieter@fedoraproject.org> 2007e-3 |
|
- main/-utils: +Req: %%imap_libs = %%version-%%release |
|
|
|
* Fri Dec 19 2008 Rex Dieter <rdieter@fedoraproject.org> 2007e-1 |
|
- imap-2007e |
|
|
|
* Fri Oct 31 2008 Rex Dieter <rdieter@fedoraproject.org> 2007d-1 |
|
- imap-2007d |
|
|
|
* Wed Oct 01 2008 Rex Dieter <rdieter@fedoraproject.org> 2007b-2 |
|
- fix build (patch fuzz) (#464985) |
|
|
|
* Fri Jun 13 2008 Rex Dieter <rdieter@fedoraproject.org> 2007b-1 |
|
- imap-2007b |
|
|
|
* Tue May 18 2008 Rex Dieter <rdieter@fedoraproject.org> 2007a1-3 |
|
- libc-client: incomplete list of obsoletes (#446240) |
|
|
|
* Wed Mar 19 2008 Rex Dieter <rdieter@fedoraproject.org> 2007a1-2 |
|
- uw-imap conflicts with cyrus-imapd (#222486) |
|
|
|
* Wed Mar 19 2008 Rex Dieter <rdieter@fedoraproject.org> 2007a1-1 |
|
- imap-2007a1 |
|
- include static lib |
|
- utils: update %%description |
|
|
|
* Thu Mar 13 2008 Rex Dieter <rdieter@fedoraproject.org> 2007a-1 |
|
- imap-2007a |
|
|
|
* Fri Feb 08 2008 Rex Dieter <rdieter@fedoraproject.org> 2007-3 |
|
- respin (gcc43) |
|
|
|
* Wed Jan 23 2008 Rex Dieter <rdieter@fedoraproject.org> 2007-2 |
|
- Obsoletes: libc-client2006 (#429796) |
|
- drop libc-client hacks for parallel-installability, fun while it lasted |
|
|
|
* Fri Dec 21 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2007-1 |
|
- imap-2007 |
|
|
|
* Tue Dec 04 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2006k-2 |
|
- respin for new openssl |
|
|
|
* Fri Nov 09 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2006k-1 |
|
- imap-2006k (final) |
|
|
|
* Wed Sep 19 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2006k-0.1.0709171900 |
|
- imap-2006k.DEV.SNAP-0709171900 |
|
|
|
* Tue Aug 21 2007 Joe Orton <jorton@redhat.com> 2006j-3 |
|
- fix License |
|
|
|
* Tue Jul 17 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2006j-2 |
|
- imap-2006j2 |
|
|
|
* Mon Jul 09 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2006j-1 |
|
- imap-2006j1 |
|
|
|
* Wed Jun 13 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2006i-1 |
|
- imap-2006i |
|
|
|
* Wed May 09 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2006h-1 |
|
- imap-2006h |
|
- Obsolete pre-merge libc-client pkgs |
|
|
|
* Fri Apr 27 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2006g-3 |
|
- imap-2004a-doc.patch (#229781,#127271) |
|
|
|
* Mon Apr 2 2007 Joe Orton <jorton@redhat.com> 2006g-2 |
|
- use $RPM_OPT_FLAGS during build |
|
|
|
* Mon Apr 02 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2006g-1 |
|
- imap-2006g |
|
|
|
* Wed Feb 07 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2006e-3 |
|
- Obsoletes: libc-client2004g |
|
- cleanup/simplify c-client.cf handling |
|
|
|
* Fri Jan 26 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2006e-2 |
|
- use /etc/profile.d/krb5-devel.sh |
|
|
|
* Fri Jan 26 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2006e-1 |
|
- imap-2006e |
|
|
|
* Mon Dec 18 2006 Rex Dieter <rdieter[AT]fedoraproject.org> 2006d-1 |
|
- imap-2006d (#220121) |
|
|
|
* Wed Oct 25 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2006c1-1 |
|
- imap-2006c1 |
|
|
|
* Fri Oct 06 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2006b-1 |
|
- imap-2006b |
|
- %%ghost %%config(missingok,noreplace) %%{_sysconfdir}/c-client.cf |
|
|
|
* Fri Oct 06 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2006a-6 |
|
- omit EOL whitespace from c-client.cf |
|
|
|
* Thu Oct 05 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2006a-5 |
|
- %%config(noreplace) all xinetd.d/pam.d bits |
|
|
|
* Thu Oct 05 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2006a-4 |
|
- eek, pam.d/xinet.d bits were all mixed up, fixed. |
|
|
|
* Wed Oct 04 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2006a-3 |
|
- libc-client: move c-client.cf here |
|
- c-client.cf: +set new-folder-format same-as-inbox |
|
|
|
* Wed Oct 04 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2006a-2 |
|
- omit mixproto patch (lvn bug #1184) |
|
|
|
* Tue Sep 26 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2006a-1 |
|
- imap-2006a |
|
- omit static lib (for now, at least) |
|
|
|
* Mon Sep 25 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2006-4 |
|
- -devel-static: package static lib separately. |
|
|
|
* Mon Sep 25 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2006-3 |
|
- License: Apache 2.0 |
|
|
|
* Fri Sep 15 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2006-2 |
|
- imap-2006 |
|
- change default (CREATEPROTO) driver to mix |
|
- Obsolete old libc-clients |
|
|
|
* Tue Aug 29 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2004g-6 |
|
- fc6 respin |
|
|
|
* Fri Aug 18 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2004g-5 |
|
- cleanup, respin for fc6 |
|
|
|
* Wed Mar 1 2006 Rex Dieter <rexdieter[AT]users.sf.net> |
|
- fc5: gcc/glibc respin |
|
|
|
* Thu Nov 17 2005 Rex Dieter <rexdieter[AT]users.sf.net> 2004g-4 |
|
- use pam's "include" feature on fc5 |
|
- cleanup %%doc handling, remove useless bits |
|
|
|
* Thu Nov 17 2005 Rex Dieter <rexdieter[AT]users.sf.net> 2004g-3 |
|
- omit trailing whitespace in default c-client.cf |
|
|
|
* Wed Nov 16 2005 Rex Dieter <rexdieter[AT]users.sf.net> 2004g-2 |
|
- rebuild for new openssl |
|
|
|
* Mon Sep 26 2005 Rex Dieter <rexdieter[AT]users.sf.net> 2004g-1 |
|
- imap-2004g |
|
- /etc -> %%_sysconfdir |
|
- use %%{?_smp_mflags} |
|
|
|
* Mon Aug 15 2005 Rex Dieter <rexdieter[AT]users.sf.net> 2004e-1 |
|
- imap-2004e |
|
- rename: imap -> uw-imap (yay, we get to drop the Epoch) |
|
- sslcerts=%%{_sysconfdir}/pki/tls/certs if exists, else /usr/share/ssl/certs |
|
|
|
* Fri Apr 29 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1:2004d-1 |
|
- 2004d |
|
- imap-libs -> lib%%{soname}%%{version} (ie, libc-client2004d), so we can |
|
have multiple versions (shared-lib only) installed |
|
- move mlock to -utils. |
|
- revert RFC2301, locks out too many folks where SSL is unavailable |
|
|
|
* Thu Apr 28 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1:2004-0.fdr.11.c1 |
|
- change default driver from mbox to mbx |
|
- comply with RFC 3501 security: Unencrypted plaintext passwords are prohibited |
|
|
|
* Fri Jan 28 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1:2004-0.fdr.10.c1 |
|
- imap-2004c1 security release: |
|
http://www.kb.cert.org/vuls/id/702777 |
|
|
|
* Thu Jan 20 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1:2004-0.fdr.9.c |
|
- imap2004c |
|
- -utils: dmail,mailutil,tmail |
|
- -libs: include mlock (so it's available for other imap clients, like pine) |
|
- remove extraneous patches |
|
- %%_sysconfigdir/c-client.cf: use to set MailDir (but don't if upgrading from |
|
an older version (ie, if folks don't want/expect a change in behavior) |
|
|
|
* Mon Sep 13 2004 Rex Dieter <rexdieter at sf.net. 1:2004-0.fdr.8.a |
|
- don't use mailsubdir patch (for now) |
|
|
|
* Wed Aug 11 2004 Rex Dieter <rexdieter at sf.net> 1:2004-0.fdr.7.a |
|
- mailsubdir patch (default to ~/Mail instead of ~) |
|
|
|
* Fri Jul 23 2004 Rex Dieter <rexdieter at sf.net> 1:2004-0.fdr.6.a |
|
- remove Obsoletes/Provides: libc-client (they can, in fact, co-xist) |
|
- -devel: remove O/P: libc-client-devel -> Conflicts: libc-client-devel |
|
|
|
* Thu Jul 16 2004 Rex Dieter <rexdieter at sf.net> 1:2004-0.fdr.5.a |
|
- imap2004a |
|
|
|
* Tue Jul 13 2004 Rex Dieter <rexdieter at sf.net> 1:2004-0.fdr.4 |
|
- -devel: Req: %%{name}-libs |
|
|
|
* Tue Jul 13 2004 Rex Dieter <rexdieter at sf.net> 1:2004-0.fdr.3 |
|
- previous imap pkgs had Epoch: 1, we need it too. |
|
|
|
* Wed Jul 07 2004 Rex Dieter <rexdieter at sf.net> 2004-0.fdr.2 |
|
- use %%version as %%somajver (like how openssl does it) |
|
|
|
* Wed Jul 07 2004 Rex Dieter <rexdieter at sf.net> 2004-0.fdr.1 |
|
- imap-2004 |
|
- use mlock, if available. |
|
- Since libc-client is an attrocious name choice, we'll trump it, |
|
and provide imap, imap-libs, imap-devel instead (redhat bug #120873) |
|
|
|
* Wed Apr 07 2004 Kaj J. Niemi <kajtzu@fi.basen.net> 2002e-4 |
|
- Use CFLAGS (and RPM_OPT_FLAGS) during the compilation |
|
- Build the .so through gcc instead of directly calling ld |
|
|
|
* Fri Mar 5 2004 Joe Orton <jorton@redhat.com> 2002e-3 |
|
- install .so with permissions 0755 |
|
- make auth_md5.c functions static to avoid symbol conflicts |
|
- remove Epoch: 0 |
|
|
|
* Tue Mar 02 2004 Kaj J. Niemi <kajtzu@fi.basen.net> 0:2002e-2 |
|
- "lnp" already uses RPM_OPT_FLAGS |
|
- have us conflict with imap, imap-devel |
|
|
|
* Tue Mar 2 2004 Joe Orton <jorton@redhat.com> 0:2002e-1 |
|
- add post/postun, always use -fPIC |
|
|
|
* Tue Feb 24 2004 Kaj J. Niemi <kajtzu@fi.basen.net> |
|
- Name change from c-client to libc-client |
|
|
|
* Sat Feb 14 2004 Kaj J. Niemi <kajtzu@fi.basen.net> 0:2002e-0.1 |
|
- c-client 2002e is based on imap-2002d |
|
- Build shared version, build logic is copied from FreeBSD net/cclient |
|
|
|
|