uw-imap: dropped

This commit is contained in:
Juergen Daubert 2012-10-18 14:37:41 +02:00
parent 668486ae7d
commit 8ebe4bf72b
4 changed files with 0 additions and 72 deletions

View File

@ -1,13 +0,0 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/ssl/
drwxr-xr-x root/root etc/ssl/certs/
-rw------- root/root etc/ssl/certs/imapd.pem (EMPTY)
-rw------- root/root etc/ssl/certs/ipop3d.pem (EMPTY)
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/imapd.8.gz
-rw-r--r-- root/root usr/man/man8/ipopd.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/imapd
-rwxr-xr-x root/root usr/sbin/ipop3d

View File

@ -1 +0,0 @@
2126fd125ea26b73b20f01fcd5940369 imap-2007f.tar.gz

View File

@ -1,31 +0,0 @@
# Description: University of Washington's IMAP/POP server
# URL: http://www.washington.edu/imap/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: openssl
name=uw-imap
version=2007f
release=1
source=(ftp://ftp.cac.washington.edu/imap/imap-$version.tar.gz)
build () {
cd imap-${version::5}
sed -i 's/read x/x=y/' Makefile
make slx \
EXTRACFLAGS="$CFLAGS" \
SSLTYPE=unix \
SSLDIR=/usr \
SSLCERTS=/etc/ssl/certs \
IP=6
install -D -m 755 imapd/imapd $PKG/usr/sbin/imapd
install -m 755 ipopd/ipop3d $PKG/usr/sbin
install -D -m 644 src/imapd/imapd.8 $PKG/usr/man/man8/imapd.8
install -m 644 src/ipopd/ipopd.8 $PKG/usr/man/man8/ipopd.8
sed -i 's|/usr/etc/|/usr/sbin/|' $PKG/usr/man/man8/*
install -d $PKG/etc/ssl/certs/
touch $PKG/etc/ssl/certs/{imapd.pem,ipop3d.pem}
chmod 0600 $PKG/etc/ssl/certs/{imapd.pem,ipop3d.pem}
}

View File

@ -1,27 +0,0 @@
README for uw-imap 2007
REQUIREMENTS
PRE-INSTALL
POST-INSTALL
1. To activate the required services add some of the following lines to
/etc/inetd.conf:
pop3 stream tcp nowait root /usr/sbin/tcpd ipop3d
imap stream tcp nowait root /usr/sbin/tcpd imapd
pop3s stream tcp nowait root /usr/sbin/tcpd ipop3d
imaps stream tcp nowait root /usr/sbin/tcpd imapd
For security reasons it's highly recommended to use the ssl encrypted
services pop3s and imaps whenever possible.
2. Create two self-signed certificates for the imap and pop3 daemons:
openssl req -new -x509 -days 365 -nodes -out imapd.pem -keyout imapd.pem
openssl req -new -x509 -days 365 -nodes -out ipop3d.pem -keyout ipop3d.pem
mv imapd.pem ipop3d.pem /etc/ssl/certs
chmod 0600 /etc/ssl/certs/{imapd.pem,ipop3d.pem}
PRECAUTION