1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-17 22:31:12 +01:00

zsh-users/10720: a couple of checkmail fixes

This commit is contained in:
Peter Stephenson 2006-09-15 18:22:19 +00:00
parent bd4b21bf46
commit 572ad667e7

View file

@ -9,6 +9,7 @@
# This function requires zsh-3.0.1 or newer.
#
emulate -L zsh
local file message
for file in "${@:-${mailpath[@]:-${MAIL:-/var/spool/mail/$LOGNAME}}}"
@ -18,7 +19,7 @@ do
if [[ -d "$file" ]] then
file=( "$file"/**/*(.ND) )
if (($#file)) then
checkmail "${^file}\?$message"
checkmail ${^file}\?$message
fi
elif test -s "$file" -a -N "$file"; then # this also sets $_ to $file
print -r -- "${(e)message:-You have new mail.}"