uw-imap-vl.spec 14 KB

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