diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2005-10-13 13:21:00 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2005-10-13 13:21:00 +0000 |
commit | cb7410236c1301a26b91d8290de8599cf0faf049 (patch) | |
tree | 7996fbea35c8ae5cc141c83b25ffb4f3bbe37ced /src | |
parent | 2050824c3fca58720dcb972d2550a55f3639d612 (diff) |
Default PATH in pipe transport is now /bin:/usr/bin rather than just
/usr/bin.
Diffstat (limited to 'src')
-rw-r--r-- | src/src/transports/pipe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/src/transports/pipe.c b/src/src/transports/pipe.c index fe32e1267..421728d7e 100644 --- a/src/src/transports/pipe.c +++ b/src/src/transports/pipe.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/transports/pipe.c,v 1.7 2005/06/27 14:29:44 ph10 Exp $ */ +/* $Cambridge: exim/src/src/transports/pipe.c,v 1.8 2005/10/13 13:21:00 ph10 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -89,7 +89,7 @@ pipe_transport_options_block pipe_transport_option_defaults = { NULL, /* cmd */ NULL, /* allow_commands */ NULL, /* environment */ - US"/usr/bin", /* path */ + US"/bin:/usr/bin", /* path */ NULL, /* message_prefix (reset in init if not bsmtp) */ NULL, /* message_suffix (ditto) */ US mac_expanded_string(EX_TEMPFAIL) ":" /* temp_errors */ |