1 |
%define name smeserver-geoip |
2 |
%define version 1.0.5 |
3 |
%define release 1 |
4 |
|
5 |
Summary: SME Server geoip plugin |
6 |
Name: %{name} |
7 |
Version: %{version} |
8 |
Release: %{release} |
9 |
License: GPL |
10 |
Group: Email |
11 |
Source: %{name}-%{version}.tar.gz |
12 |
Packager: Doug Kruhm <dakruhm@daknetworks.net> |
13 |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
14 |
BuildArchitectures: noarch |
15 |
Requires: perl-Geo-IP |
16 |
BuildRequires: e-smith-devtools >= 1.13.1-03 |
17 |
|
18 |
%description |
19 |
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. |
20 |
|
21 |
CHANGE THE CONFIG DB: config setprop qpsmtpd BadCountries <countrycode> (i.e. config setprop qpsmtpd BadCountries BR) |
22 |
SIGNAL EVENT: signal-event email-update |
23 |
|
24 |
%changelog |
25 |
* Mon Sep 03 2012 Doug Kruhm <dakruhm@daknetworks.net> 1.0.5 |
26 |
- defining $country to reduce noise if not found [SME: 5011] |
27 |
- fixed misspelling in response if country is blocked [SME: 7058] |
28 |
- cleaning up versioning to MAJOR-MINOR-PATCH |
29 |
|
30 |
* Fri May 01 2009 Doug Kruhm <dakruhm@daknetworks.net> 1.0.0-04 |
31 |
- added response to connecting server if blocked [SME: 5011] |
32 |
|
33 |
* Fri May 01 2009 Doug Kruhm <dakruhm@daknetworks.net> 1.0.0-03 |
34 |
- added line to reduce log noise [SME: 5011] |
35 |
|
36 |
* Fri May 01 2009 Doug Kruhm <dakruhm@daknetworks.net> 1.0.0-02 |
37 |
- db defaults migrated from SPEC file to rpm files [SME: 5193] |
38 |
- removed %post and %postun macros [SME: 5194] |
39 |
- added Requires perl-Geo-IP [SME: 1866] |
40 |
- added e-smith-devtools as a requirement [SME: 1866] |
41 |
|
42 |
* Thu Jun 16 2007 Doug Kruhm <dakruhm@daknetworks.net> |
43 |
- 1.0.0-01 |
44 |
- Original version |
45 |
|
46 |
|
47 |
%prep |
48 |
%setup |
49 |
|
50 |
%build |
51 |
|
52 |
|
53 |
%install |
54 |
rm -rf $RPM_BUILD_ROOT |
55 |
(cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT) |
56 |
rm -f %{name}-%{version}-filelist |
57 |
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT > %{name}-%{version}-filelist |
58 |
|
59 |
%clean |
60 |
rm -rf $RPM_BUILD_ROOT |
61 |
|
62 |
%post |
63 |
|
64 |
%postun |
65 |
|
66 |
%files -f %{name}-%{version}-filelist |
67 |
%defattr(-,root,root) |