exim: added link to mailq, added localhost to local_domains
This commit is contained in:
parent
657f68fb45
commit
18d241be6e
@ -5,6 +5,8 @@ drwxr-xr-x root/root etc/exim/
|
|||||||
drwxr-xr-x root/root etc/rc.d/
|
drwxr-xr-x root/root etc/rc.d/
|
||||||
-rwxr-xr-x root/root etc/rc.d/exim
|
-rwxr-xr-x root/root etc/rc.d/exim
|
||||||
drwxr-xr-x root/root usr/
|
drwxr-xr-x root/root usr/
|
||||||
|
drwxr-xr-x root/root usr/bin/
|
||||||
|
lrwxrwxrwx root/root usr/bin/mailq -> ../sbin/exim-4.63-1
|
||||||
drwxr-xr-x root/root usr/man/
|
drwxr-xr-x root/root usr/man/
|
||||||
drwxr-xr-x root/root usr/man/man8/
|
drwxr-xr-x root/root usr/man/man8/
|
||||||
-rw-r--r-- root/root usr/man/man8/exim.8.gz
|
-rw-r--r-- root/root usr/man/man8/exim.8.gz
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
f1682811a7fd2897153c5b0e33177509 exim
|
f1682811a7fd2897153c5b0e33177509 exim
|
||||||
dde2d5f7106d51607409af94174db46c exim-4.63.tar.bz2
|
dde2d5f7106d51607409af94174db46c exim-4.63.tar.bz2
|
||||||
49eae1f8c0d864b27fdab1d09f6c871e exim-config.patch
|
acc159b50022cb2e1574df1bde2d9784 exim-config.patch
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
# Description: Mail transfer agent
|
# Description: Mail transfer agent
|
||||||
# URL: http://www.exim.org
|
# URL: http://www.exim.org
|
||||||
# Maintainer: Jürgen Daubert, juergen dot daubert at t-online dot de
|
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
|
||||||
# Depends on: db, openssl
|
# Depends on: db, openssl
|
||||||
|
|
||||||
name=exim
|
name=exim
|
||||||
version=4.63
|
version=4.63
|
||||||
release=1
|
release=2
|
||||||
source=(ftp://ftp.exim.org/pub/exim/exim4/$name-$version.tar.bz2 \
|
source=(ftp://ftp.exim.org/pub/exim/exim4/$name-$version.tar.bz2 \
|
||||||
$name $name-config.patch)
|
$name $name-config.patch)
|
||||||
|
|
||||||
@ -21,12 +21,13 @@ build() {
|
|||||||
install -D -m 755 $SRC/exim $PKG/etc/rc.d/exim
|
install -D -m 755 $SRC/exim $PKG/etc/rc.d/exim
|
||||||
install -D -m 644 doc/exim.8 $PKG/usr/man/man8/exim.8
|
install -D -m 644 doc/exim.8 $PKG/usr/man/man8/exim.8
|
||||||
|
|
||||||
install -d $PKG/var/{log,spool}
|
install -d $PKG/var/{log,spool} $PKG/usr/bin
|
||||||
install -d -m 0750 -o mail -g mail $PKG/var/{log,spool}/exim
|
install -d -m 0750 -o mail -g mail $PKG/var/{log,spool}/exim
|
||||||
|
|
||||||
touch $PKG/var/log/exim/{exim_{mainlog,paniclog,rejectlog}}
|
touch $PKG/var/log/exim/{exim_{mainlog,paniclog,rejectlog}}
|
||||||
chown mail:mail $PKG/var/log/exim/*
|
chown mail:mail $PKG/var/log/exim/*
|
||||||
chmod 640 $PKG/var/log/exim/*
|
chmod 640 $PKG/var/log/exim/*
|
||||||
|
|
||||||
ln -s $name-$version-1 $PKG/usr/sbin/sendmail
|
ln -sf $name-$version-1 $PKG/usr/sbin/sendmail
|
||||||
|
ln -sf ../sbin/$name-$version-1 $PKG/usr/bin/mailq
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
diff -Nru exim-4.60.orig/src/EDITME exim-4.60/src/EDITME
|
diff -Nru exim-4.63.orig/src/EDITME exim-4.63/src/EDITME
|
||||||
--- exim-4.60.orig/src/EDITME 2005-11-28 16:31:10.000000000 +0100
|
--- exim-4.63.orig/src/EDITME 2006-11-10 17:10:12.000000000 +0100
|
||||||
+++ exim-4.60/src/EDITME 2005-11-28 16:31:26.000000000 +0100
|
+++ exim-4.63/src/EDITME 2006-11-10 17:10:25.000000000 +0100
|
||||||
@@ -74,7 +74,7 @@
|
@@ -74,7 +74,7 @@
|
||||||
# this would be wanted.
|
# this would be wanted.
|
||||||
###############################################################################
|
###############################################################################
|
||||||
@ -164,3 +164,15 @@ diff -Nru exim-4.60.orig/src/EDITME exim-4.60/src/EDITME
|
|||||||
|
|
||||||
# If PID_FILE_PATH is not defined, Exim writes a file in its spool directory
|
# If PID_FILE_PATH is not defined, Exim writes a file in its spool directory
|
||||||
# using the name "exim-daemon.pid".
|
# using the name "exim-daemon.pid".
|
||||||
|
diff -Nru exim-4.63.orig/src/configure.default exim-4.63/src/configure.default
|
||||||
|
--- exim-4.63.orig/src/configure.default 2006-11-10 17:10:12.000000000 +0100
|
||||||
|
+++ exim-4.63/src/configure.default 2006-11-10 17:11:00.000000000 +0100
|
||||||
|
@@ -56,7 +56,7 @@
|
||||||
|
# +local_domains, +relay_to_domains, and +relay_from_hosts, respectively. They
|
||||||
|
# are all colon-separated lists:
|
||||||
|
|
||||||
|
-domainlist local_domains = @
|
||||||
|
+domainlist local_domains = @ : localhost
|
||||||
|
domainlist relay_to_domains =
|
||||||
|
hostlist relay_from_hosts = 127.0.0.1
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user