On 17/10/12 22:53, Tim Landscheidt wrote:
Hi,
for those of you not having seen TS-1553, mail forwarding seems to have stopped working. So if you haven't received the usual job reports that you were expecting, you might want to login to all servers and check if there is mail for you. You can query all servers by:
| for SERVER in clematis hawthorn nightshade ortelius willow wolfsbane yarrow; do | ssh $USER@$SERVER.toolserver.org ls -l /var/mail/$USER | done
replacing $USER with your username.
Tim
Actually, no need to replace it. $USER is set automatically. You can run: $ for SERVER in clematis hawthorn nightshade ortelius willow wolfsbane yarrow; do ssh $USER@$SERVER.toolserver.org test -s /var/mail/$USER && echo $SERVER; done
and it will list for you the servers where you have mail.