/[smeserver]/rpms/smeserver-dovecot/sme10/smeserver-dovecot.spec
ViewVC logotype

Annotation of /rpms/smeserver-dovecot/sme10/smeserver-dovecot.spec

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


Revision 1.17 - (hide annotations) (download)
Tue Dec 8 20:24:26 2020 UTC (3 years, 5 months ago) by jpp
Branch: MAIN
Changes since 1.16: +15 -1 lines
* Tue Dec 08 2020 Jean-Philipe Pialasse <tests@pialasse.com> 1.6.0-15.sme
- cleanup /var/service/dovecot [SME: 11101]
  close logger and service from previous runit instance before starting systemd one

1 stephdl 1.1 %define version 1.6.0
2 jpp 1.17 %define release 15
3 stephdl 1.1 %define name smeserver-dovecot
4    
5    
6     Summary: Dovecot IMAP server integration
7     Name: %{name}
8     Version: %{version}
9     Release: %{release}%{?dist}
10     License: GPL
11     Group: Networking/Daemons
12     Source: %{name}-%{version}.tar.xz
13    
14 vip-ire 1.2 Patch0: smeserver-dovecot-1.6.0-set_cipher_list.patch
15 jpp 1.3 Patch1: smeserver-dovecot-1.6.0-pop3.patch
16 jpp 1.4 Patch2: smeserver-dovecot-1.6.0-bz10934-Ciphers-and-TLS.patch
17 jpp 1.6 Patch3: smeserver-dovecot-1.6.0-bz9865-use-email-to-auth.patch
18 jcrisp 1.9 Patch4: smeserver-dovecot-1.6.0-fix-createlinks-1.patch
19 jpp 1.14 Patch5: smeserver-dovecot-1.6.0-bz11101-systemd.patch
20 jpp 1.15 Patch6: smeserver-dovecot-1.6.0-bz10947-idle_notify.patch
21 vip-ire 1.2
22 stephdl 1.1 BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
23     BuildArchitectures: noarch
24     BuildRequires: e-smith-devtools
25    
26     Requires: e-smith-base >= 5.2.0
27     Requires: dovecot >= 2.0.9
28    
29     Provides: e-smith-imap
30 jpp 1.3 Provides: e-smith-pop3
31 stephdl 1.1 Obsoletes: e-smith-imap
32 jpp 1.3 Obsoletes: e-smith-pop3
33 stephdl 1.1 Obsoletes: e-smith-ssl-imap
34     Obsoletes: e-smith-wu-imap
35     Obsoletes: imap
36     Obsoletes: m4 <= 1.4.5
37     Obsoletes: mailfront <= 1.10
38     Obsoletes: stunnel <= 4.15
39     Obsoletes: stunnel-tls <= 3.22
40     Obsoletes: words <= 3.0
41    
42     %description
43     Configure the dovecot IMAP server with sieve scripts support,
44     quota, ACL, extended logging, master user
45    
46     %changelog
47 jpp 1.17 * Tue Dec 08 2020 Jean-Philipe Pialasse <tests@pialasse.com> 1.6.0-15.sme
48     - cleanup /var/service/dovecot [SME: 11101]
49     close logger and service from previous runit instance before starting systemd one
50    
51 jpp 1.16 * Mon Dec 07 2020 Jean-Philipe Pialasse <tests@pialasse.com> 1.6.0-14.sme
52     - add systemd drop-in expand in bootstrap-console-save, console-save, post-install, post-upgrade [SME: 11101]
53    
54 jpp 1.13 * Sun Dec 06 2020 Jean-Philipe Pialasse <tests@pialasse.com> 1.6.0-13.sme
55     - move service to systemd [SME: 11101]
56 jpp 1.15 - add imap idle notify interval setting [SME: 10947]
57 jpp 1.13
58 jpp 1.12 * Mon May 04 2020 Jean-Philipe Pialasse <tests@pialasse.com> 1.6.0-12.sme
59 jpp 1.11 - fix typo in enabling TLSv1.2 as default [SME: 10934]
60    
61 jcrisp 1.10 * Mon May 04 2020 John Crisp <jcrisp@safeandsoundit.co.uk> 1.6.0-10.sme
62     - fix typo in 35ssl template [SME: 10934]
63    
64     * Mon May 04 2020 John Crisp <jcrisp@safeandsoundit.co.uk> 1.6.0-9.sme
65     - fix typo in createlinks [SME: 10932]
66 jcrisp 1.9
67 jpp 1.8 * Sat May 02 2020 Jean-Philipe Pialasse <tests@pialasse.com> 1.6.0-8.sme
68     - revert property names with period in it [SME: 10934]
69    
70 jpp 1.7 * Sat May 02 2020 Jean-Philipe Pialasse <tests@pialasse.com> 1.6.0-7.sme
71     - add property AcceptFullEmail with enabled as default [SME: 9865]
72 jpp 1.6 * this allow to login using either username or username@domain.tld
73     dovecot get the username part.
74    
75 jpp 1.5 * Fri May 01 2020 Jean-Philipe Pialasse <tests@pialasse.com> 1.6.0-5.sme
76 jpp 1.4 - set TLSv1 and TLSv1.1 disabled as default [SME: 10934]
77     * Amend cipher list
78     * force cipher order
79     * 4096 default dh parameter
80 jpp 1.5 * property names without period to avoid issues
81 jpp 1.4
82 jpp 1.3 * Sun Apr 26 2020 Jean-Philipe Pialasse <tests@pialasse.com> 1.6.0-3.sme
83     - Use Dovecot for pop3 and pop3s [SME: 7510]
84     *delete /etc/pam.d/pop3 if exists
85     *listen on internal and external interface instead of *
86     *update the service on ip-change
87     *reuse the ListenIP prop in pop3* and added to imap*
88     *migrate pop3* MemLimit to pop3 ProcessMemoryLimit as per imap
89     *TODO make it ipv6 ready
90     - smeserver-dovecot-upgrade event for update without reboot [SME: 10932]
91    
92 vip-ire 1.2 * Thu Feb 23 2017 Daniel Berteaud <daniel@firewall-services.com> 1.6.0-2.sme
93     - Better default cipher suite, and honor global suite [SME: 10110]
94    
95 stephdl 1.1 * Sat Feb 06 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 1.6.0-1.sme
96     - Initial release to sme10
97    
98     * Wed Jan 13 2016 Daniel Berteaud <daniel@firewall-services.com> - 1.4.0-20.sme
99     - Hook into the new ssl-update event [SME: 9152]
100    
101     * Thu Jan 7 2016 Daniel Berteaud <daniel@firewall-services.com> - 1.4.0-19.sme
102     - Allow settings SSL protocols from DB (and set TLSv1 back to enabled
103     on a default install) [SME: 9175]
104    
105     * Wed Jan 6 2016 Daniel Berteaud <daniel@firewall-services.com> - 1.4.0-18.sme
106     - Disable TLSv1 [SME: 9175]
107    
108     * Wed Jan 7 2015 Daniel Berteaud <daniel@firewall-services.com> - 1.4.0-17.sme
109     - Allow custom passdb args [SME: 8778]
110    
111     * Thu Jan 23 2014 Daniel Berteaud <daniel@firewall-services.com> - 1.4.0-16.sme
112     - Remove limit props from the imaps DB entry [SME: 8082]
113    
114     * Tue Dec 24 2013 Daniel Berteaud <daniel@firewall-services.com> - 1.4.0-15.sme
115     - Apply process limits [SME: 8082]
116    
117     * Sun Jun 23 2013 Daniel Berteaud <daniel@firewall-services.com> - 1.4.0-14.sme
118     - Listen on loopback if disabled [SME: 7697]
119    
120     * Wed May 29 2013 chris burnat <devlist@burnat.com> - 1.4.0-13.sme
121     - Reverse changes made in 1.4.0-12 [SME: 7597]
122    
123     * Fri May 24 2013 chris burnat <devlist@burnat.com> - 1.4.0-12.sme
124     - Fix IMAP folders dont present correctly in Outlook 2007 [SME: 7597]
125    
126     * Sat May 18 2013 Daniel Berteaud <daniel@firewall-services.com> - 1.4.0-11.sme
127     - Fix permissions on imapd.pem as it's used by pop3s [SME: 7570]
128    
129     * Wed Apr 24 2013 Daniel Berteaud <daniel@firewall-services.com> - 1.4.0-10.sme
130     - Do not obsolete bglibs, it's required for cvm [SME: 7509]
131    
132     * Tue Apr 16 2013 Daniel Berteaud <daniel@firewall-services.com> - 1.4.0-9.sme
133     - Allow plaintext (unless explicitly disabled) [SME: 7549]
134    
135     * Wed Apr 10 2013 Daniel Berteaud <daniel@firewall-services.com> - 1.4.0-8.sme
136     - Do not obsolete cvm, it's still needed for qpsmtpd [SME: 7509]
137    
138     * Thu Feb 28 2013 Shad L. Lords <slords@mail.com> - 1.4.0-7.sme
139     - Obsolete another el5 required by requires [SME: 7273]
140    
141     * Thu Feb 28 2013 Shad L. Lords <slords@mail.com> - 1.4.0-6.sme
142     - Fix Obsolete el5 mailfront version [SME: 7273]
143    
144     * Thu Feb 28 2013 Shad L. Lords <slords@mail.com> - 1.4.0-5.sme
145     - Obsolete el5 packages that were required by old requires [SME: 7273]
146    
147     * Thu Feb 28 2013 Shad L. Lords <slords@mail.com> - 1.4.0-4.sme
148     - Obsolete older requires that are no longer needed [SME: 7273]
149    
150     * Thu Feb 28 2013 Shad L. Lords <slords@mail.com> - 1.4.0-3.sme
151     - Remove requires for packages no longer needed [SME: 7405]
152    
153     * Thu Feb 28 2013 Daniel Berteaud <daniel@firewall-services.com> - 1.4.0-2.sme
154     - remove the IMAP acl and Sieve support [SME: 7405]
155     - remove obsolete changelog (used in my previous buildsys)
156    
157     * Tue Feb 26 2013 Daniel Berteaud <daniel@firewall-services.com> - 0.1.1-1
158     - store sharedmailbox dict file in /home/e-smith/db/dovecot
159    
160     * Tue Feb 12 2013 Daniel Berteaud <daniel@firewall-services.com> - 0.1.0-1
161     - Pass the recipient variable to dovcot-lda
162    
163     * Tue Nov 29 2011 Daniel Berteaud <daniel@firewall-services.com> - 0.1
164     - initial release
165    
166     %prep
167     %setup -q -n %{name}-%{version}
168 vip-ire 1.2 %patch0 -p1
169 jpp 1.3 %patch1 -p1
170 jpp 1.4 %patch2 -p1
171 jpp 1.6 %patch3 -p1
172 jcrisp 1.9 %patch4 -p1
173 jpp 1.14 %patch5 -p1
174 jpp 1.13 rm -rf root/var/service
175     mkdir -p root/etc/dovecot/ssl
176     mkdir -p root/usr/lib/systemd/system/dovecot.service.d
177     mkdir -p root/etc/e-smith/templates/usr/lib/systemd/system/dovecot.service.d/50koozali.conf
178 jpp 1.15 %patch6 -p1
179 stephdl 1.1
180     %build
181     perl createlinks
182    
183     %install
184     /bin/rm -rf $RPM_BUILD_ROOT
185     (cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT)
186     /bin/rm -f %{name}-%{version}-filelist
187     /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \
188 jpp 1.13 --file /sbin/e-smith/systemd/dovecot-control 'attr(0554,root,root)'\
189 stephdl 1.1 --file /var/service/dovecot/run 'attr(0755,root,root)' \
190     --file /var/service/dovecot/log/run 'attr(0755,root,root)' \
191     --file /var/service/dovecot/control/1 'attr(0755,root,root)' \
192     --dir /var/log/dovecot 'attr(0750,smelog,smelog)' \
193     > %{name}-%{version}-filelist
194    
195     %files -f %{name}-%{version}-filelist
196     %defattr(-,root,root)
197    
198     %clean
199     rm -rf $RPM_BUILD_ROOT
200    
201 jpp 1.17
202 stephdl 1.1 %pre
203 jpp 1.17 if [ $1 -gt 1 ] ; then
204     if [ -e /var/service/dovecot/run ] ; then
205     /usr/bin/sv d dovecot
206     /usr/bin/sv d dovecot/log
207     fi
208     if [ -e /var/service/dovecot ] ; then
209     rm -rf /var/service/dovecot
210     fi
211 stephdl 1.1
212 jpp 1.17 fi
213 stephdl 1.1 %post
214    
215     %preun
216    

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