From: sunil Date: Sat, 17 Oct 2015 16:03:20 +0000 (+0000) Subject: LMTP delivery requires "inet unix". X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=1c108f7742944e62dc8319083d7e7a920791d6db;p=openbsd LMTP delivery requires "inet unix". Ok millert@ gilles@ --- diff --git a/usr.sbin/smtpd/smtpd.c b/usr.sbin/smtpd/smtpd.c index 3100b156ece..c9430a7f6ae 100644 --- a/usr.sbin/smtpd/smtpd.c +++ b/usr.sbin/smtpd/smtpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.c,v 1.249 2015/10/17 04:36:10 deraadt Exp $ */ +/* $OpenBSD: smtpd.c,v 1.250 2015/10/17 16:03:20 sunil Exp $ */ /* * Copyright (c) 2008 Gilles Chehade @@ -690,8 +690,8 @@ main(int argc, char *argv[]) purge_task(); - if (pledge("stdio rpath wpath cpath flock tmppath getpw sendfd proc exec id", - NULL) == -1) + if (pledge("stdio rpath wpath cpath flock tmppath " + "getpw sendfd proc exec id inet unix", NULL) == -1) err(1, "pledge"); if (event_dispatch() < 0)