diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2002-07-08 10:40:22 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2002-07-08 10:40:22 +0000 |
commit | e5f65fe9c160b78b54514fe1bebfa37c1259f7c8 (patch) | |
tree | 0c30e511e1609130ee3a48fe2ccceed23937b750 | |
parent | 7d3fff0e668e6add4c79ecdec2ac84720a46f8f8 (diff) | |
download | FreeBSD-ports-e5f65fe9c160b78b54514fe1bebfa37c1259f7c8.zip FreeBSD-ports-e5f65fe9c160b78b54514fe1bebfa37c1259f7c8.tar.gz |
Fix the condition in the userforward director that is intended to
protect against users with /nonexistent as their home directory
having all their mail deferred.
Submitted by: fanf
-rw-r--r-- | mail/exim-devel/files/patch-src::configure.default | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/exim-devel/files/patch-src::configure.default b/mail/exim-devel/files/patch-src::configure.default index 6335dff..7686608 100644 --- a/mail/exim-devel/files/patch-src::configure.default +++ b/mail/exim-devel/files/patch-src::configure.default @@ -23,7 +23,7 @@ file_transport = address_file pipe_transport = address_pipe reply_transport = address_reply -+ condition = !match{${rxquote:${home}}}{^/nonexistent} ++ condition = ${if exists{$home/.forward} {yes} {no} } # This router matches local user mailboxes. |