From 7d903108322da65d3949a718f639254725fba392 Mon Sep 17 00:00:00 2001 From: sthen <> Date: Fri, 20 Jan 2012 22:27:30 +0000 Subject: [PATCH] Fix pexp for sendmail; it can be "sendmail: rejecting" as well as accepting. From danh@, ok aja@ giovanni@ --- src/etc/rc.d/sendmail | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/rc.d/sendmail b/src/etc/rc.d/sendmail index 45994505..ab280537 100644 --- a/src/etc/rc.d/sendmail +++ b/src/etc/rc.d/sendmail @@ -1,12 +1,12 @@ #!/bin/sh # -# $OpenBSD: sendmail,v 1.4 2011/07/12 05:40:55 robert Exp $ +# $OpenBSD: sendmail,v 1.5 2012/01/20 22:27:30 sthen Exp $ daemon="/usr/sbin/sendmail" . /etc/rc.d/rc.subr -pexp="(sendmail: accepting.*|${daemon}* -(q[0-9]|bd)*)" +pexp="(sendmail: (accepting|rejecting).*|${daemon}* -(q[0-9]|bd)*)" rc_bg=YES