[notify] masqmail: update to 0.3.4
New major release with lots of incompatible changes. See NEWS [1] and ChangeLog [2]. [1] http://hg.marmaro.de/masqmail/file/35c5239ebcc1/NEWS [2] http://hg.marmaro.de/masqmail/file/35c5239ebcc1/ChangeLog
This commit is contained in:
parent
3d074ceb8a
commit
eb0797a241
@ -1,11 +1,9 @@
|
||||
drwxr-xr-x root/root etc/
|
||||
drwxr-xr-x root/root etc/masqmail/
|
||||
-rw-r--r-- root/root etc/masqmail/example.conf
|
||||
-rw------- root/root etc/masqmail/example.get
|
||||
-rw------- root/root etc/masqmail/example.route
|
||||
-rw------- root/root etc/masqmail/inet.route
|
||||
-rw-r--r-- root/root etc/masqmail/masqmail.alias
|
||||
-rw-r--r-- root/root etc/masqmail/example.route
|
||||
-rw-r--r-- root/root etc/masqmail/localnet.route
|
||||
-rw-r--r-- root/root etc/masqmail/masqmail.conf
|
||||
-rw-r--r-- root/root etc/masqmail/openssl.route
|
||||
drwxr-xr-x root/root etc/rc.d/
|
||||
-rwxr-xr-x root/root etc/rc.d/masqmail
|
||||
drwxr-xr-x root/root usr/
|
||||
@ -18,7 +16,6 @@ drwxr-xr-x root/root usr/man/man1/
|
||||
drwxr-xr-x root/root usr/man/man5/
|
||||
-rw-r--r-- root/root usr/man/man5/masqmail.aliases.5.gz
|
||||
-rw-r--r-- root/root usr/man/man5/masqmail.conf.5.gz
|
||||
-rw-r--r-- root/root usr/man/man5/masqmail.get.5.gz
|
||||
-rw-r--r-- root/root usr/man/man5/masqmail.route.5.gz
|
||||
drwxr-xr-x root/root usr/man/man8/
|
||||
-rw-r--r-- root/root usr/man/man8/masqmail.8.gz
|
||||
@ -33,15 +30,15 @@ drwxr-xr-x root/root usr/share/masqmail/tpl/
|
||||
-rw-r--r-- root/root usr/share/masqmail/tpl/failmsg.tpl
|
||||
-rw-r--r-- root/root usr/share/masqmail/tpl/warnmsg.tpl
|
||||
drwxr-xr-x root/root var/
|
||||
drwxr-xr-x root/root var/lock/
|
||||
drwxr-xr-x mail/mail var/lock/masqmail/
|
||||
drwxr-xr-x root/root var/log/
|
||||
drwxr-xr-x mail/mail var/log/masqmail/
|
||||
-rw-r--r-- mail/mail var/log/masqmail/debug.log (EMPTY)
|
||||
-rw-r--r-- mail/mail var/log/masqmail/masqmail.log (EMPTY)
|
||||
drwxr-xr-x root/root var/run/
|
||||
drwxr-xr-x mail/mail var/run/masqmail/
|
||||
-rw-r--r-- root/root var/run/masqmail/masqmail-route
|
||||
drwxr-xr-x root/root var/spool/
|
||||
drwxr-xr-x mail/mail var/spool/masqmail/
|
||||
drwxr-xr-x mail/mail var/spool/masqmail/input/
|
||||
drwxr-xr-x mail/mail var/spool/masqmail/lock/
|
||||
drwxr-xr-x mail/mail var/spool/masqmail/popuidl/
|
||||
|
@ -1,5 +1,2 @@
|
||||
3740a79250c65218a41e9591d3a20434 inet.route
|
||||
413f66f053693a10abc4c9c632fd0659 masqmail
|
||||
93d9d0e6e0421e0f6ac3b80cab99ce70 masqmail-0.2.30.tar.gz
|
||||
75ed683dec31e6712a4083b04e2e2a15 masqmail.alias
|
||||
1e617333b5268d7d2db9380418b60f3c masqmail.conf
|
||||
551bd887c71d7b8f3bb149b617adb1b3 masqmail-0.3.4.tar.gz
|
||||
|
@ -1,22 +1,19 @@
|
||||
# Description: Mail Transfer Agent for workstations and local networks
|
||||
# URL: http://marmaro.de/prog/masqmail/
|
||||
# Maintainer: Juergen Daubert, jue at crux dot nu
|
||||
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
|
||||
# Depends on: glib
|
||||
|
||||
name=masqmail
|
||||
version=0.2.30
|
||||
version=0.3.4
|
||||
release=1
|
||||
source=(http://marmaro.de/prog/masqmail/files/$name-$version.tar.gz
|
||||
masqmail masqmail.conf masqmail.alias inet.route)
|
||||
masqmail)
|
||||
|
||||
build () {
|
||||
cd $name-$version
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--mandir=/usr/man \
|
||||
--enable-auth \
|
||||
--enable-maildir \
|
||||
--enable-ident \
|
||||
--with-user=mail \
|
||||
--with-group=mail
|
||||
make
|
||||
@ -25,16 +22,13 @@ build () {
|
||||
ln -s masqmail $PKG/usr/sbin/sendmail
|
||||
ln -s ../sbin/masqmail $PKG/usr/bin/mailq
|
||||
|
||||
install -m 644 $SRC/masqmail.{conf,alias} $PKG/etc/masqmail
|
||||
install -m 600 $SRC/inet.route $PKG/etc/masqmail
|
||||
echo -n "inet" > $PKG/var/run/masqmail/masqmail-route
|
||||
install -m 600 examples/example.* $PKG/etc/masqmail
|
||||
install -m 644 examples/masqmail.conf $PKG/etc/masqmail/example.conf
|
||||
install -m 644 examples/* $PKG/etc/masqmail
|
||||
install -D -m 755 $SRC/masqmail $PKG/etc/rc.d/masqmail
|
||||
|
||||
install -d -o mail -g mail $PKG/var/{log,lock,spool}/masqmail
|
||||
touch $PKG/var/log/masqmail/{masqmail,debug}.log
|
||||
chown mail:mail $PKG/var/log/masqmail/*
|
||||
|
||||
rm $PKG/usr/share/masqmail/tpl/*.tpl.*
|
||||
rm -r $PKG/usr/share/doc
|
||||
|
||||
touch $PKG/var/log/masqmail/{masqmail,debug}.log
|
||||
chown mail:mail $PKG/var/log/masqmail/*
|
||||
}
|
||||
|
@ -1,24 +0,0 @@
|
||||
README for masqmail 0.2.x
|
||||
|
||||
REQUIREMENTS
|
||||
|
||||
PRE-INSTALL
|
||||
1. Remove exim. Masqmail and exim can not coexist.
|
||||
|
||||
POST-INSTALL
|
||||
1. Edit /etc/masqmail/masqmail.conf and change the placeholders
|
||||
for host and domain into correct values.
|
||||
2. Now masqmail delivers all non-local mail directly to the mail
|
||||
server of the recipient. This will not work for the usual
|
||||
dialup connections. To use the mail server of your provider
|
||||
for delivering mail, edit inet.route.
|
||||
3. In this configuration masqmail doesn't take care about your
|
||||
online status. See masqmail.conf(5) about online detection.
|
||||
4. Create a alias for postmaster and root in masqmail.alias
|
||||
|
||||
PRECAUTION
|
||||
As of version 0.2.21 the masqmail log files must be
|
||||
writeable by the system-user 'mail'.
|
||||
|
||||
chown mail:mail /var/log/masqmail/*
|
||||
|
@ -1,8 +0,0 @@
|
||||
#
|
||||
# /etc/masqmail/inet.route
|
||||
#
|
||||
|
||||
# mail_host = "smpt.provider.com"
|
||||
# allowed_mail_locals = "user1;user2"
|
||||
|
||||
# End of file
|
@ -1,9 +0,0 @@
|
||||
#
|
||||
# /etc/masqmail/masqmail.alias
|
||||
#
|
||||
|
||||
postmaster: root@localhost
|
||||
#postmaster: <user>@locahost
|
||||
#root: postmaster
|
||||
|
||||
# End of file
|
@ -1,23 +0,0 @@
|
||||
#
|
||||
# /etc/masqmail/masqmail.conf
|
||||
#
|
||||
|
||||
debug_level = 4
|
||||
use_syslog=false
|
||||
|
||||
host_name = "#host#.#domain#"
|
||||
local_hosts = "localhost;#host#;#host#.#domain#"
|
||||
local_nets = "*.#domain#"
|
||||
listen_addresses = "localhost:25;#host#.#domain#:25"
|
||||
|
||||
spool_dir = "/var/spool/masqmail"
|
||||
mail_dir = "/var/spool/mail"
|
||||
log_dir = "/var/log/masqmail"
|
||||
alias_file = "/etc/masqmail/masqmail.alias"
|
||||
|
||||
online_detect = file
|
||||
online_file = "/var/run/masqmail/masqmail-route"
|
||||
|
||||
online_routes.inet = "/etc/masqmail/inet.route"
|
||||
|
||||
# End of file
|
Loading…
x
Reference in New Issue
Block a user