uw-imap-vl.spec 14 KB

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