> I have a firewall machine and another machine. I don't want to run a mail or > pop server on the firewall machine if I can help it, for various reasons. You know, you can run anything at all on the firewall machine and use iptables to block access to those services from all IP addresses but your own using iptables, sort of like this: iptables -t filter -A INPUT -s 192.168.1.0/24 -d 192.168.1.0/24 -j ACCEPT iptables -t filter -A INPUT -s 0/0 -d 0/0 -j DENY (or DROP) > I have a number of cron jobs running on the firewall machine. I want to send > the output of those jobs to my email box on the other machine. How? 1. Mount the other machine with NFS. Tell cron to send the output of its job to ">>/mnt/nfs/var/spool/mail/yourmailbox" 2. Write a HTTP CGI that appends whatever data it gets to your mailbox. Use a cron job on the other system to call the CGI. There are lots of other ways as well, maybe these will get you started. -- Jim Ockers (ockers@ockers.net) Contact info: please see http://www.ockers.net/ Fight Spam! Join CAUCE (Coalition Against Unsolicited Commercial Email) at http://www.cauce.org/ .