Accepting request 559876 from server:mail
- bump recommends to 2.3 - copy example config from /usr/share/dovecot/example-config/ instead of the documentation directory. (boo#1070871) - bump to dovecot 2.3 OBS-URL: https://build.opensuse.org/request/show/559876 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/dovecot?expand=0&rev=5
This commit is contained in:
commit
f7777d16f1
4
dovecot-2.3-pigeonhole.configfiles
Normal file
4
dovecot-2.3-pigeonhole.configfiles
Normal file
@ -0,0 +1,4 @@
|
||||
/etc/dovecot/conf.d/20-managesieve.conf
|
||||
/etc/dovecot/conf.d/90-sieve-extprograms.conf
|
||||
/etc/dovecot/conf.d/90-sieve.conf
|
||||
/etc/dovecot/sieve-ldap.conf
|
31
dovecot-2.3.configfiles
Normal file
31
dovecot-2.3.configfiles
Normal file
@ -0,0 +1,31 @@
|
||||
/etc/dovecot/README
|
||||
/etc/dovecot/conf.d/10-auth.conf
|
||||
/etc/dovecot/conf.d/10-director.conf
|
||||
/etc/dovecot/conf.d/10-logging.conf
|
||||
/etc/dovecot/conf.d/10-mail.conf
|
||||
/etc/dovecot/conf.d/10-master.conf
|
||||
/etc/dovecot/conf.d/10-ssl.conf
|
||||
/etc/dovecot/conf.d/15-lda.conf
|
||||
/etc/dovecot/conf.d/15-mailboxes.conf
|
||||
/etc/dovecot/conf.d/20-imap.conf
|
||||
/etc/dovecot/conf.d/20-lmtp.conf
|
||||
/etc/dovecot/conf.d/20-pop3.conf
|
||||
/etc/dovecot/conf.d/20-submission.conf
|
||||
/etc/dovecot/conf.d/90-acl.conf
|
||||
/etc/dovecot/conf.d/90-plugin.conf
|
||||
/etc/dovecot/conf.d/90-quota.conf
|
||||
/etc/dovecot/conf.d/auth-checkpassword.conf.ext
|
||||
/etc/dovecot/conf.d/auth-deny.conf.ext
|
||||
/etc/dovecot/conf.d/auth-dict.conf.ext
|
||||
/etc/dovecot/conf.d/auth-ldap.conf.ext
|
||||
/etc/dovecot/conf.d/auth-master.conf.ext
|
||||
/etc/dovecot/conf.d/auth-passwdfile.conf.ext
|
||||
/etc/dovecot/conf.d/auth-sql.conf.ext
|
||||
/etc/dovecot/conf.d/auth-static.conf.ext
|
||||
/etc/dovecot/conf.d/auth-system.conf.ext
|
||||
/etc/dovecot/conf.d/auth-vpopmail.conf.ext
|
||||
/etc/dovecot/dovecot-dict-auth.conf.ext
|
||||
/etc/dovecot/dovecot-dict-sql.conf.ext
|
||||
/etc/dovecot/dovecot-ldap.conf.ext
|
||||
/etc/dovecot/dovecot-sql.conf.ext
|
||||
/etc/dovecot/dovecot.conf
|
@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 24 02:10:16 UTC 2017 - mrueckert@suse.de
|
||||
|
||||
- bump recommends to 2.3
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 24 02:07:20 UTC 2017 - mrueckert@suse.de
|
||||
|
||||
- copy example config from /usr/share/dovecot/example-config/
|
||||
instead of the documentation directory. (boo#1070871)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 20 11:24:54 UTC 2017 - mrueckert@suse.de
|
||||
|
||||
- bump to dovecot 2.3
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 15 14:04:40 UTC 2015 - mrueckert@suse.de
|
||||
|
||||
|
10
dovecot.spec
10
dovecot.spec
@ -23,14 +23,14 @@
|
||||
%endif
|
||||
|
||||
Name: dovecot
|
||||
Version: 2.2
|
||||
Version: 2.3
|
||||
Release: 0
|
||||
Summary: IMAP and POP3 Server Written Primarily with Security in Mind
|
||||
License: BSD-3-Clause and LGPL-2.1+ and MIT
|
||||
Group: Productivity/Networking/Email/Servers
|
||||
Url: http://www.dovecot.org/
|
||||
PreReq: dovecot-implementation
|
||||
Recommends: dovecot22
|
||||
Recommends: dovecot23
|
||||
#!BuildIgnore: dovecot-implementation
|
||||
%if %{with systemd}
|
||||
BuildRequires: pkgconfig(systemd)
|
||||
@ -51,6 +51,8 @@ Source8: dovecot.service
|
||||
Source9: dovecot.socket
|
||||
Source10: dovecot-2.1-pigeonhole.configfiles
|
||||
Source11: dovecot-2.2-pigeonhole.configfiles
|
||||
Source12: dovecot-2.3.configfiles
|
||||
Source13: dovecot-2.3-pigeonhole.configfiles
|
||||
|
||||
%description
|
||||
Dovecot is an IMAP and POP3 server for Linux and UNIX-like systems,
|
||||
@ -107,10 +109,10 @@ install -D -m 0644 %{S:9} %{buildroot}%{_unitdir}/dovecot.socket
|
||||
# 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 /etc/dovecot/dovecot.conf -a -e /usr/share/doc/packages/dovecot/example-config/dovecot.conf ] ; then
|
||||
if [ ! -e %{_sysconfdir}/%{name}/dovecot.conf -a -e %{_datadir}/%{name}/example-config/dovecot.conf ] ; then
|
||||
# install default config
|
||||
echo "Did not find a /etc/dovecot/dovecot.conf. copying default configuration"
|
||||
cp -na %{_docdir}/%{name}/example-config/* %{_sysconfdir}/%{name}/
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user