mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +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
|
||||
openssl installed - openssl-solibs is not enough in itself to meet this
|
||||
requirement. Additionally, dovecot will be compiled with POP3 support.
|
||||
Dovecot is an open source IMAP and POP3 email server for Linux/UNIX-like
|
||||
systems, written with security primarily in mind. Dovecot is an excellent choice
|
||||
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.
|
||||
Something like this should work:
|
||||
[root@host] # groupadd -g 202 dovecot
|
||||
[root@host] # useradd -d /dev/null -s /bin/false -u 202 -g 202 dovecot
|
||||
This script builds dovecot with support for SSL. As such, you must have openssl
|
||||
installed - openssl-solibs is not enough in itself to meet this requirement.
|
||||
|
||||
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
|
||||
# Otherwise, we leave the .new copy for the admin to consider...
|
||||
}
|
||||
|
||||
preserve_perms() {
|
||||
NEW="$1"
|
||||
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
||||
|
@ -20,5 +21,6 @@ preserve_perms() {
|
|||
fi
|
||||
config $NEW
|
||||
}
|
||||
|
||||
preserve_perms etc/rc.d/rc.dovecot.new
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/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.
|
||||
#
|
||||
# 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
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
# Modified by Mario Preksavec <mario@slackware.hr>
|
||||
|
||||
PRGNAM=dovecot
|
||||
VERSION=${VERSION:-2.2.13}
|
||||
VERSION=${VERSION:-2.2.19}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="dovecot"
|
||||
VERSION="2.2.13"
|
||||
VERSION="2.2.19"
|
||||
HOMEPAGE="http://www.dovecot.org/"
|
||||
DOWNLOAD="http://www.dovecot.org/releases/2.2/dovecot-2.2.13.tar.gz"
|
||||
MD5SUM="a3eb1c0b1822c4f2b0fe9247776baa71"
|
||||
DOWNLOAD="http://www.dovecot.org/releases/2.2/dovecot-2.2.19.tar.gz"
|
||||
MD5SUM="95591b6556413edc2f0b160fb469d04c"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
MAINTAINER="Alan Hicks"
|
||||
EMAIL="alan@lizella.net"
|
||||
MAINTAINER="Mario Preksavec"
|
||||
EMAIL="mario at slackware dot hr"
|
||||
|
|
Loading…
Reference in a new issue