I'm using hylafax 4.4.4 on ubuntu 8.10
I want to receive a report from hylafax of sent / received fax,
So I try to use faxcron (monthly scheduled)
/usr/local/sbin/faxcron | mail -s "Hylafax Report" FaxMaster
It' working but I've found that this command also delete old fax in the
recvq folder. I don't want this!
How I can say to faxcron only to send report of fax without delete anything?
Best regards
Diego
a.
--
Aidan Van Dyk ai...@ifax.com
Senior Software Developer +1 215 825-8700 x8103
iFAX Solutions, Inc. http://www.ifax.com/
Subsequently you suggestion I've search in the hylafax's site the page
relevant to faxcron and I found that is clearly explained how to set the
parameters.
Thank you again for you fast and polite reply.
Best Regards
Diego
-----Messaggio originale-----
Da: hylafax-us...@hylafax.org
[mailto:hylafax-us...@hylafax.org] Per conto di Aidan Van Dyk
Inviato: mercoledě 11 marzo 2009 13.14
A: faxmaster
Cc: hylafa...@hylafax.org
Oggetto: Re: [hylafax-users] Help Faxcron: I don't want to delete
receivedfax!
a.
____________________ HylaFAX(tm) Users Mailing List _______________________
To subscribe/unsubscribe, click http://lists.hylafax.org/cgi-bin/lsg2.cgi
On UNIX: mail -s unsubscribe hylafax-us...@hylafax.org < /dev/null
*To learn about commercial HylaFAX(tm) support, mail sa...@ifax.com.*
Here below the file "hylafax"
--------------------
#!/bin/sh
test -f /usr/sbin/faxcron || exit 0
test -f /usr/sbin/faxqclean || exit 0
test -f /var/spool/hylafax/log/xferfaxlog || exit 0
# Rotate the HylaFAX logfile
savelog -c 5 /var/log/hylafax/hylafax.log >/dev/null
# HylaFAX routine maintenance script
savelog -c 5 /var/log/hylafax/faxcron.log >/dev/null
faxcron -info 35 -log 35 -rcv 100 -tmp 15 -mode 664 >>
/var/log/hylafax/faxcron.log 2>&1
# HylaFAX queue cleaner process (3024000s = 35 day)
savelog -c 5 /var/log/hylafax/faxqclean.log >/dev/null
faxqclean -t -j 3024000 -a >> /var/log/hylafax/faxqclean.log 2>&1
-------------------------
First I don't understand what is the meaning
of the first three line "test -f etc.."
Second because I don't want that the sent/receive faxes are deleted
I 'm thinking to modify the line of faxcron with value -rcv 3650 (10 years)
And completely remove the line of faxqclean
Did you think this will correct ?
Thanks Diego
------------------------------------
* faxmaster <faxm...@stirome.com> [090311 06:30]:
> How I can say to faxcron only to send report of fax without delete
anything?
faxcron will deleted "old" stuff. The standard solution is just change what
it considers old. See the faxcron man page for specifics, but you'll want
to pick some suitably large values for -rcv and and -log, but probably not
for -tmp and -info.
I am looking at a system that the Makefile tells me has
Hylafax 4.4.4 and the Ports @ freebsd.org tell me this is the latest
and greatest.
The install was done in Jan 08 and 4.4.4 looks like it's a
Dec 2007 release, is this the most current, or should I be looking at something
latter / a more current release ?
TIA.
JMS..
Jeffrey Silberberg
CompuDesigns, Inc.
Atlanta, GA. 30350
http://www.compudesigns.net
----------------------------------------
Glen Batchelor
IT Director
All-Spec Industries
phone: (910) 332-0424
fax: (910) 763-5664
E-mail: webm...@all-spec.com
Web: http://www.all-spec.com
Blog: http://blog.all-spec.com
----------------------------------------
_____
Hello,
TIA.
JMS..
Thanks,
Paul
It makes sure that those files (faxcron, faxqclean, xferfaxlog) exist.
> Second because I don't want that the sent/receive faxes are deleted
> I 'm thinking to modify the line of faxcron with value -rcv 3650 (10 years)
> And completely remove the line of faxqclean
>
> Did you think this will correct ?
Well, it's my opinion that if you need to archive your faxes somewhere
long-term then you should do it somewhere else other than the HylaFAX
queue directories. I think that it's generally a bad idea to never run
faxqclean and to never delete files from recvq. BUT, you may get away
with it without any trouble.
Thanks,
Lee.
You need to run 'faxcron'. Look in your cronttabs or in /etc/cron.daily,
etc.
Thanks,
Lee.
"faxcron -info 35 -tmp 15 -mode 664 >> /var/log/hylafax/faxcron.log 2>&1"
.and also commented out the "faxqclean" line.
Will that leave all the sent faxes in "/var/spool/hylafax/docq" and all received faxes in "/var/spool/hylafax/recvq"? If so, is there any issue with doing so?
Thanks,
Paul Smith
"faxcron -info 3650 -log 3650 -rcv 3650 -tmp 15 -mode 664 >>
/var/log/hylafax/faxcron.log 2>&1"
Diego
-----Messaggio originale-----
Da: hylafax-us...@hylafax.org
[mailto:hylafax-us...@hylafax.org] Per conto di Paul Smith
Inviato: giovedě 12 marzo 2009 15.00
A: hylafa...@hylafax.org
Oggetto: Re: [hylafax-users] Missing old faxes
faxcron -info 3650 -log 3650 -rcv 3650 -tmp 15 -mode 664 >> /var/log/hylafax/faxcron.log 2>&1
faxqclean -A -t -j 3024000 -a >> /var/log/hylafax/faxqclean.log 2>&1
Not sure if I need -a given I've got -A but still, hopefully all incoming faxes will just sit there in "/var/spool/hylafax/recvq" and all outgoing faxes will be archived off after a month or so into their own directory in "/var/spool/hylafax/archive".
Thanks again,
Paul
> I have just installed hylafax 4.4.4 running on CentOS 5.2 using
> Postfix as my email application.
>
> When an email arrives with the phone in the subject to the faxuser. I
> should be able to fax the email to the email in the subject line but
> cannot figure out how to do it.
>
> Any help would be appreciated. I currently have email coming in to
> the faxuser.
You can find a sample that does this using procmail here:
http://hylafax.sourceforge.net/howto/clients/RelayFax.php
And here is a sample that uses shell, but it gets the fax number from
the e-mail address and not the subject header:
http://hylafax.sourceforge.net/howto/faxing.php#ss5.4
Thanks,
Lee.
HylaFAX+ has extended ModemDialCmd features which will allow you to do
this. See:
http://hylafax.sourceforge.net/docs/hylafax-differences.php#modemsetorigincmd
There is an example of how to do this with t38modem, but if you want the
approach that you've described:
ModemDialCmd: ATDT%d_%s
Any one know if the TPC service is still alive ?
http://www.tpc.int/
Tried to use an old address today with no luck.. Real
inform edited out -- Errors are not edited..
> ----- Transcript of session follows -----
>550 5.1.2
>remote-printer.user_name/roo...@17701231234.iddd.tpc.int... Host
>unknown (Name server: fax.gcfl.net.: host not found)
>
>Reporting-MTA: dns; host.domain.net
>Received-From-MTA: DNS; localhost.domain.net
>Arrival-Date: Tue, 7 Apr 2009 15:42:30 -0400 (EDT)
>
>Final-Recipient: RFC822; FD1...@host.domain.net
>X-Actual-Recipient: RFC822;
>remote-printer.user_name/roo...@4.3.2.1.3.2.1.0.7.7.1.tpc.int
>Action: failed
>Status: 5.1.2
>Remote-MTA: DNS; fax.gcfl.net
>Last-Attempt-Date: Tue, 7 Apr 2009 15:42:36 -0400 (EDT)
Jeffrey Silberberg
CompuDesigns, Inc.
Atlanta, GA. 30350
(770) 399-9464
http://www.compudesigns.net
As soon as I know the answers
They change the questions !
> Quick Some what off topic...
>
> Any one know if the TPC service is still alive ?
> http://www.tpc.int/
I've used it recently (last week in fact) to send FAXes in the UK. A few
weeks ago I tried to send one to a Swiss number but that failed because
there was no TPC coverage there.
Regards, Trevor
<>< Re: deemed!
I think that sender and owner (text strings) are incompatible with
Caller*ID Number (faxnumber).
Maybe I do not understand what you are asking.
Thanks,
Lee.
Omar LAHLOU wrote:
> Hello,
>
> Finally I installed Hylafax+.
> There is any way to include in ModemDialCmd the sender or owner value
> instead of faxnumber value from job file.
>
> Thanks a lot.
>
> ------------------------------------------------------------------------
> *De :* Lee Howard <fax...@howardsilvan.com>
> *À :* Omar LAHLOU <omarl...@yahoo.fr>
> *Cc :* hylafa...@hylafax.org
> *Envoyé le :* Mercredi, 18 Mars 2009, 1h43mn 20s
> *Objet :* Re: [hylafax-users] Customize dialing number
> <mailto:hylafax-us...@hylafax.org> < /dev/null
> *To learn about commercial HylaFAX(tm) support, mail sa...@ifax.com
> <mailto:sa...@ifax.com>.*
Thanks,
Lee.
Omar LAHLOU wrote:
>
> Thanks for your reply,
>
> I have different users that send faxes throw Hylafax Server using
> t38modem. Each user can send fax with Winprint or Jhylafax using its
> DID as username.
> When the Fax call is arrived to my SIP proxy from t38modem, I want to
> recognize the sender user from the Invite SIP Message. That’s why I am
> interested on Sender or Owner.
>
> If there is another solution, please don’t hesitate.
>
> Thanks a lot.
>
> Omar.
>
>
> ------------------------------------------------------------------------
> *De :* Lee Howard <fax...@howardsilvan.com>
> *À :* Omar LAHLOU <omarl...@yahoo.fr>
> *Cc :* hylafa...@hylafax.org
> *Envoyé le :* Lundi, 20 Avril 2009, 2h19mn 34s
> *Objet :* Re: [hylafax-users] Re : Customize dialing number
>
> Omar,
>
> I think that sender and owner (text strings) are incompatible with
> Caller*ID Number (faxnumber).
>
> Maybe I do not understand what you are asking.
>
> Thanks,
>
> Lee.
>
>
> Omar LAHLOU wrote:
> > Hello,
> >
> > Finally I installed Hylafax+.
> > There is any way to include in ModemDialCmd the sender or owner
> value instead of faxnumber value from job file.
> >
> > Thanks a lot.
> >
> > ------------------------------------------------------------------------
> > *De :* Lee Howard <fax...@howardsilvan.com
> <mailto:fax...@howardsilvan.com>>
> > *À :* Omar LAHLOU <omarl...@yahoo.fr <mailto:omarl...@yahoo.fr>>
> > *Cc :* hylafa...@hylafax.org <mailto:hylafa...@hylafax.org>
> > *Envoyé le :* Mercredi, 18 Mars 2009, 1h43mn 20s
> > *Objet :* Re: [hylafax-users] Customize dialing number
> >
> > Omar LAHLOU wrote:
> > > I am running Hylafax 4.4.0 with t38modem, and I want to customize
> the dialing number as follow:
> > > SenderNumber_DestinationNumber so in the Sip Invite the TO will be
> as SenderNumber_DestinationNumber@Domain.
> > > For Example when I sent a Fax to 14509668585, Hylafax Dial
> 14503339696_14509668585 knowing that 14503339696 is Sender (or Owner).
> >
> > HylaFAX+ has extended ModemDialCmd features which will allow you to
> do this. See:
> >
> >
> http://hylafax.sourceforge.net/docs/hylafax-differences.php#modemsetorigincmd
> >
> > There is an example of how to do this with t38modem, but if you want
> the approach that you've described:
> >
> > ModemDialCmd: ATDT%d_%s
> >
> > Thanks,
> >
> > Lee.
> >
> >
> > ____________________ HylaFAX(tm) Users Mailing List
> _______________________
> > To subscribe/unsubscribe, click
> http://lists.hylafax.org/cgi-bin/lsg2.cgi
> > On UNIX: mail -s unsubscribe hylafax-us...@hylafax.org
> <mailto:hylafax-us...@hylafax.org>
> <mailto:hylafax-us...@hylafax.org
> <mailto:hylafax-us...@hylafax.org>> < /dev/null
> > *To learn about commercial HylaFAX(tm) support, mail sa...@ifax.com
> <mailto:sa...@ifax.com> <mailto:sa...@ifax.com <mailto:sa...@ifax.com>>.*