/[smeserver]/rpms/e-smith-email/sme10/e-smith-email.spec
ViewVC logotype

Diff of /rpms/e-smith-email/sme10/e-smith-email.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.2 by vip-ire, Fri Apr 22 21:26:31 2016 UTC Revision 1.16 by jpp, Sat Apr 16 16:32:01 2022 UTC
# Line 1  Line 1 
1  # $Id: e-smith-email.spec,v 1.1 2016/02/04 23:55:01 vip-ire Exp $  # $Id: e-smith-email.spec,v 1.15 2021/11/15 15:40:52 jpp Exp $
2    
3  Summary: e-smith server and gateway - email module  Summary: e-smith server and gateway - email module
4  %define name e-smith-email  %define name e-smith-email
5  Name: %{name}  Name: %{name}
6  %define version 5.6.0  %define version 5.6.0
7  %define release 2  %define release 16
8  Version: %{version}  Version: %{version}
9  Release: %{release}%{?dist}  Release: %{release}%{?dist}
10  License: GPL  License: GPL
11  Group: Networking/Daemons  Group: Networking/Daemons
12  Source: %{name}-%{version}.tar.xz  Source: %{name}-%{version}.tar.xz
13  Patch0: e-smith-email-5.6.0-smtpd_to_qpsmtpd.patch  Patch0: e-smith-email-5.6.0-smtpd_to_qpsmtpd.patch
14    Patch1: e-smith-email-5.6.0-qpsmtpd_in_auth_proxy.patch
15    Patch2: e-smith-email-5.6.0-qpsmtpd_in_masq_templates.patch
16    Patch3: e-smith-email-5.6.0-mysqld2mariadb.patch
17    Patch4: e-smith-email-5.6.0-bz3802-create-local-pseudo.patch
18    Patch5: e-smith-email-5.6.0-bz11133-bz11102-systemd-update.patch
19    Patch6: e-smith-email-5.6.0-bz11443-webmailOnlySSL.patch
20    Patch7: e-smith-email-5.6.0-bz11265-rar.patch
21    Patch8: e-smith-email-5.6.0-bz11634-lock.patch
22    Patch9: e-smith-email-5.6.0-bz11690-fixtypo.patch
23    Patch10: e-smith-email-5.6.0-bz11716-untaint.patch
24    Patch11: e-smith-email-5.6.0-bz11799.patch
25    
26  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
27  Requires: e-smith-base >= 4.15.0-39  Requires: e-smith-base >= 4.15.0-39
28  Requires: e-smith-tinydns >= 1.0.0-5  Requires: e-smith-tinydns >= 1.0.0-5
# Line 32  BuildRequires: e-smith-devtools >= 1.13. Line 44  BuildRequires: e-smith-devtools >= 1.13.
44  BuildArchitectures: noarch  BuildArchitectures: noarch
45  AutoReqProv: no  AutoReqProv: no
46    
47    %prep
48    %setup
49    %patch0 -p1
50    %patch1 -p1
51    %patch2 -p1
52    %patch3 -p1
53    %patch4 -p1
54    %patch5 -p1
55    rm -rf root/var/service/ root/service
56    %patch6 -p1
57    %patch7 -p1
58    %patch8 -p1
59    %patch9 -p1
60    %patch10 -p1
61    %patch11 -p1
62    
63    %build
64    perl createlinks
65    
66    %postun
67    
68    %install
69    rm -rf $RPM_BUILD_ROOT
70    (cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)
71    rm -f %{name}-%{version}-%{release}-filelist
72    /sbin/e-smith/genfilelist $RPM_BUILD_ROOT       \
73        --dir /var/lock/fetchmail 'attr(755,qmailr,qmail)' \
74        --dir '/var/log/smtp-auth-proxy' 'attr(2750,smelog,nofiles)' \
75        --file '/usr/local/sbin/smtp-auth-proxy.pl' 'attr(0755,root,root)' \
76        --dir '/home/e-smith/Maildir/.junkmail' 'attr(0700,admin,admin)' \
77        --dir '/home/e-smith/Maildir/.junkmail/tmp' 'attr(0700,admin,admin)' \
78        --dir '/home/e-smith/Maildir/.junkmail/new' 'attr(0700,admin,admin)' \
79        --dir '/home/e-smith/Maildir/.junkmail/cur' 'attr(0700,admin,admin)' \
80        > %{name}-%{version}-%{release}-filelist
81    echo "%doc COPYING" >> %{name}-%{version}-%{release}-filelist
82    
83    %clean
84    rm -rf $RPM_BUILD_ROOT
85    
86    %files -f %{name}-%{version}-%{release}-filelist
87    %defattr(-,root,root)
88    
89    %pre
90    if [ $1 -gt 1 ] ; then
91      if [ -e /var/service/smtp-auth-proxy/run ] ; then
92           /usr/bin/sv d smtp-auth-proxy
93           /usr/bin/sv d smtp-auth-proxy/log
94      fi
95    fi
96    
97  %description  %description
98  e-smith server and gateway software - email module.  e-smith server and gateway software - email module.
99    
100  %changelog  %changelog
101    * Sat Apr 16 2022 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-16.sme
102    - fix missing dot in regex for untainting [SME: 11799]
103      would delete any account named with the string before the dot
104    
105    * Mon Nov 15 2021 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-15.sme
106    - untainting string correctly [SME: 11716]
107    
108    * Thu Sep 16 2021 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-14.sme
109    - fix typo for mailpattern for rar files [SME: 11690]
110    
111    * Fri Sep 10 2021 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-13.sme
112    - fix perms for /var/lock/fetchmail [SME: 11634]
113    
114    * Fri Sep 10 2021 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-12.sme
115    - make /var/lock/fetchmail dir permanent [SME: 11634]
116    
117    * Tue Mar 30 2021 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-11.sme
118    - add new RAR file signatures to default mailpatterns database [SME: 11265]
119    
120    * Thu Mar 11 2021 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-10.sme
121    - webmail is only SSL [SME: 11443]
122    
123    * Fri Dec 11 2020 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-9.sme
124    - create -update event [SME: 11133]
125    - move smtp-auth-proxy to systemd [SME: 11102]
126    
127    * Sat Jun 27 2020 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-7.sme
128    - allow creation of pseudonyms with setting of local only [SME: 3802]
129    
130    * Wed Jun 15 2016 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-6.sme
131    - fix webmail status not displaying correctly in manager [SME: 9594]
132    
133    * Tue Jun 7 2016 Daniel Berteaud <daniel@firewall-services.com> 5.6.0-5.sme
134    - More change from smtpd to qpsmtpd in masq templates [SME: 9561]
135    
136    * Fri Jun 3 2016 Daniel Berteaud <daniel@firewall-services.com> 5.6.0-4.sme
137    - Replace smtpd with qpsmtpd in smtp-auth-proxy [SME: 9554]
138    
139    * Thu May 12 2016 Daniel Berteaud <daniel@firewall-services.com> 5.6.0-3.sme
140    - Rebuild for [SME: 9393]
141    
142  * Fri Apr 22 2016 Daniel Berteaud <daniel@firewall-services.com> 5.6.0-2.sme  * Fri Apr 22 2016 Daniel Berteaud <daniel@firewall-services.com> 5.6.0-2.sme
143  - Merge smtpd entry into qpsmtpd, same for ssmtpd into sqpsmtpd [SME: 9478]  - Merge smtpd entry into qpsmtpd, same for ssmtpd into sqpsmtpd [SME: 9478]
144    
# Line 1419  e-smith server and gateway software - em Line 1522  e-smith server and gateway software - em
1522  - [4.6.0-01]  - [4.6.0-01]
1523  - Rolled version number to 4.6.0-01. Includes patches upto 4.5.0-20.  - Rolled version number to 4.6.0-01. Includes patches upto 4.5.0-20.
1524    
 %prep  
 %setup  
 %patch0 -p1  
   
 %build  
 perl createlinks  
   
 %postun  
   
 %install  
 rm -rf $RPM_BUILD_ROOT  
 (cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)  
 rm -f %{name}-%{version}-%{release}-filelist  
 /sbin/e-smith/genfilelist $RPM_BUILD_ROOT       \  
     --dir /var/lock/fetchmail 'attr(755,qmailr,qmail)' \  
     --dir '/var/service/smtp-auth-proxy' 'attr(1755,root,root)' \  
     --file '/var/service/smtp-auth-proxy/down' 'attr(0644,root,root)' \  
     --file '/var/service/smtp-auth-proxy/run' 'attr(0755,root,root)' \  
     --dir '/var/service/smtp-auth-proxy/supervise' 'attr(0700,root,root)' \  
     --dir '/var/service/smtp-auth-proxy/log' 'attr(0755,root,root)' \  
     --file '/var/service/smtp-auth-proxy/log/run' 'attr(0755,root,root)' \  
     --file '/var/service/smtp-auth-proxy/log/supervise' 'attr(0700,root,root)' \  
     --dir '/var/log/smtp-auth-proxy' 'attr(2750,smelog,nofiles)' \  
     --file '/usr/local/sbin/smtp-auth-proxy.pl' 'attr(0755,root,root)' \  
     --dir '/home/e-smith/Maildir/.junkmail' 'attr(0700,admin,admin)' \  
     --dir '/home/e-smith/Maildir/.junkmail/tmp' 'attr(0700,admin,admin)' \  
     --dir '/home/e-smith/Maildir/.junkmail/new' 'attr(0700,admin,admin)' \  
     --dir '/home/e-smith/Maildir/.junkmail/cur' 'attr(0700,admin,admin)' \  
     > %{name}-%{version}-%{release}-filelist  
 echo "%doc COPYING" >> %{name}-%{version}-%{release}-filelist  
   
 %clean  
 rm -rf $RPM_BUILD_ROOT  
   
 %files -f %{name}-%{version}-%{release}-filelist  
 %defattr(-,root,root)  


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed