Main > Free Download Search >

Free fax numbers software for linux

fax numbers

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3361
number 2.30

number 2.30


number is a perl script that will print the English name of a number. more>>
number is a perl script that will print the English name of a number. One can print names of extremely large numbers (e.g. 1e1234567). Number can be run on the command line, or as a CGI script when run as number.cgi.

Number prints names in both the American and European naming system. It can also print the decimal expansion of a number in either naming system.

<<less
Download (0.028MB)
Added: 2006-09-19 License: Freely Distributable Price:
1130 downloads
FaxRouter 0.05

FaxRouter 0.05


FaxRouter is a efax based application which converts a received fax to jpeg and sends it to you by email. more>>
FaxRouter is a efax based application which converts a received fax to jpeg and sends it to you by email.

It will also keep your fax spool clean for you and can easily be configured to run from inittab and receive all faxes for you.

<<less
Download (0.006MB)
Added: 2006-09-14 License: GPL (GNU General Public License) Price:
1136 downloads
Scalar::Number 0.001

Scalar::Number 0.001


Scalar::Number is a Perl module with numeric aspects of scalars. more>>
Scalar::Number is a Perl module with numeric aspects of scalars.

SYNOPSIS

use Scalar::Number qw(scalar_num_part);

$num = scalar_num_part($scalar);

use Scalar::Number qw(sclnum_is_natint sclnum_is_float);

