diff options
author | Rob Holland <tigger@gentoo.org> | 2004-12-21 14:00:13 +0000 |
---|---|---|
committer | Rob Holland <tigger@gentoo.org> | 2004-12-21 14:00:13 +0000 |
commit | 5755e544a8d92b24680726da9d7e0d2791bd413a (patch) | |
tree | d5b0a6a7c9badd66c351b3b47e65027be3e4c27d /mail-mta/sendmail/files | |
parent | Marked ppc stable. (Manifest recommit) (diff) | |
download | gentoo-2-5755e544a8d92b24680726da9d7e0d2791bd413a.tar.gz gentoo-2-5755e544a8d92b24680726da9d7e0d2791bd413a.tar.bz2 gentoo-2-5755e544a8d92b24680726da9d7e0d2791bd413a.zip |
Remove incorrect sendmail invocation line. On behalf of lcars@gentoo.org
Diffstat (limited to 'mail-mta/sendmail/files')
-rw-r--r-- | mail-mta/sendmail/files/sendmail | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mail-mta/sendmail/files/sendmail b/mail-mta/sendmail/files/sendmail index 1e3bec4dbc77..9efb639fdb9e 100644 --- a/mail-mta/sendmail/files/sendmail +++ b/mail-mta/sendmail/files/sendmail @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/files/sendmail,v 1.3 2004/12/07 01:59:31 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/files/sendmail,v 1.4 2004/12/21 14:00:13 tigger Exp $ depend() { need net @@ -14,7 +14,6 @@ start() { /usr/bin/newaliases > /dev/null 2>&1 (cd /var/spool/mqueue; rm -f xf*) /usr/sbin/sendmail ${SENDMAIL_OPTS} > /dev/null 2>&1 - /usr/sbin/sendmail -C /etc/mail/sendmail-slow.cf -q5m > /dev/null 2>&1 /usr/sbin/sendmail ${CLIENTMQUEUE_OPTS} > /dev/null 2>&1 eend $? } |