/[smecontribs]/rpms/smeserver-geoip/contribs9/smeserver-geoip.spec
ViewVC logotype

Diff of /rpms/smeserver-geoip/contribs9/smeserver-geoip.spec

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

Revision 1.10 by jcrisp, Mon Oct 29 11:23:10 2018 UTC Revision 1.16 by jpp, Fri Oct 18 22:13:31 2019 UTC
# Line 1  Line 1 
1  %define name smeserver-geoip  %define name smeserver-geoip
2  %define version 1.2  %define version 1.2
3  %define release 3  %define release 9
4    
5  Summary: SME Server geoip plugin  Summary: SME Server geoip plugin
6  Name: %{name}  Name: %{name}
# Line 12  Source: %{name}-%{version}.tar.gz Line 12  Source: %{name}-%{version}.tar.gz
12  Packager: Doug Kruhm <dakruhm@daknetworks.net>  Packager: Doug Kruhm <dakruhm@daknetworks.net>
13  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
14  BuildArchitectures: noarch  BuildArchitectures: noarch
 Requires: perl-GeoIP2  
15  Requires: GeoIP >= 1.6.5  Requires: GeoIP >= 1.6.5
16  BuildRequires: e-smith-devtools >= 1.13.1-03  BuildRequires: e-smith-devtools >= 1.13.1-03
17  Patch0: smeserver-geoip-conf-typo.patch  Patch0: smeserver-geoip-conf-typo.patch
18  Patch1: smeserver-geoip-fix-city-createlinks.patch  Patch1: smeserver-geoip-fix-city-createlinks.patch
19    Patch2: smeserver-geoip-1.2-check_badcountries.patch
20    Patch3: smeserver-geoip-1.2-check_badcountries-mailstats.patch
21    Patch4: smeserver-geoip-1.2-bz10820-geoipv1-blockvountries-qpsmtpd.patch
22    
23  %description  %description
24  The GEOIP plugin lets us know which country our mail server is receiving mail from. If we're receiving too much spam from a particular country, this will help track it down and then use that info to reject connections from that country. This ends up taking the load off our servers.  The GEOIP plugin lets us know which country our mail server is receiving mail from. If we're receiving too much spam from a particular country, this will help track it down and then use that info to reject connections from that country. This ends up taking the load off our servers.
# Line 24  The GEOIP plugin lets us know which coun Line 26  The GEOIP plugin lets us know which coun
26  CHANGE THE CONFIG DB: config setprop qpsmtpd BadCountries <countrycode> (i.e. config setprop qpsmtpd BadCountries BR)  CHANGE THE CONFIG DB: config setprop qpsmtpd BadCountries <countrycode> (i.e. config setprop qpsmtpd BadCountries BR)
27  SIGNAL EVENT: signal-event email-update  SIGNAL EVENT: signal-event email-update
28    
29    #----------------------------------------------------
30    
31    %package        -n smeserver-geoip1
32    Summary:        SME Server geoip plugin v1
33    Group:          Email
34    Requires:       perl-Geo-IP
35    Requires:       GeoIP >= 1.6.5
36    BuildRequires:  e-smith-devtools >= 1.13.1-03
37    
38    %description    -n smeserver-geoip1
39    The GEOIP plugin lets us know which country our mail server is receiving mail from. If we're receiving too much spam from a particular country, this will help track it down and then use that info to reject connections from that country. This ends up taking the load off our servers.
40    
41    CHANGE THE CONFIG DB: config setprop qpsmtpd BadCountries <countrycode> (i.e. config setprop qpsmtpd BadCountries BR)
42    SIGNAL EVENT: signal-event email-update
43    #----------------------------------------------------
44    
45    %package        -n smeserver-geoip2
46    Summary:        SME Server geoip plugin v2
47    Group:          Email
48    Requires:       smeserver-geoip
49    Requires:       perl-GeoIP2
50    Requires:       GeoIP >= 1.6.5
51    BuildRequires:  e-smith-devtools >= 1.13.1-03
52    
53    
54    %description    -n smeserver-geoip2
55    The GEOIP plugin lets us know which country our mail server is receiving mail from. If we're receiving too much spam from a particular country, this will help track it down and then use that info to reject connections from that country. This ends up taking the load off our servers.
56    
57    CHANGE THE CONFIG DB: config setprop qpsmtpd BadCountries <countrycode> (i.e. config setprop qpsmtpd BadCountries BR)
58    SIGNAL EVENT: signal-event email-update
59    #----------------------------------------------------
60    
61  %changelog  %changelog
62    * Fri Oct 18 2019 Jean-Philipe Pialasse <tests@pialasse.com> 1.2-9.sme
63    - revert blocking country for geoipv1 qpsmtpd plugin [SME: 10820]
64    
65    * Thu Jan 24 2019 Jean-Philipe Pialasse <tests@pialasse.com> 1.2-8.sme
66    - make smeserver-geoip2 requires smeserver-geoip  [SME: 10691]
67      this will avoid having both packages sharing few files.
68    
69    * Tue Jan 15 2019 John Crisp <jcrisp@safeandsoundit.co.uk> 1.2-7.sme
70    - Update check_badcountries to work with mailstats
71    
72    * Sat Jan 05 2019 Jean-Philipe Pialasse <tests@pialasse.com> 1.2-6.sme
73    - remove crontab fragment for v1 [SME: 10691]
74    
75    * Sat Jan 05 2019 Jean-Philipe Pialasse <tests@pialasse.com> 1.2-5.sme
76    - fix wrong loglevel LOGINFO instead of LOGNOTICE needed [SME: 10679]
77    - try first db v2 and back on v1 if not available [SME: 10691]
78    - workaround FATAL PLUGIN ERROR when method name_by_addr not existing priori geo-ip 1.39 [SME: 10691]
79    
80    * Fri Jan 04 2019 Jean-Philipe Pialasse <tests@pialasse.com> 1.2-4.sme
81    - split smeserver-geoip into smeserver-geoip and smeserver-geoip2 for compatibility [SME: 10691]
82    - TODO: workaround to find for plugin compatibility
83    
84  * Mon Oct 29 2018 John Crisp <jcrisp@safeandsoundit.co.uk> 1.2-3.sme  * Mon Oct 29 2018 John Crisp <jcrisp@safeandsoundit.co.uk> 1.2-3.sme
85  - Fix Use of uninitialized value $city in string eq  - Fix Use of uninitialized value $city in string eq
86  - Fix createlinks geoip-update action  - Fix createlinks geoip-update action
# Line 79  SIGNAL EVENT: signal-event email-update Line 135  SIGNAL EVENT: signal-event email-update
135  %setup  %setup
136  %patch0 -p1  %patch0 -p1
137  %patch1 -p1  %patch1 -p1
138    %patch2 -p1
139    %patch3 -p1
140    %patch4 -p1
141    
142  %build  %build
143  %{__mkdir_p} root/var/lib/GeoIP  %{__mkdir_p} root/var/lib/GeoIP
# Line 90  rm -rf $RPM_BUILD_ROOT Line 149  rm -rf $RPM_BUILD_ROOT
149  rm -f %{name}-%{version}-filelist  rm -f %{name}-%{version}-filelist
150  /sbin/e-smith/genfilelist $RPM_BUILD_ROOT > %{name}-%{version}-filelist  /sbin/e-smith/genfilelist $RPM_BUILD_ROOT > %{name}-%{version}-filelist
151    
152    cat %{name}-%{version}-filelist \
153    |grep -v 'etc/e-smith/templates/etc/GeoIP.conf' \
154    |grep -v 'usr/bin/geocity.pl' \
155    |grep -v 'usr/bin/geocountry.pl'\
156    |grep -v 'smeserver-geopip-download-action' \
157    |grep -v 'templates2expand/etc/GeoIP.conf' \
158    |grep -v '/etc/crontab/91_Update_Geoip_db' \
159     > %{name}-%{version}-filelist-v1
160    diff -u %{name}-%{version}-filelist %{name}-%{version}-filelist-v1 | grep -E "^\-"| sed -E 's/^\-//'|grep -v filelist > %{name}-%{version}-filelist-v2
161    
162  %clean  %clean
163  rm -rf $RPM_BUILD_ROOT  rm -rf $RPM_BUILD_ROOT
164    
# Line 97  rm -rf $RPM_BUILD_ROOT Line 166  rm -rf $RPM_BUILD_ROOT
166    
167  %postun  %postun
168    
169  %files -f %{name}-%{version}-filelist  %files -f %{name}-%{version}-filelist-v1
170  %defattr(-,root,root)  %defattr(-,root,root)
171    
172    
173    
174    %files -n smeserver-geoip2 -f %{name}-%{version}-filelist-v2
175    %defattr(-,root,root,-)
176    
177    %files -n smeserver-geoip1 -f %{name}-%{version}-filelist-v1
178    %defattr(-,root,root,-)
179    
180    
181    


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