![]() |
Here is an excerpt from sendfax man page P priority Assign the specified scheduling priority to subsequent jobs. A priority is an integer value in the range [0-255]. Lower values result in higher priority pro� cessing. By default, each job is assigned 127 for an initial scheduling priority. A job's priority is raised (numerically lowered) for each failed attempt to trans� mit so that retransmit attempts are done ahead of newly submitted jobs. The pri� ority may also be specified as one of the following symbolic names: default or normal (127), bulk or junk (207), high (63). According to the above; jobs that have failed attempts get there priorities raised so that they jump to the top of the send queue. I want failed attempts to be placed at the bottom of the send queue so they are attempted last. How can I do this? thanks