Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Email Message Board

Status
Not open for further replies.

issuetracker

IS-IT--Management
Aug 16, 2008
11
US
Does anyone know how to create a email message board? A master screen displayed on a monitor that would list 25-40 employees names on the screen and list if they had new messages.
 

This would do it:

while true; do for user in `ls /var/spool/mail/`; do if (finger $user | grep -q "New mail"); then echo $user." has new mail"; fi; done; sleep 30; clear; done

providing there is no odd stuff in your mail spool dir...

Not sure how "pretty" a thing you're after?

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top