diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2002-07-08 10:40:22 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2002-07-08 10:40:22 +0000 |
commit | 4e50fe70614b6cbe88ee0c6606cd7336356c42d0 (patch) | |
tree | d66c256f60a9c3442ca1f3dccd2999509cc4bd9e /mail | |
parent | PERL -> REINPLACE_CMD (diff) |
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
Notes
Notes:
svn path=/head/; revision=62646
Diffstat (limited to 'mail')
-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 6335dff2451a..768660800cc6 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. |