Here are some suggestions.
(1) To find out exactly what swiiftfeg is doing, edit the /etc/opt/faximum/faximum.conf file and add a line of the form:
feg-debug = yes
then run a test and look in /tmp for a file that starts with the sequence feg.dbg.
Email support@faximum.com that file if the problem is not obvious.
(2) You could also change the name of the sendmail program swiiftfeg is using (by default, /usr/lib/sendmail) by adding a parameter of the form:
feg-sendmail = /blah/blah/blah
You could then write a simple shell program like:
#!/bin/sh
echo $* > /tmp/brad.$$
ls -l $* >> /tmp/brad.$$
to see what is happening.
|