uw-imap-vl.spec 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  1. # Change the default connected directory from the user's home directory
  2. # to the named subdirectory of the user's home directory
  3. %define mail_subdirectory Mail
  4. Summary: UW Server daemons for IMAP and POP network mail protocols
  5. Summary(ja): IMAP/POP ネットワークメールプロトコル用デーモン
  6. Name: uw-imap
  7. Version: 2007f
  8. Release: 5%{?_dist_release}
  9. Group: servers
  10. Distribution: Vine Linux
  11. Vendor: Project Vine
  12. # See LICENSE.txt, http://www.apache.org/licenses/LICENSE-2.0
  13. License: ASL 2.0
  14. URL: http://www.washington.edu/imap/
  15. # Old (non-latest) releases live at ftp://ftp.cac.washington.edu/imap/old/
  16. Source0: ftp://ftp.cac.washington.edu/imap/imap-%{version}.tar.gz
  17. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  18. %define soname c-client
  19. %define somajor 2007
  20. %define shlibname lib%{soname}.so.%{somajor}
  21. %define imap_libs lib%{soname}
  22. # FC4+ uses %%_sysconfdir/pki/tls/certs, previous releases used %%_datadir/ssl/certs
  23. %define sslcerts %{expand:%(if [ -d %{_sysconfdir}/pki/tls/certs ]; then echo "%{_sysconfdir}/pki/tls/certs"; else echo "%{_datadir}/ssl/certs"; fi)}
  24. # new pam setup, using new "include" feature
  25. Source21: imap.pam
  26. # legacy/old pam setup, using pam_stack.so
  27. Source22: imap-legacy.pam
  28. Source31: imap-xinetd
  29. Source32: imaps-xinetd
  30. Source33: ipop2-xinetd
  31. Source34: ipop3-xinetd
  32. Source35: pop3s-xinetd
  33. Patch1: imap-2007-paths.patch
  34. # See http://bugzilla.redhat.com/229781 , http://bugzilla.redhat.com/127271
  35. Patch2: imap-2004a-doc.patch
  36. Patch5: imap-2007e-overflow.patch
  37. Patch9: imap-2007e-shared.patch
  38. Patch10: imap-2007e-authmd5.patch
  39. Patch11: imap-2007e-system_c_client.patch
  40. Patch12: imap-2007f-format-security.patch
  41. Patch13: imap-2007e-poll.patch
  42. # From debian
  43. Patch14: 1006_openssl1.1_autoverify.patch
  44. Patch15: imap-2007f-ldflags.patch
  45. BuildRequires: openssl-devel
  46. BuildRequires: pam-devel
  47. BuildRequires: krb5-devel
  48. # Prereq is shorter than separate Requires, Requires(post), Requires(postun)
  49. Requires(pre): xinetd
  50. Requires(post): openssl
  51. Requires: %{imap_libs} = %{version}-%{release}
  52. # imap -> uw-imap rename
  53. Obsoletes: imap < 1:%{version}
  54. %description
  55. The %{name} package provides UW server daemons for both the IMAP (Internet
  56. Message Access Protocol) and POP (Post Office Protocol) mail access
  57. protocols. The POP protocol uses a "post office" machine to collect
  58. mail for users and allows users to download their mail to their local
  59. machine for reading. The IMAP protocol allows a user to read mail on a
  60. remote machine without downloading it to their local machine.
  61. %package -n %{imap_libs}
  62. Summary: UW C-client mail library
  63. Summary(ja): UW メールライブラリ
  64. Group: system
  65. Obsoletes: libc-client2004d < 1:2004d-2
  66. Obsoletes: libc-client2004e < 2004e-2
  67. Obsoletes: libc-client2004g < 2004g-7
  68. Obsoletes: libc-client2006 < 2006k-2
  69. %description -n %{imap_libs}
  70. Provides a common API for accessing mailboxes.
  71. %package devel
  72. Summary: Development tools for programs which will use the UW IMAP library
  73. Group: programming
  74. Requires: %{imap_libs} = %{version}-%{release}
  75. # imap -> uw-imap rename
  76. Obsoletes: imap-devel < 1:%{version}
  77. Provides: imap-devel < 1:%{version}
  78. Conflicts: libc-client-devel
  79. %description devel
  80. Contains the header files and static libraries for developing programs
  81. which will use the UW C-client common API.
  82. %package utils
  83. Summary: UW IMAP Utilities to make managing your email simpler
  84. Group: internet
  85. # imap -> uw-imap rename
  86. Obsoletes: imap-utils < 1:%{version}
  87. %description utils
  88. This package contains some utilities for managing UW IMAP email,including:
  89. * dmail : procmail Mail Delivery Module
  90. * mailutil : mail utility program
  91. * mtest : C client test program
  92. * tmail : Mail Delivery Module
  93. * mlock
  94. %debug_package
  95. %prep
  96. %setup -q -n imap-%{version}
  97. %patch1 -p1 -b .paths
  98. %patch2 -p1 -b .doc
  99. %patch5 -p1 -b .overflow
  100. %patch9 -p1 -b .shared
  101. %patch10 -p1 -b .authmd5
  102. install -p -m644 %{SOURCE21} imap.pam
  103. %patch12 -p1 -b .fmt-sec
  104. %patch13 -p1 -b .poll
  105. %patch14 -p1 -b .openssl11
  106. %patch15 -p1 -b .ldflags
  107. %build
  108. # Kerberos setup
  109. test -f %{_sysconfdir}/profile.d/krb5-devel.sh && source %{_sysconfdir}/profile.d/krb5-devel.sh
  110. test -f %{_sysconfdir}/profile.d/krb5.sh && source %{_sysconfdir}/profile.d/krb5.sh
  111. GSSDIR=$(krb5-config --prefix)
  112. # SSL setup, probably legacy-only, but shouldn't hurt -- Rex
  113. export EXTRACFLAGS="$EXTRACFLAGS $(pkg-config --cflags openssl 2>/dev/null)"
  114. # $RPM_OPT_FLAGS
  115. export EXTRACFLAGS="$EXTRACFLAGS $RPM_OPT_FLAGS"
  116. # jorton added these, I'll assume he knows what he's doing. :) -- Rex
  117. export EXTRACFLAGS="$EXTRACFLAGS -fno-strict-aliasing"
  118. export EXTRACFLAGS="$EXTRACFLAGS -Wno-pointer-sign"
  119. echo "y" | \
  120. make %{?_smp_mflags} lnp \
  121. EXTRACFLAGS="$EXTRACFLAGS" \
  122. EXTRALDFLAGS="$EXTRALDFLAGS" \
  123. EXTRAAUTHENTICATORS=gss \
  124. SPECIALS="GSSDIR=${GSSDIR} LOCKPGM=%{_sbindir}/mlock SSLCERTS=%{sslcerts} SSLDIR=%{_datadir}/ssl SSLINCLUDE=%{_includedir}/openssl SSLLIB=%{_libdir}" \
  125. SSLTYPE=unix \
  126. CCLIENTLIB=$(pwd)/c-client/%{shlibname} \
  127. SHLIBBASE=%{soname} \
  128. SHLIBNAME=%{shlibname}
  129. # Blank line
  130. %install
  131. rm -rf $RPM_BUILD_ROOT
  132. mkdir -p $RPM_BUILD_ROOT%{_libdir}/
  133. install -p -m644 ./c-client/c-client.a $RPM_BUILD_ROOT%{_libdir}/
  134. ln -s c-client.a $RPM_BUILD_ROOT%{_libdir}/libc-client.a
  135. install -p -m755 ./c-client/%{shlibname} $RPM_BUILD_ROOT%{_libdir}/
  136. ln -s %{shlibname} $RPM_BUILD_ROOT%{_libdir}/lib%{soname}.so
  137. mkdir -p $RPM_BUILD_ROOT%{_includedir}/imap/
  138. install -m644 ./c-client/*.h $RPM_BUILD_ROOT%{_includedir}/imap
  139. # Added linkage.c to fix (#34658) <mharris>
  140. install -m644 ./c-client/linkage.c $RPM_BUILD_ROOT%{_includedir}/imap
  141. install -m644 ./src/osdep/tops-20/shortsym.h $RPM_BUILD_ROOT%{_includedir}/imap
  142. mkdir -p $RPM_BUILD_ROOT%{_mandir}/man8/
  143. install -p -m644 src/{ipopd/ipopd,imapd/imapd}.8 $RPM_BUILD_ROOT%{_mandir}/man8/
  144. mkdir -p $RPM_BUILD_ROOT%{_sbindir}
  145. install -p -m755 ipopd/ipop{2d,3d} $RPM_BUILD_ROOT%{_sbindir}/
  146. install -p -m755 imapd/imapd $RPM_BUILD_ROOT%{_sbindir}/
  147. install -p -m755 mlock/mlock $RPM_BUILD_ROOT%{_sbindir}/
  148. mkdir -p $RPM_BUILD_ROOT%{_bindir}/
  149. install -p -m755 dmail/dmail mailutil/mailutil mtest/mtest tmail/tmail $RPM_BUILD_ROOT%{_bindir}/
  150. mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1/
  151. install -p -m644 src/{dmail/dmail,mailutil/mailutil,tmail/tmail}.1 $RPM_BUILD_ROOT%{_mandir}/man1/
  152. install -p -m644 -D imap.pam $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/imap
  153. install -p -m644 -D imap.pam $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/pop
  154. install -p -m644 -D %{SOURCE31} $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d/imap
  155. install -p -m644 -D %{SOURCE32} $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d/imaps
  156. install -p -m644 -D %{SOURCE33} $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d/ipop2
  157. install -p -m644 -D %{SOURCE34} $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d/ipop3
  158. install -p -m644 -D %{SOURCE35} $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d/pop3s
  159. # Generate ghost *.pem files
  160. mkdir -p $RPM_BUILD_ROOT%{sslcerts}/
  161. touch $RPM_BUILD_ROOT%{sslcerts}/{imapd,ipop3d}.pem
  162. # c-client.cf
  163. touch $RPM_BUILD_ROOT%{_sysconfdir}/c-client.cf
  164. # FIXME, do this on daemon startup -- Rex
  165. %post
  166. {
  167. cd %{sslcerts} &> /dev/null || :
  168. for CERT in imapd.pem ipop3d.pem ;do
  169. if [ ! -e $CERT ];then
  170. if [ -e stunnel.pem ];then
  171. cp stunnel.pem $CERT &> /dev/null || :
  172. elif [ -e Makefile ];then
  173. make $CERT << EOF &> /dev/null || :
  174. --
  175. SomeState
  176. SomeCity
  177. SomeOrganization
  178. SomeOrganizationalUnit
  179. localhost.localdomain
  180. root@localhost.localdomain
  181. EOF
  182. fi
  183. fi
  184. done
  185. } || :
  186. /sbin/service xinetd reload > /dev/null 2>&1 || :
  187. %postun
  188. /sbin/service xinetd reload > /dev/null 2>&1 || :
  189. %triggerpostun -- imap < 1:2004
  190. #if upgrading from old version, don't change/set (default) MailDir
  191. if [ -f %{_sysconfdir}/c-client.cf ]; then
  192. if grep -q "^set mail-subdirectory %{mail_subdirectory}" %{_sysconfdir}/c-client.cf; then
  193. sed -i -e 's/^set mail-subdirectory/\#set mail-subdirectory/g' \
  194. %{_sysconfdir}/c-client.cf
  195. fi
  196. fi
  197. %clean
  198. rm -rf $RPM_BUILD_ROOT
  199. %files
  200. %defattr(-,root,root)
  201. %doc docs/SSLBUILD
  202. %config %{_sysconfdir}/pam.d/imap
  203. %config %{_sysconfdir}/pam.d/pop
  204. %config(noreplace) %{_sysconfdir}/xinetd.d/imap
  205. %config(noreplace) %{_sysconfdir}/xinetd.d/ipop2
  206. %config(noreplace) %{_sysconfdir}/xinetd.d/ipop3
  207. # These need to be replaced (ie, can't use %%noreplace), or imaps/pop3s will fail after an upgrade
  208. %config %{_sysconfdir}/xinetd.d/imaps
  209. %config %{_sysconfdir}/xinetd.d/pop3s
  210. %attr(0600,root,root) %ghost %config(missingok,noreplace) %verify(not md5 size mtime) %{sslcerts}/imapd.pem
  211. %attr(0600,root,root) %ghost %config(missingok,noreplace) %verify(not md5 size mtime) %{sslcerts}/ipop3d.pem
  212. %config(noreplace) %{_sysconfdir}/c-client.cf
  213. %{_mandir}/man8/*
  214. %{_sbindir}/ipop2d
  215. %{_sbindir}/ipop3d
  216. %{_sbindir}/imapd
  217. %files utils
  218. %defattr(-,root,root)
  219. %{_bindir}/*
  220. %attr(2755, root, mail) %{_sbindir}/mlock
  221. %{_mandir}/man1/*
  222. %files -n %{imap_libs}
  223. %defattr(-,root,root)
  224. %doc docs/RELNOTES docs/*.txt
  225. %{_libdir}/lib%{soname}.so.*
  226. %files devel
  227. %defattr(-,root,root)
  228. %{_includedir}/imap/
  229. %{_libdir}/c-client.a
  230. %{_libdir}/libc-client.a
  231. %{_libdir}/lib%{soname}.so
  232. %changelog
  233. * Tue Oct 05 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2007f-5
  234. - rebuilt with openssl-3.0.0.
  235. - dropped ldconfig scriptlets.
  236. * Fri Apr 24 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2007f-4
  237. - updated Patch5, 9 and 10.
  238. * Mon Nov 05 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2007f-3
  239. - imported Patch13-15 from rawhide.
  240. * Tue Mar 15 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2007f-2
  241. - rebuilt with openssl-1.0.2g.
  242. * Thu Jun 25 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2007f-1
  243. - new upstream release.
  244. - added Patch11 and Patch12.
  245. * Sat Mar 26 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2007e-3
  246. - rebuilt with openssl-1.0.0d and krb5-libs-1.8.2
  247. * Sun Feb 06 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2007e-2
  248. - rebuild with openssl-1.0.0c
  249. * Sat May 16 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2007e-1
  250. - new upstream release
  251. - built with krb5-devel (VineSeed)
  252. * Sun Sep 07 2008 Shu KONNO <owa@bg.wakwak.com> 2006b-2vl5
  253. - applied new versioning policy, spec in utf-8
  254. * Sat Jun 2 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2006b-1vl2
  255. - rebuilt with new toolchain
  256. * Fri Oct 20 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2006b-1vl1
  257. - updated to 2006b based on Fedora development
  258. * Mon May 29 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2004g-4vl2
  259. - changed package name
  260. * Wed Mar 15 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2004g-4vl1
  261. - rebuilt for Vine Linux
  262. * Wed Mar 1 2006 Rex Dieter <rexdieter[AT]users.sf.net>
  263. - fc5: gcc/glibc respin
  264. * Thu Nov 17 2005 Rex Dieter <rexdieter[AT]users.sf.net> 2004g-4
  265. - use pam's "include" feature on fc5
  266. - cleanup %%doc handling, remove useless bits
  267. * Thu Nov 17 2005 Rex Dieter <rexdieter[AT]users.sf.net> 2004g-3
  268. - omit trailing whitespace in default c-client.cf
  269. * Wed Nov 16 2005 Rex Dieter <rexdieter[AT]users.sf.net> 2004g-2
  270. - rebuild for new openssl
  271. * Mon Sep 26 2005 Rex Dieter <rexdieter[AT]users.sf.net> 2004g-1
  272. - imap-2004g
  273. - /etc -> %%_sysconfdir
  274. - use %%{?_smp_mflags}
  275. * Mon Aug 15 2005 Rex Dieter <rexdieter[AT]users.sf.net> 2004e-1
  276. - imap-2004e
  277. - rename: imap -> uw-imap (yay, we get to drop the Epoch)
  278. - sslcerts=%{_sysconfdir}/pki/tls/certs if exists, else /usr/share/ssl/certs
  279. * Fri Apr 29 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1:2004d-1
  280. - 2004d
  281. - imap-libs -> lib%%{soname}%%{version} (ie, libc-client2004d), so we can
  282. have multiple versions (shared-lib only) installed
  283. - move mlock to -utils.
  284. - revert RFC2301, locks out too many folks where SSL is unavailable
  285. * Thu Apr 28 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1:2004-0.fdr.11.c1
  286. - change default driver from mbox to mbx
  287. - comply with RFC 3501 security: Unencrypted plaintext passwords are prohibited
  288. * Fri Jan 28 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1:2004-0.fdr.10.c1
  289. - imap-2004c1 security release:
  290. http://www.kb.cert.org/vuls/id/702777
  291. * Thu Jan 20 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1:2004-0.fdr.9.c
  292. - imap2004c
  293. - -utils: dmail,mailutil,tmail
  294. - -libs: include mlock (so it's available for other imap clients, like pine)
  295. - remove extraneous patches
  296. - %%_sysconfigdir/c-client.cf: use to set MailDir (but don't if upgrading from
  297. an older version (ie, if folks don't want/expect a change in behavior)
  298. * Mon Sep 13 2004 Rex Dieter <rexdieter at sf.net. 1:2004-0.fdr.8.a
  299. - don't use mailsubdir patch (for now)
  300. * Wed Aug 11 2004 Rex Dieter <rexdieter at sf.net> 1:2004-0.fdr.7.a
  301. - mailsubdir patch (default to ~/Mail instead of ~)
  302. * Fri Jul 23 2004 Rex Dieter <rexdieter at sf.net> 1:2004-0.fdr.6.a
  303. - remove Obsoletes/Provides: libc-client (they can, in fact, co-xist)
  304. - -devel: remove O/P: libc-client-devel -> Conflicts: libc-client-devel
  305. * Fri Jul 16 2004 Rex Dieter <rexdieter at sf.net> 1:2004-0.fdr.5.a
  306. - imap2004a
  307. * Tue Jul 13 2004 Rex Dieter <rexdieter at sf.net> 1:2004-0.fdr.4
  308. - -devel: Req: %%{name}-libs
  309. * Tue Jul 13 2004 Rex Dieter <rexdieter at sf.net> 1:2004-0.fdr.3
  310. - previous imap pkgs had Epoch: 1, we need it too.
  311. * Wed Jul 07 2004 Rex Dieter <rexdieter at sf.net> 2004-0.fdr.2
  312. - use %%version as %%somajver (like how openssl does it)
  313. * Wed Jul 07 2004 Rex Dieter <rexdieter at sf.net> 2004-0.fdr.1
  314. - imap-2004
  315. - use mlock, if available.
  316. - Since libc-client is an attrocious name choice, we'll trump it,
  317. and provide imap, imap-libs, imap-devel instead (redhat bug #120873)
  318. * Wed Apr 07 2004 Kaj J. Niemi <kajtzu@fi.basen.net> 2002e-4
  319. - Use CFLAGS (and RPM_OPT_FLAGS) during the compilation
  320. - Build the .so through gcc instead of directly calling ld
  321. * Fri Mar 5 2004 Joe Orton <jorton@redhat.com> 2002e-3
  322. - install .so with permissions 0755
  323. - make auth_md5.c functions static to avoid symbol conflicts
  324. - remove Epoch: 0
  325. * Tue Mar 02 2004 Kaj J. Niemi <kajtzu@fi.basen.net> 0:2002e-2
  326. - "lnp" already uses RPM_OPT_FLAGS
  327. - have us conflict with imap, imap-devel
  328. * Tue Mar 2 2004 Joe Orton <jorton@redhat.com> 0:2002e-1
  329. - add post/postun, always use -fPIC
  330. * Tue Feb 24 2004 Kaj J. Niemi <kajtzu@fi.basen.net>
  331. - Name change from c-client to libc-client
  332. * Sat Feb 14 2004 Kaj J. Niemi <kajtzu@fi.basen.net> 0:2002e-0.1
  333. - c-client 2002e is based on imap-2002d
  334. - Build shared version, build logic is copied from FreeBSD net/cclient