commit 429e7a395eedf32660993b9f91becec99866e233 Author: Juergen Daubert <jue@jue.li> Date: Sun Feb 3 12:56:40 2019 +0100 masqmail: removed diff --git a/masqmail/.footprint b/masqmail/.footprint deleted file mode 100644 index 1f886ef0a..000000000 --- a/masqmail/.footprint +++ /dev/null @@ -1,40 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/masqmail/ --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/ -drwxr-xr-x root/root usr/bin/ -lrwxrwxrwx root/root usr/bin/mailq -> ../sbin/masqmail --rwxr-xr-x root/root usr/bin/mservdetect -drwxr-xr-x root/root usr/sbin/ --rwsr-xr-x root/root usr/sbin/masqmail --rwxr-xr-x root/root usr/sbin/rmail -lrwxrwxrwx root/root usr/sbin/sendmail -> masqmail -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/mservdetect.1.gz -drwxr-xr-x root/root usr/share/man/man5/ --rw-r--r-- root/root usr/share/man/man5/masqmail.aliases.5.gz --rw-r--r-- root/root usr/share/man/man5/masqmail.conf.5.gz --rw-r--r-- root/root usr/share/man/man5/masqmail.route.5.gz -drwxr-xr-x root/root usr/share/man/man8/ --rw-r--r-- root/root usr/share/man/man8/masqmail.8.gz --rw-r--r-- root/root usr/share/man/man8/rmail.8.gz -drwxr-xr-x root/root usr/share/masqmail/ -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/ -drwxrwxrwt 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/spool/ -drwxr-xr-x mail/mail var/spool/masqmail/ diff --git a/masqmail/.signature b/masqmail/.signature deleted file mode 100644 index 4f40dc408..000000000 --- a/masqmail/.signature +++ /dev/null @@ -1,6 +0,0 @@ -untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/ZqlVz5vlvHwuJ7qGp770sTsnn+VwB6KtId6eLTc869swmcKjUZCz5TxME4+hH+XqRo3LoAV3PAP7oeI+zgj8gA= -SHA256 (Pkgfile) = 85f40f941dfa60d7596205a3d43e165889c181665aa9d46f53f46f041997875d -SHA256 (.footprint) = ed97f7d6f7d33d60a0342c68a6847e633240d6a284fd796c30c0b302389005fe -SHA256 (masqmail-0.3.5.tar.gz) = 030699bdce256f6446239e793e301331e94c4a0124808ce0f7a926ed99b34039 -SHA256 (masqmail) = 0636547500c3cb7c65408c91def4231cdebf9be7600e567dbd853b652ca13094 diff --git a/masqmail/Pkgfile b/masqmail/Pkgfile deleted file mode 100644 index c5a7a4594..000000000 --- a/masqmail/Pkgfile +++ /dev/null @@ -1,34 +0,0 @@ -# Description: Mail Transfer Agent for workstations and local networks -# URL: http://marmaro.de/prog/masqmail/ -# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de -# Depends on: glib - -name=masqmail -version=0.3.5 -release=4 -source=(http://marmaro.de/prog/masqmail/files/$name-$version.tar.gz - masqmail) - -build () { - cd $name-$version - - ./configure --prefix=/usr \ - --with-user=mail \ - --with-group=mail - make - make DESTDIR=$PKG install - - ln -s masqmail $PKG/usr/sbin/sendmail - ln -s ../sbin/masqmail $PKG/usr/bin/mailq - - 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/* - chmod 1777 $PKG/var/lock - - rm $PKG/usr/share/masqmail/tpl/*.tpl.* - rm -r $PKG/usr/share/doc -} diff --git a/masqmail/masqmail b/masqmail/masqmail deleted file mode 100644 index 31d62e6ae..000000000 --- a/masqmail/masqmail +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# /etc/rc.d/masqmail: start/stop masqmail SMTP daemon -# - -SSD=/sbin/start-stop-daemon -PROG=/usr/sbin/masqmail -PID=/var/run/masqmail.pid -OPTS="-bd -q15m" - -case $1 in -start) - $SSD --start --pidfile $PID --exec $PROG -- $OPTS - ;; -stop) - $SSD --stop --retry 10 --pidfile $PID - ;; -restart) - $0 stop - $0 start - ;; -status) - $SSD --status --pidfile $PID - case $? in - 0) echo "$PROG is running with pid $(cat $PID)" ;; - 1) echo "$PROG is not running but the pid file $PID exists" ;; - 3) echo "$PROG is not running" ;; - 4) echo "Unable to determine the program status" ;; - esac - ;; -*) - echo "usage: $0 [start|stop|restart|status]" - ;; -esac - -# End of file