FaxServer using Asterisk: Difference between revisions
(How to send faxes (e.g. for testing)) |
(replace /etc/init.d with rc-service) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 3: | Line 3: | ||
__NOTOC__ | __NOTOC__ | ||
= Installation = | = Installation = | ||
This wiki-doc is based on [ | This wiki-doc is based on [https://www.alpinelinux.org/downloads Alpine Linux 2.6] ''(but might also work on version 2.1.3 or higher)'' | ||
Start by [[Installation|setting up]] a Alpine Linux base system ''(you will most likely want to run <code>setup-alpine</code> to setup the most basic settings)'' | Start by [[Installation|setting up]] a Alpine Linux base system ''(you will most likely want to run <code>setup-alpine</code> to setup the most basic settings)'' | ||
Line 135: | Line 135: | ||
==== Start things up ==== | ==== Start things up ==== | ||
Now its time to start up the services | Now its time to start up the services | ||
{{cmd| | {{cmd|rc-service asterisk start}} | ||
Configure {{pkg|asterisk}} to autostart at next reboot | Configure {{pkg|asterisk}} to autostart at next reboot | ||
{{cmd|rc-update add asterisk}} | {{cmd|rc-update add asterisk}} | ||
Line 160: | Line 160: | ||
Now copy the '<tt>/tmp/testfax.txt</tt>' to '<tt>/var/spool/asterisk/outgoing/</tt>'. The second you do that, {{pkg|asterisk}} will try to send the fax based on what you wrote in the file. | Now copy the '<tt>/tmp/testfax.txt</tt>' to '<tt>/var/spool/asterisk/outgoing/</tt>'. The second you do that, {{pkg|asterisk}} will try to send the fax based on what you wrote in the file. | ||
{{cmd|cp -p /tmp/testfax.txt /var/spool/asterisk/outgoing/}} | {{cmd|cp -p /tmp/testfax.txt /var/spool/asterisk/outgoing/}} | ||
[[Category:Telephony]] |
Latest revision as of 10:41, 17 November 2023
This material is work-in-progress ... This is a experimental page to see if this could replace a more complex setup using Asterisk+IAXmodem+hylafax |
This document aims to create a as simple as possible to setup fax server to send and receive faxes using asterisk and asterisk-fax.
Installation
This wiki-doc is based on Alpine Linux 2.6 (but might also work on version 2.1.3 or higher)
Start by setting up a Alpine Linux base system (you will most likely want to run setup-alpine
to setup the most basic settings)
Firewall
You might want to setup a firewall to protect your system. We will not address this task in this document. Some firewall alternatives in Alpine Linux are
- AWall
- Shorewall
- iptables
Configure email
Install required packages
We will use the package email to send the faxes by email to various recipients. Lets start by installing the package
apk add email
General configuration
- Edit the appropriate file
vi /etc/email/email.conf
- Change the variables
SMTP_SERVER
,SMTP_PORT
,MY_NAME
,MY_EMAIL
,ADDRESS_BOOK
- Comment out the variable
SIGNATURE_FILE
Address book
- Edit the appropriate file (In this example we assume you did not change the value of
ADDRESS_BOOK
variable).
vi /etc/email/email.address.template
- Define some email addresses that suits your needs.
The upcoming asterisk config assumes that you have some predefined records in this address book. Example:
Contents of /etc/email/email.address.template
Test functionality
When you done your email configuration you can test this by running commands like this:
email -s "testmail" -b jeff
Configure Asterisk
There are multiple ways to configure Asterisk. This document only describes a very basic setup which you might want to modify based on your needs. But by following this document, you should have a fully functional fax-server using only asterisk and asterisk-fax.
Install required packages
At this stage your Alpine Linux only holds some basic packages for base functionallity. We will need to install some extra packages in order to get the fax functionallity.
apk add asterisk asterisk-fax
General setup
Set some general settings
- Edit the appropriate file
vi /etc/asterisk/asterisk.conf
- Copy this content to the file
Contents of /etc/asterisk/asterisk.conf
Load appropreate modules
Asterisk needs some modules to be able to handle fax.
- Edit the appropriate file
vi /etc/asterisk/modules.conf
- Copy this content to the file
Contents of /etc/asterisk/modules.conf
Enable SIP
- Edit the appropriate file
vi /etc/asterisk/sip.conf
- Copy this content to the file
Contents of /etc/asterisk/sip.conf
Enable udptl
- Edit the appropriate file
vi /etc/asterisk/udptl.conf
- Copy this content to the file
Contents of /etc/asterisk/udptl.conf
Configure fax
- Edit the appropriate file
vi /etc/asterisk/res_fax.conf
- Copy this content to the file
Contents of /etc/asterisk/res_fax.conf
Configure dialplan
- Edit the appropriate file
vi /etc/asterisk/extensions.lua
- Copy this content to the file
Contents of /etc/asterisk/extensions.lua
Permissions
For asterisk to be able to read the new config files, we need to set the correct permissions to the files
chown -R asterisk:asterisk /etc/asterisk
Start things up
Now its time to start up the services
rc-service asterisk start
Configure asterisk to autostart at next reboot
rc-update add asterisk
Testing
Sending fax
Prepare
Save a '.tiff' file into '/tmp/' (in our example we name the file '/tmp/testfax.tiff').
Create a file that looks something like this (modify it for your local needs).
Contents of /tmp/testfax.txt
Change permissions on the newly created files
chown asterisk:asterisk /tmp/testfax*
Send the fax
Now copy the '/tmp/testfax.txt' to '/var/spool/asterisk/outgoing/'. The second you do that, asterisk will try to send the fax based on what you wrote in the file.
cp -p /tmp/testfax.txt /var/spool/asterisk/outgoing/