mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
network/dovecot: Updated for version 2.2.19.
Signed-off-by: Mario Preksavec <mario@slackware.hr>
This commit is contained in:
parent
755915e32c
commit
6f5dd8f86a
4 changed files with 20 additions and 17 deletions
|
@ -1,10 +1,12 @@
|
||||||
This script builds dovecot with support for SSL. As such, you must have
|
Dovecot is an open source IMAP and POP3 email server for Linux/UNIX-like
|
||||||
openssl installed - openssl-solibs is not enough in itself to meet this
|
systems, written with security primarily in mind. Dovecot is an excellent choice
|
||||||
requirement. Additionally, dovecot will be compiled with POP3 support.
|
for both small and large installations. It's fast, simple to set up, requires no
|
||||||
|
special administration and it uses very little memory.
|
||||||
|
|
||||||
You should create a dovecot user to run the login processes on your server.
|
This script builds dovecot with support for SSL. As such, you must have openssl
|
||||||
Something like this should work:
|
installed - openssl-solibs is not enough in itself to meet this requirement.
|
||||||
[root@host] # groupadd -g 202 dovecot
|
|
||||||
[root@host] # useradd -d /dev/null -s /bin/false -u 202 -g 202 dovecot
|
|
||||||
|
|
||||||
See the documentation in /usr/doc/dovecot-2.2.13/ to get started.
|
This script doesn't add dovecot users and groups, instead it offers sane defaults
|
||||||
|
that won't conflict with system users and groups, and other scripts from the SBo.
|
||||||
|
|
||||||
|
See the documentation in /usr/doc/dovecot-2.2.19/ to get started.
|
||||||
|
|
|
@ -10,6 +10,7 @@ config() {
|
||||||
fi
|
fi
|
||||||
# Otherwise, we leave the .new copy for the admin to consider...
|
# Otherwise, we leave the .new copy for the admin to consider...
|
||||||
}
|
}
|
||||||
|
|
||||||
preserve_perms() {
|
preserve_perms() {
|
||||||
NEW="$1"
|
NEW="$1"
|
||||||
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
||||||
|
@ -20,5 +21,6 @@ preserve_perms() {
|
||||||
fi
|
fi
|
||||||
config $NEW
|
config $NEW
|
||||||
}
|
}
|
||||||
|
|
||||||
preserve_perms etc/rc.d/rc.dovecot.new
|
preserve_perms etc/rc.d/rc.dovecot.new
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# Copyright 2006, Alan Hicks, Lizella, GA
|
# Copyright 2006, 2010 Alan Hicks, Lizella, GA
|
||||||
|
# Copyright 2013, 2014, 2015 Mario Preksavec, Zagreb, Croatia
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use of this script, with or without modification, is
|
# Redistribution and use of this script, with or without modification, is
|
||||||
|
@ -20,10 +21,8 @@
|
||||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
# Modified by Mario Preksavec <mario@slackware.hr>
|
|
||||||
|
|
||||||
PRGNAM=dovecot
|
PRGNAM=dovecot
|
||||||
VERSION=${VERSION:-2.2.13}
|
VERSION=${VERSION:-2.2.19}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
PRGNAM="dovecot"
|
PRGNAM="dovecot"
|
||||||
VERSION="2.2.13"
|
VERSION="2.2.19"
|
||||||
HOMEPAGE="http://www.dovecot.org/"
|
HOMEPAGE="http://www.dovecot.org/"
|
||||||
DOWNLOAD="http://www.dovecot.org/releases/2.2/dovecot-2.2.13.tar.gz"
|
DOWNLOAD="http://www.dovecot.org/releases/2.2/dovecot-2.2.19.tar.gz"
|
||||||
MD5SUM="a3eb1c0b1822c4f2b0fe9247776baa71"
|
MD5SUM="95591b6556413edc2f0b160fb469d04c"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
REQUIRES=""
|
REQUIRES=""
|
||||||
MAINTAINER="Alan Hicks"
|
MAINTAINER="Mario Preksavec"
|
||||||
EMAIL="alan@lizella.net"
|
EMAIL="mario at slackware dot hr"
|
||||||
|
|
Loading…
Reference in a new issue