if(sclnum_is_natint($value)) { ...
if(sclnum_is_float($value)) { ...

use Scalar::Number qw(sclnum_val_cmp sclnum_id_cmp);

@sorted_nums = sort { sclnum_val_cmp($a, $b) } @floats;
@sorted_nums = sort { sclnum_id_cmp($a, $b) } @floats;

This module is about the numeric part of plain (string) Perl scalars. A scalar has a numeric value, which may be expressed in either the native integer type or the native floating point type. Many values are expressible both ways, in which case the exact representation is insignificant. To fully understand Perl arithmetic it is necessary to know about both of these representations, and the differing behaviours of numbers according to which way they are expressible.
This module provides functions to extract the numeric part of a scalar, classify a number by expressibility, and compare numbers across representations.

<<less
Download (0.009MB)
Added: 2007-05-21 License: Perl Artistic License Price:
886 downloads
Math::Numbers 0.000000001

Math::Numbers 0.000000001


Math::Numbers is a Perl module that contains methods for mathematical approaches of concepts of the number theory. more>>
Math::Numbers is a Perl module that contains methods for mathematical approaches of concepts of the number theory.

SYNOPSIS

use Math::Numbers;

my $a = 123;
my $b = 34;

my $numbers = Math::Numbers->new($a, $b [, ...]);

print "They are coprimes (relatively primes)!n" if $numbers->are_coprimes;
print "The greatest common divisor of these at least two numbers is ", $numbers->gcd;

my $number = Math::Numbers->new($a);

print "It is prime!n" if $number->is_prime;

my @divisors = $number->get_divisors;

print "$a is divisor of $b!n" if $number->is_divisor_of($b);

Math::Numbers is quite a simple module on matters of programming. What its interesting is the focus and approach it is intended to be made from the Number Theory basis for Perl beginners (like me) and also for young mathematicians (like me).

The normal topics of Number Theory include divisibility, prime numbers (which is separately intended to be covered by Math::Primes), congruences, quadratic residues, approximation for Real numbers, diophantine equations, etc. and all this is intended to be convered by the module on the concept on getting and setting values and also retriving the proof methods.

METHODS

new

# Some methods require more than only one argument.
my $numbers = Math::Numbers->new($p, $q, ...);

# Some methods require only one.
my $number = Math::Numbers->new($p);

Create a Math::Numbers object. Note that some of the methods will require objects created with only one or a defined numbers of arguments.

gcd
my $gcd = $numbers->gcd;

Calculation of the Greatest Common Divisor. This is made by two different methods which are described below: Blutos algorithm and Euclidean algorithm: The former is used when computing GCD for more than two integers; the latter is used when getting the GCD for two numbers to improve speed. See below for information on each.

Bluto_algorithm

You will mostly not require to call this method, but directly gcd(). Blutos algorithm uses a brute force calculation used by mathematicians to get divisors and then GCD also called Primality Test. Bluto takes some spinaches stolen from Popeye and starts dividing m all the way through 2 to m/2.

Euclidean_algorithm

Euclid rocks. I have a very nice Budgerigar (http://en.wikipedia.org/wiki/Budgerigar) called the same in honor of him (have to upload a pic of him).

As of now, this algorithm is only computed on two integers. From the Wikipedia entry: Given two natural numbers a and b: check if b is zero; if yes, a is the gcd. If not, repeat the process using (respectively) b, and the remainder after dividing a by b. This is exactly what our method does.
is_divisor_of

print "Yes, $p is divisor of $a...n" if $number->is_divisor_of($a);

Lets see if the number from the object is a divisor of $a, which means that the division $number/$a will return an integer (not necesarily a natural). If it does, itll return 1; 0, otherwise.

get_divisors
my @divisors = $number->get_divisors;

What are the divisors of the number brought by the object? This only includes the Natural numbers.

is_prime
print "$p is not prime!n" unless $number->is_prime

Returns 0 or 1 if the number from the object is prime or not, respectively. This method uses the, a bit slow, primality test.

are_coprimes
print "They are coprimes because their GCD is 1!n" if $numbers->are_coprimes;

Are the numbers from the object coprimes (relatively primes)? This means, the GCD is 1; (a, b, c, ...) = 1. Returns 1 or 0.

<<less
Download (0.004MB)
Added: 2007-07-13 License: Perl Artistic License Price:
833 downloads
Linux Letters and Numbers 0.1.95

Linux Letters and Numbers 0.1.95


Linux Letters and Numbers project is an educational childrens game for linux. more>>
Linux Letters and Numbers project is an educational childrens game for linux.
Linux Letters and Number is a fun and educational learning game intended for children 2 and up.
It helps children learn or improve their letters, numbers, spelling, and vocabulary skills through the use of interesting pictures.
It also helps them develop important computer skills too.
It is written in C using the GTK and GDK_Imlib libraries.
Main features:
- Extensible - add new images yourself without having to make changes to the program. With support for gdk_imlib, you can now use common image formats, including common formats like gif, jpeg, xpm, png, and tiff.
- Dynamic - each letter or number can be represented by numerous pictures, each being displayed randomly.
- Flexible - you can even have more than one picture for a given word, by using a simple versioning scheme (ie Apple.1.xpm, Apple.2.xpm)
- Interesting - because you can change the game, its different every time!
<<less
Download (0.17MB)
Added: 2006-10-27 License: GPL (GNU General Public License) Price:
1097 downloads
fax4CUPS 1.28

fax4CUPS 1.28


fax4CUPS is a simple shell scripts that acts as a CUPS backend. more>>
fax4CUPS is a very simple shell script that acts as a CUPS backend for a serial fax modem. Essentially, you print with lpr and the fax is sent.
The nice thing is that you have CUPS around, and this means, for instance, that you can check whether your fax has been sent just using your favorite browser (as you would do for any other printer), even if the fax modem is really on a remote server. fax4CUPS project supports HylaFAX, efax, and mgetty-fax.
Enhancements:
- Two deadly bugs in shell syntax have been fixed.
<<less
Download (0.012MB)
Added: 2006-08-31 License: GPL (GNU General Public License) Price:
1150 downloads
AsterFax 1.1 Beta 3

AsterFax 1.1 Beta 3


AsterFax is an email to fax gateway for the transmission of faxes using Asterisk. more>>
AsterFax is an email to fax gateway for the transmission of faxes using Asterisk.
Asterisk is an Open Source PABX (or PBX) which provides all of the functionality of a high end PBX, free of charge.
AsterFax builds on the services provided by Asterisk to provide a full fledged email based Fax Gateway.
What that means is that with AsterFax and Asterisk you can send faxes from your desktop using your standard email client without have to install any software on your desktop.
AsterFax can translate a normal email message into a fax message. You simply enter the destination phone number in the To address, compose your email message and click send. Its that easy.
For more formal correspondence AsterFax also supports a growing number of file formats such as PDF, Tiff, Postscript, MS-Word and OpenOffice Writer. You can either attach the file to your email message or for applications such as MS-Word and OpenOffice you can fax directly from the applications by using the Send Email option. The resulting email is sent as a fax message.
If any errors occurring during transmission a error report is sent back to your inbox.
You can also preview how the fax will look by sending email to the special preview address, which simply formats the message ready for transmission and then sends it back to you via email for previewing before the fax is sent.
AsterFax supports a growing list of file types such as Tiff, PDF, postscript, MS-Word, MS-Excel and the OpenOffice Writer. AsterFax is also extensible in that you can easily add support for additional file formats via the AsterFax.xml configuration file providing that you have access to a third party product that can convert your required file format to one of the supported file formats such as PDF or tiffg3.
Additional file formats will follow shortly (see the Roadmap).
For the technically minded AsterFax is written in pure Java and utilizes the Asterisk Manager API to submit jobs.
AsterFax uses external applications to perform the conversion of attachments to the required tiff format for transmission.
AsterFax can be extended via a simple xml configuration file to convert and transmit any other file format providing a suitable conversion application is available.
AsterFax includes a simple standalone SMTP gateway which handles the receipt of emails. AsterFax is not a complete SMTP gateway in that it will only accept messages which are to be faxed. Alternatively AsterFax can be integrated with your existing SMTP server (Sendmail. Postfix, Exchange Server) by way of tools such as Procmail.
AsterFax requires Asterisk@Home or Asterisk with the spandsp (txfax, rvfax) extensions.
Main features:
- Built as an extension to Asterisk.
- Integrated SMTP gateway provides a simple one stop install.
- Support for a number of file formats including: Tiffg3, Postscript, PDF, Word, OpenOffice Writer.
- Preview mode allows previewing of rendered faxes before they are sent.
- Support for multiple Asterisk Channels as well as group channels (e.g. Zap/g0).
- Send faxes without specialised Fax Modems (just use your existing Asterisk/Digium hardware).
- Send faxes directly from MS-Word and OpenOffice Writer
- No client side install required.
- Send standard email (text or html) as fax or attach a Word, PDF, Writer etc.. for transmission as a fax.
- Email body used as a Coversheet to attachments
- Send to multiple recipients in a single message by providing multiple To addresses.
- No special formatting required in the email.
- Extensible support for additional file formats via simple xml configuration file.
- Built-in test suite to aid in configuration and installation.
- Automatic Archiving of all faxes to a designated mailbox.
- Automatic Delivery receipts.
Whats New in 1.0 Stable Release:
- This release is the culmination of months of effort and includes a number of bug fixes as well as a few new features.
- Most notably this is the first release of AsterFax Free Edition.
- The free edition includes all the features of any other edition but will only transmit a single fax at a time.
- Thanks to everyone that has given us feedback and helped make the product what it is today.
- We look forward to working with you all on this release.
Whats New in 1.1 Beta 3 Development Release:
- This release includes an enhancement that allows the header and footer to vary with the destination fax number.
- A different company name and header and footer format can be used for each destination fax number.
- It also adds a new ReturnFaxNumber property, which is included in the header and footer with a %R parameter.
- There is no need to change any configuration files to use beta 3, but AsterFax.xml must be modified according to the release notes to make use of the feature.
<<less
Download (0.16MB)
Added: 2006-12-04 License: Other/Proprietary License with Source Price:
1065 downloads
HermesFax 2.7b

HermesFax 2.7b


HermesFax is a Web interface for Hylafax. more>>
HERMESfax project renews the old concept of fax, a document trasmitted through telephone line.
With HERMESfax the fax is transformed and it become a digital information that can be archeived, re-sent, composed, searched, controlled, recorded.
It reduced the use of paper and toner, the transmission time are also reduced, the number of errors and of losses documents are reduced, the dead times of attended are reduced ... The only thing that increase is the time that can be used for more fruitful things.
Main features:
- easy use of the service through interface WEB (compatible with the more diffuse browser;
- historical archives of the documents through the database MySQL and POSTGRESQL
- confidential access multi-users to the service
- privacy and safety of documents
- workflow hierarchical management
HERMESfax needs LINUX/UNIX server, one or more modem/ISDN device and the HylaFAX(TM) fax server. With these few things you will be able to trasmit, compose, search, receive faxes for your company (even if you are comfortably laying on a beach) using a simple but powerful WEB interface.
<<less
Download (0.15MB)
Added: 2005-08-06 License: GPL (GNU General Public License) Price:
1541 downloads
GOfax 1.0.5pre1

GOfax 1.0.5pre1


GOfax is a fax solution using Hylafax, LDAP, and MySQL. more>>
GOfax provides an extensible fax solution and works in conjunction with Hylafax. User information is held in LDAP trees to provide centralized administration.
GOfax has built-in plugin support (i.e., for send/receive methods, different image formats, logging, etc.).
Enhancements:
- This release adds annotations for received faxes (completely untested and buggy), and a binaries check to bin/check_system.
- The PNG converter plugin has been replaced with Imagmagick, German locales have been improved and the installer updated.
- Workaround(s) have been added for SuSE 10.OSS.
- An initial RPM spec file has been added, and its now possible to add comments to sent faxes.
- ldap_find -l should only print fax numbers, and faxAlternateAddress works again.
<<less
Download (0.05MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1206 downloads
astfax 1.0

astfax 1.0


astfax allows you to create an email to fax gateway. more>>
astfax allows you to create an email to fax gateway. It processes incoming email messages with attached fax images and sends them out via the txfax module. Asterisks outgoing call queue is used to initiate the fax call and transfer. The call file generated for the outgoing call queue is in template form, and can easily be updated for any systems configuration. It can be used (for example) with qmail, asterisk, spandsp, and eps to create an email/fax gateway.

For complete functioning of astfax you will need a mail solution which allows you to send an email via stdin to an external delivery program. Generally, qmail is the preferred MTA on Unix-based systems. One can easily set up an Asterisk-dedicated qmail MTA for delivery of voicemail
messages, faxes, etc.

<<less
Download (0.009MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1216 downloads
smbfax 1.5

smbfax 1.5


smbfax is sends a fax to a Samba print share without any Win32 client software. more>>
smbfax is a Unix server which allows you to print via Samba from a Windows client to a hylafax-controlled faxmodem on your server without any additional Win32 software for the client.
Its as easy as File->Print from an application, choose the network fax printer, then check your emails INBOX. You can also view and delete jobs via the standard Windows methods.
Main features:
- Allows users to "print" a document to a network printer. The Samba server then sends the document to smbfax, which prepares it and sends an e-mail to the owner inviting her to complete the fax via a web interface. The user then clicks on the provided link, fills in the fax information (recipient, comment, coverpage options, etc.) and clicks on the "send" button.
- Allows users to manage the send (outgoing) fax queue using the standard Windows method of managing print jobs (you can even select your own jobs and kill them with the delete key)
- You *dont* need to install any client software at all; no need to upgrade WINSOCK.DLL to the latest version or have some systray app running to intercept print jobs. You dont have to use any special drag-and-drop software or e-mail/web gateways with confusing attachments.
- Weve been running it for a (little) while here without any problems, it works just great;
- Its as easy as Print => Check Email
System requirements:
- Hylafax
- Perl 5.004 or better (Plus some modules)
- Apache or any other CGI-BIN webserver
- Samba
- A good POSIX system (tested under linux-2.2.16)
<<less
Download (0.011MB)
Added: 2005-04-20 License: Artistic License Price:
1647 downloads
GFax 0.7.6

GFax 0.7.6


GFax project aims to provide a free front end to the various facsimile programs available. more>>
GFax project aims to provide a free front end to the various facsimile programs available.

GFax provides the familiar "pop up" window and phone book support when one "prints" to a "fax" printer.

This is the fourth round of major changes for GFax. The first cut was built using the GNOME Objective-C language bindings. Objective-C is nice but the bindings never kept pace with the changes in GNOME. The second cut was written in C.

The third release was moved to Python with libglade. Python is far less "verbose" than C and for this project just makes a lot of sense. I have now moved to C# using mono and gtk#. C# is a very nice language and gives me the best between Python and C.

<<less
Download (0.73MB)
Added: 2006-12-10 License: GPL (GNU General Public License) Price:
1049 downloads
Number::Interval 0.01

Number::Interval 0.01


Number::Interval is a Perl module that can implement a representation of a numeric interval. more>>
Number::Interval is a Perl module that can implement a representation of a numeric interval.

SYNOPSIS

use Number::Interval;

$i = new Number::Interval( Min => -4, Max => 20);
$i = new Number::Interval( Min => 0 );

$is = $i->contains( $value );
$status = $i->intersection( $i2 );

print "$i";

Simple class to implement a closed or open interval. Can be used to compare different intervals, determine set membership, calculate intersections and provide default stringification methods.

Intervals can be bound or unbound. If max is less than min the interval is inverted.

<<less
Download (0.006MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
952 downloads
cupsfax 0.4

cupsfax 0.4


cupsfax project contains a set of two scripts to integrate a fax server into the CUPS printing system. more>>
cupsfax project contains a set of two scripts to integrate a fax server into the CUPS printing system. To send a fax, the user prints it to the designated printer queue. He will then receive a mail with a link to a web form. In this web form, the user may enter additional parameters - most importantly, the receiving fax number.

This way, there are no additional conditions on what can be printed, like fax numbers embedded into the file or job name. This can also be fully integrated into a samba/CUPS configuration, enabling Windows clients to send arbitrary documents as fax. It also gives the full power of the CUPS print processing pipeline to sending faxes.

<<less
Download (0.016MB)
Added: 2007-01-25 License: Public Domain Price:
1005 downloads
QFaxReader 0.3.1

QFaxReader 0.3.1


QFaxReader is a multipage monochrome/color TIFF/FAX viewer. more>>
QFaxReader project is a monochrome and color multipage .TIFF files visualisation utility designed for viewing faxes.
Main features:
- multi-page monchrome/color tiff/fax file support
- fullscreen mode
- correctly display fax images in any resolution
- an aliases database for replacing fax IDs with real names
- image transformation (left or right rotation, vertical flipping)
- image export into any format supported by the Qt installation
- auto-refresh and notification of new facsimiles
- a sidebar for easy directory navigation
- printing
- arbitrary scaling (normal/smooth) with fit support
- internationalization support
- CID support
<<less
Download (0.27MB)
Added: 2006-10-06 License: GPL (GNU General Public License) Price:
1114 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5