Previous | Contents | Index |
The UUCP message return job should be scheduled by cron
. To submit commands to the cron
daemon, first become user pmdf
:
# su pmdf |
crontab
entries, issue the command
$ crontab -e |
30 1 * * * /pmdf/bin/return_uucp </pmdf/log/return_uucp.log-`/pmdf/bin/unique_id` 2>&1 |
/pmdf/log/return_uucp.log-uniqueid
, where uniqueid
will be a unique string disambiguifying the file name, allowing for multiple versions of the file. The first value specifies the minutes after the hour, and the second value specifies the hour --- you may wish to specify other values according to the needs of your site. You should use the return_uucp
shell script as shown above, which itself calls the program /pmdf/bin/return_uucp
, rather than the UUCP cleanup command, since return_uucp
will honor the notices
channel keyword and understand the MIME format of the messages.
Previous | Next | Contents | Index |