1 |
Summary: Additional features for dovecot on SME Server |
Summary: Additional features for dovecot on SME Server |
2 |
Name: smeserver-dovecot-extras |
Name: smeserver-dovecot-extras |
3 |
Version: 0.1.6 |
Version: 0.1.6 |
4 |
Release: 6%{?dist} |
Release: 8%{?dist} |
5 |
License: GPL |
License: GPL |
6 |
Group: Networking/Daemons |
Group: Networking/Daemons |
7 |
Source: %{name}-%{version}.tar.gz |
Source: %{name}-%{version}.tar.gz |
8 |
Patch0: smeserver-dovecot-extras-0.1.6-Add-update-event-to-createlinks.patch |
Patch0: smeserver-dovecot-extras-0.1.6-Add-update-event-to-createlinks.patch |
9 |
Patch1: smeserver-dovecot-extras-0.1.6-Fix-sieve-compile.patch |
Patch1: smeserver-dovecot-extras-0.1.6-Fix-sieve-compile.patch |
10 |
Patch2: smeserver-dovecot-extras-0.1.6-bz11551.patch |
Patch2: smeserver-dovecot-extras-0.1.6-bz11551.patch |
11 |
Patch3: smeserver-dovecot-extras-0.1.6-bz12006-backup.patch |
Patch3: smeserver-dovecot-extras-0.1.6-bz12144-movedb.patch |
12 |
|
|
13 |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
14 |
BuildArchitectures: noarch |
BuildArchitectures: noarch |
23 |
Add IMAP acl (sharedmailbox) and sieve capabilities to the IMAP server |
Add IMAP acl (sharedmailbox) and sieve capabilities to the IMAP server |
24 |
|
|
25 |
%changelog |
%changelog |
26 |
* Mon Jul 25 2022 Jean-Philippe Pialasse <tests@pialasse.com> 0.1.6-6.sme |
* Mon Aug 08 2022 Jean-Philippe Pialasse <tests@pialasse.com> 0.1.6-8.sme |
27 |
- fix typo [SME: 12006] |
- fix db overwritten [SME: 12144] |
28 |
|
|
29 |
|
* Mon Jul 25 2022 Jean-Philippe Pialasse <tests@pialasse.com> 0.1.6-7.sme |
30 |
|
- nothing to backup outside of core folders [SME: 12006] |
31 |
|
|
32 |
* Fri Jul 22 2022 Jean-Philippe Pialasse <tests@pialasse.com> 0.1.6-5.sme |
* Fri Jul 22 2022 Jean-Philippe Pialasse <tests@pialasse.com> 0.1.6-5.sme |
33 |
- add to core backup [SME: 12006] |
- add to core backup [SME: 12006] |
108 |
/usr/sbin/groupadd -g 439 sharedmailbox 2> /dev/null || : |
/usr/sbin/groupadd -g 439 sharedmailbox 2> /dev/null || : |
109 |
|
|
110 |
%post |
%post |
111 |
# Migrate the sharedmailbox dict to its new location |
if [ -s /home/e-smith/db/dovecot/sharedmailbox.db ] ; then |
112 |
if [ -e /etc/dovecot/sharedmailbox/dict.db ]; then |
# echo "we already have a non empty file at destination" ; |
113 |
mv -f /etc/dovecot/sharedmailbox/dict.db /home/e-smith/db/dovecot/sharedmailbox.db |
# delete etc file if empty |
114 |
|
if [ -e /etc/dovecot/sharedmailbox/dict.db ] ; then |
115 |
|
# if exists and not empty we backup, else we delete |
116 |
|
[ -s /etc/dovecot/sharedmailbox/dict.db ] && mv -f /etc/dovecot/sharedmailbox/dict.db /home/e-smith/db/dovecot/dictdb.old || rm -rf /etc/dovecot/sharedmailbox ; |
117 |
|
fi |
118 |
|
elif [ -e /etc/dovecot/sharedmailbox/dict.db ]; then |
119 |
|
# if exists and not empty |
120 |
|
[ -s /home/e-smith/db/dovecot/sharedmailbox.db ] && mv -f /etc/dovecot/sharedmailbox/dict.db /home/e-smith/db/dovecot/sharedmailbox.db ; |
121 |
|
# then we remove the etc dir ; |
122 |
rm -rf /etc/dovecot/sharedmailbox |
rm -rf /etc/dovecot/sharedmailbox |
123 |
fi |
fi |
124 |
|
|