[9057] in Athena Bugs
[daemon@ATHENA.MIT.EDU : vax 7.3p: /usr/athena/lib/zephyr/zwgc.desc]
daemon@ATHENA.MIT.EDU (Calvin Clark)
Sat Mar 7 15:45:42 1992
Date: Sat, 7 Mar 92 15:45:29 -0500
From: Calvin Clark <ckclark@mit.edu>
To: tompalka@Athena.MIT.EDU
Cc: bugs@Athena.MIT.EDU
Reply-To: ckclark@mit.edu
In-Reply-To: [9025] in bugs
From: tom palka <tompalka@mit.edu>
Date: Fri, 28 Feb 92 10:21:05 -0500
[9025] daemon@ATHENA.MIT.EDU (tom palka) Athena Bugs 02/28/92 10:21 (34 lines)
Subject: vax 7.3p: /usr/athena/lib/zephyr/zwgc.desc
The line that execs zmailnotify has an old-style path in it:
#match "MAIL"
# case $instance
# match "pop"
# exec "/usr/athena/zmailnotify"
# exit
# endcase
# print "(Authentication: @bold("+$aval+"))\n"
# print substitute($default)
# put
# exit
What should have happened:
It should have "/usr/athena/bin/zmailnotify" instead.
Since zwgc uses execvp() to execute programs specified with exec, it is
sufficient to say:
exec "zmailnotify"
An explicit path is not necessary.
-Calvin