1 |
Summary: Daily mail statistics for SME Server |
2 |
%define name smeserver-mailstats |
3 |
Name: %{name} |
4 |
%define version 0.0.3 |
5 |
%define release 1 |
6 |
Version: %{version} |
7 |
Release: %{release}%{?dist} |
8 |
License: GPL |
9 |
Group: SME/addon |
10 |
Source: %{name}-%{version}.tar.gz |
11 |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
12 |
BuildArchitectures: noarch |
13 |
Requires: smeserver-release => 7.0 |
14 |
BuildRequires: e-smith-devtools >= 1.13.1-03 |
15 |
|
16 |
%description |
17 |
A script that via cron.d e-mails mail statistics to admin on a daily basis. |
18 |
See http://www.contribs.org/bugzilla/show_bug.cgi?id=819 |
19 |
|
20 |
%changelog |
21 |
* Fri Feb 15 2008 Shad L. Lords <slords@mail.com> 0.0.3-1 |
22 |
- Roll new version in prep for building on new buildsys |
23 |
|
24 |
* Thu Oct 11 2007 <charlie_brady@mitel.com> 0.0.2-07 |
25 |
- Rename parse_args => analysis_period, and simplify substantially. |
26 |
|
27 |
* Thu Oct 11 2007 <charlie_brady@mitel.com> 0.0.2-06 |
28 |
- Avoid re-opening config db all the time. |
29 |
|
30 |
* Thu Oct 11 2007 <charlie_brady@mitel.com> 0.0.2-05 |
31 |
- Redo 1st of month bug fix. Expand all tabs to four spaces. [SME: 3366] |
32 |
|
33 |
* Thu Oct 11 2007 <charlie_brady@mitel.com> 0.0.2-04 |
34 |
- Update spamfilter-stats-7.pl to Brian's 0.6.15 version. [SME: 3068] |
35 |
|
36 |
* Mon Oct 1 2007 Charlie Brady <charlie_brady@mitel.com> 0.0.2-03 |
37 |
- Fix 1st of month bug, and uninitialised value warning. [SME: 3366] |
38 |
|
39 |
* Mon Sep 10 2007 Charlie Brady <charlie_brady@mitel.com> 0.0.2-02 |
40 |
- Patch to update spamfilter-stats-7.pl to most recent verson that is |
41 |
attached in bugzilla. http://bugs.contribs.org/show_bug.cgi?id=3068 |
42 |
|
43 |
* Mon Sep 10 2007 Charlie Brady <charlie_brady@mitel.com> 0.0.2-01 |
44 |
- Repackaging Darrell's 0.0.1-2dmay as 0.0.2. After all this time Darrell |
45 |
is still publishing multiple RPMs with tarballs with different content |
46 |
with the same version number - grrrr!!! Odd, since he is the quoted author |
47 |
of rpm-patch-howto.html. |
48 |
|
49 |
* Thu Aug 23 2007 John H. Bennett III <bennettj@johnbennettservices.com> [0.0.1-2] |
50 |
- Patch to update spamfilter-stats-7.pl to most recent verson that is |
51 |
attached in bugzilla. http://bugs.contribs.org/show_bug.cgi?id=3068 |
52 |
|
53 |
* Wed Apr 11 2007 Darrell May <dmay@myezserver.com> |
54 |
- added db qpsmtpdLogLevel migrate fragment |
55 |
- changed post commands being echoed |
56 |
- [0.0.1-2dmay] |
57 |
* Wed Apr 11 2007 Darrell May <dmay@myezserver.com> |
58 |
- updated to use qpsmtpd logterse plugin |
59 |
- [0.0.1-1dmay] |
60 |
* Fri Oct 13 2006 Darrell May <dmay@myezserver.com> |
61 |
- bundled into rpm |
62 |
- [0.0.1-0dmay] |
63 |
|
64 |
%prep |
65 |
|
66 |
%setup |
67 |
|
68 |
%build |
69 |
|
70 |
%install |
71 |
/bin/rm -rf $RPM_BUILD_ROOT |
72 |
(cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT) |
73 |
/bin/rm -f %{name}-%{version}-filelist |
74 |
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT > %{name}-%{version}-filelist |
75 |
|
76 |
%clean |
77 |
/bin/rm -rf $RPM_BUILD_ROOT |
78 |
|
79 |
%files -f %{name}-%{version}-filelist |
80 |
%defattr(-,root,root) |
81 |
|