16d79b773c
- Re-ordered changelog to make it building on Leap versions again OBS-URL: https://build.opensuse.org/request/show/950206 OBS-URL: https://build.opensuse.org/package/show/server:mail/dovecot?expand=0&rev=25
127 lines
4.5 KiB
RPMSpec
127 lines
4.5 KiB
RPMSpec
#
|
|
# spec file for package dovecot
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: dovecot
|
|
Version: 2.3
|
|
Release: 0
|
|
Summary: IMAP and POP3 Server Written Primarily with Security in Mind
|
|
License: BSD-3-Clause AND LGPL-2.1-or-later AND MIT
|
|
Group: Productivity/Networking/Email/Servers
|
|
URL: http://www.dovecot.org/
|
|
PreReq: dovecot-implementation
|
|
PreReq: shadow
|
|
Recommends: %{name}23
|
|
#!BuildIgnore: dovecot-implementation
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildArch: noarch
|
|
Source0: %{name}-2.0.configfiles
|
|
Source1: %{name}-2.1.configfiles
|
|
Source2: %{name}-2.2.configfiles
|
|
Source4: %{name}.pam
|
|
Source5: %{name}.README.SUSE
|
|
Source7: %{name}.tmpfiles.d
|
|
Source8: %{name}.service
|
|
Source9: %{name}.socket
|
|
Source10: %{name}-2.1-pigeonhole.configfiles
|
|
Source11: %{name}-2.2-pigeonhole.configfiles
|
|
Source12: %{name}-2.3.configfiles
|
|
Source13: %{name}-2.3-pigeonhole.configfiles
|
|
|
|
%description
|
|
Dovecot is an IMAP and POP3 server for Linux and UNIX-like systems,
|
|
written primarily with security in mind. Although it is written in C,
|
|
it uses several coding techniques to avoid most of the common pitfalls.
|
|
|
|
Dovecot can work with standard mbox and maildir formats and is fully
|
|
compatible with UW-IMAP and Courier IMAP servers as well as mail
|
|
clients accessing the mailboxes directly.
|
|
|
|
This is a wrapper package that will just handle common things for all
|
|
versioned dovecot packages.
|
|
|
|
%prep
|
|
|
|
%build
|
|
|
|
%install
|
|
for i in $RPM_SOURCE_DIR/*.configfiles ; do
|
|
echo "Creating ghost files for '$i'"
|
|
for j in $(<$i) ; do
|
|
install -D -m 0644 /dev/null %{buildroot}$j
|
|
done
|
|
done
|
|
|
|
install -D -p -m 0644 %{S:5} %{buildroot}%{_datadir}/doc/packages/%{name}/README.SUSE
|
|
install -d %{buildroot}%{_sbindir}
|
|
%{__install} -D -m 644 %{S:7} %{buildroot}/usr/lib/tmpfiles.d/%{name}.conf
|
|
%{__ln_s} -f %{_sbindir}/service %{buildroot}%{_sbindir}/rc%{name}
|
|
install -D -p -m 0644 %{S:8} %{buildroot}%{_unitdir}/%{name}.service
|
|
install -D -p -m 0644 %{S:9} %{buildroot}%{_unitdir}/%{name}.socket
|
|
|
|
# install pam config
|
|
%{__install} -D -p -m 0644 %{S:4} %{buildroot}%{_sysconfdir}/pam.d/%{name}
|
|
# create /var directories
|
|
%{__install} -p -m 0755 -Dd \
|
|
%{buildroot}%{_var}/run/%{name}/login/ \
|
|
%{buildroot}%{_var}/lib/%{name}/
|
|
|
|
%pre
|
|
getent group %{name} > /dev/null || /usr/sbin/groupadd -r %{name} >/dev/null 2>&1 || :
|
|
getent passwd %{name} > /dev/null || /usr/sbin/useradd -g %{name} -s /bin/false -r -c "User for Dovecot imapd" -d %{_var}/run/%{name} %{name}
|
|
getent passwd dovenull > /dev/null || /usr/sbin/useradd -g %{name} -s /bin/false -r -c "User for Dovecot login" -d %{_var}/run/%{name} dovenull
|
|
# try to copy the default configuration.
|
|
#
|
|
# we fail silently if the dovecot-implementation package is not
|
|
# installed yet. This allows us to break a little build loop between
|
|
# dovecot and dovecotXY.
|
|
if [ ! -e %{_sysconfdir}/%{name}/%{name}.conf -a -e %{_datadir}/%{name}/example-config/%{name}.conf ] ; then
|
|
# install default config
|
|
echo "Did not find a /etc/dovecot/dovecot.conf. copying default configuration"
|
|
cp -na %{_datadir}/%{name}/example-config/* %{_sysconfdir}/%{name}/
|
|
# the chmod breaks the lda. lets use the more open permissions
|
|
#chmod -Rv o= %{_sysconfdir}/%{name}/
|
|
fi
|
|
%service_add_pre %{name}.service %{name}.socket
|
|
|
|
%preun
|
|
%service_del_preun %{name}.service %{name}.socket
|
|
|
|
%post
|
|
%tmpfiles_create %{_tmpfilesdir}/%{name}.conf
|
|
%service_add_post %{name}.service %{name}.socket
|
|
|
|
%postun
|
|
%service_del_postun %{name}.service
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc %{_datadir}/doc/packages/%{name}/
|
|
# conf
|
|
%dir /etc/%{name}/
|
|
%ghost %config(noreplace) /etc/%{name}/*
|
|
%config(noreplace) %{_sysconfdir}/pam.d/%{name}
|
|
%{_sbindir}/rc%{name}
|
|
/usr/lib/tmpfiles.d/%{name}.conf
|
|
%{_unitdir}/%{name}.service
|
|
%{_unitdir}/%{name}.socket
|
|
%dir %{_localstatedir}/lib/%{name}
|
|
%ghost %dir /run/%{name}
|
|
%ghost %dir /run/%{name}/login
|
|
|
|
%changelog
|