1 |
Summary: sme server integration of phplist |
2 |
Name: smeserver-phplist |
3 |
Version: 0.2.1 |
4 |
Release: 1%{?dist} |
5 |
License: GNU GPL version 2 |
6 |
URL: http://www.phplist.com |
7 |
Group: SMEserver/addon |
8 |
Source: %{name}-%{version}.tar.gz |
9 |
|
10 |
BuildArchitectures: noarch |
11 |
BuildRequires: e-smith-devtools |
12 |
BuildRoot: /var/tmp/%{name}-%{version} |
13 |
Requires: e-smith-release >= 8.0 |
14 |
Requires: phplist >= 3.0.6 |
15 |
Requires: smeserver-webapps-common |
16 |
AutoReqProv: no |
17 |
|
18 |
%description |
19 |
This rpm provides all the needed templates to get phplist |
20 |
running on SME Server |
21 |
|
22 |
%changelog |
23 |
* Wed Mar 18 2020 Daniel Berteaud <daniel@firewall-services.com> 0.2.1-1 |
24 |
- new package built with tito |
25 |
|
26 |
* Wed Jul 30 2014 Daniel Berteaud <daniel@firewall-services.com> 0.2.0-1 |
27 |
- Nearly complete rewrite |
28 |
- Change the way bounces are processed |
29 |
- Add a daemon to process the queue and the bounces |
30 |
- Requires phplist 3.0.6 |
31 |
|
32 |
* Fri Dec 31 2010 Daniel Berteaud <daniel@firewall-services.com> 0.1-3 |
33 |
- Fix typo in BouncesPassword prop name |
34 |
|
35 |
* Thu Dec 30 2010 Daniel Berteaud <daniel@firewall-services.com> 0.1-2 |
36 |
- Change the way mysql permissions are applied |
37 |
- Rewrite URL to force SSL for /lists/admin |
38 |
- Add LemonLDAP auth support (disable basic auth) |
39 |
- Add AdminUsers prop (only for basic auth) |
40 |
|
41 |
* Mon Dec 20 2010 Daniel Berteaud <daniel@firewall-services.com> 0.1-1 |
42 |
- Minor templates cleanup |
43 |
|
44 |
* Mon Dec 20 2010 Pierre Bourdin <pierre@firewall-services.com> 0.1-0.beta9 |
45 |
- patch to restrict admin interface with SSL + login |
46 |
- Separation of the main Alias for Apache in two parts, Admin and Subscibe part |
47 |
|
48 |
* Mon Dec 20 2010 Pierre Bourdin <pierre@firewall-services.com> 0.1-0.beta8 |
49 |
- patch for force SSL connection and add access variable in DB configuration |
50 |
|
51 |
* Thu Dec 09 2010 Pierre Bourdin <pierre@firewall-services.com> 0.1-0.beta2 |
52 |
- patch some forgotten parameters in configuration files and add DB configuration |
53 |
|
54 |
* Wed Dec 08 2010 Pierre Bourdin <pierre@firewall-services.com> 0.1-0.beta0 |
55 |
- initial release |
56 |
|
57 |
|
58 |
%prep |
59 |
%setup |
60 |
|
61 |
%build |
62 |
perl ./createlinks |
63 |
%{__mkdir_p} root/var/lib/phplist |
64 |
%{__mkdir_p} root/var/log/phplist |
65 |
|
66 |
%install |
67 |
rm -rf $RPM_BUILD_ROOT |
68 |
(cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT) |
69 |
rm -f %{name}-%{version}-filelist |
70 |
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT \ |
71 |
--dir /var/lib/phplist 'attr(0750,www,www)' \ |
72 |
--dir /var/log/phplist 'attr(0750,smelog,smelog)' \ |
73 |
--file /var/lib/phplist/bounces.mbox 'config(noreplace) %attr(0640,www,www)' \ |
74 |
--file /var/service/phplist/run 'attr(0750,root,root)' \ |
75 |
--file /var/service/phplist/log/run 'attr(0750,root,root)' \ |
76 |
> %{name}-%{version}-filelist |
77 |
|
78 |
%files -f %{name}-%{version}-filelist |
79 |
%defattr(-,root,root) |
80 |
|
81 |
%clean |
82 |
rm -rf $RPM_BUILD_ROOT |
83 |
|
84 |
%postun |
85 |
|
86 |
true |
87 |
|