HylaFAX The world's
most advanced open source fax server
|
|
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
Re: [hylafax-users] what does this means: "JOB 3 not found for msg "c""
At 01:20 PM 5/4/01 +0200, Bernd Proissl wrote:
>
>Can anybody help me with these messages aprearing in syslog?
>
>I have the same problems as described here
>
>http://www.hylafax.org/archive/1998-01/msg00085.php
>http://www.hylafax.org/archive/1998-05/msg00115.php
Hi Bernd.
The message comes from faxd/faxQueueApp.c++:
void
faxQueueApp::FIFOJobMessage(const fxStr& jobid, const char* msg)
{
Job* jp = Job::getJobByID(jobid);
if (!jp) {
traceServer("FIFO: JOB %s not found for msg \"%s\"",
(const char*) jobid, msg);
return;
}
...
And Job.c++ contains:
Job*
Job::getJobByID(const fxStr& id)
{
Job** jpp = (Job**) registry.find(id);
return (jpp ? *jpp : (Job*) NULL);
}
...
Which leads me to believe that "JOB x not found for msg" means that faxq
can't find necessary information in a queue file (sendq). Is something
being deleted or altered mid-flight? Is there a cron entry that's cleaning
things out?
Lee.
____________________ HylaFAX(tm) Users Mailing List _______________________
To unsub: mail -s unsubscribe hylafax-users-request@hylafax.org < /dev/null