Subj : Migrating from using LPRng filter to CUPS To : comp.os.linux From : Colin McDonald Date : Sat Dec 11 2004 09:55 am I need to migrate a printer and filter from a RedHat 7.2 system that uses LPRng to a RedHat 9 system that is using CUPS. The printer outputs printer to a filter that then sends the output via e-mail: Print conf from LPRng e-mail :if=/usr/local/sbin/e-mail-lp-filter :lp=/dev/null :lpd_bounce=false :ml=0 :mx=0 :sd=/var/spool/lpd/email The filter looks like this FILE="/tmp"'/bin/date +/%Y%m%d_%H%M%S_email' eval cat -> $FILE eval cat $FILE|tr -d '\000\r\f'|/user/sbin/sendmail -t rm -f $FILE exit 0 How would I implement this in CUPS. Thanks ahead of time .