aboutsummaryrefslogtreecommitdiff
path: root/HYLAFAX-SETUP.md
blob: 218bb73977d04c2c9339b70c171c5dffe9a4ad69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305

   

Setting up a Debian 11 VM for our Hylafax and TC-C-FAX host.

You will need Debian 11! Anything newer I was not able to get running and even Debian 11 is a stretch as to how recent it can be. I also don't recommend doing this in a container as of now. If you want to do so your on your own.

As to the Debian VM its nothing special just default no desktop just SSH and standard system utils.

Make sure to have a valid FQDN and preferably have a static IP

Preparing Debian 11 VM

  1. SSH into your VM
ssh user@ip-address
  1. Sign in to root account
su
  1. Set Static IP (Optional if fine with DHCP) Change your primary interface to have static IP nano /etc/network/interfaces
# The primary network interface
allow-hotplug ens18
auto ens18
iface ens18 inet static
    address 10.2.1.123
    netmask 255.255.255.0
    gateway 10.2.1.1

CTRL+S to save CTRL+X to exit

  1. Set Nameservers (Optional if fine with DHCP) Check on your nameservers and set them nano /etc/resolv.conf
nameserver 10.2.1.1
nameserver 9.9.9.9

CTRL+S to save CTRL+X to exit

  1. Restart networking to apply your stuff and sign in on new IP via SSH and sign in to root again

  2. Setting up the basics (biased) (replace user with your actual user account username)

apt update && apt upgrade && apt install -y sudo fish unzip htop screen tmux psmisc
/sbin/usermod -s /usr/bin/fish root
/sbin/usermod -s /usr/bin/fish user
/sbin/usermod -aG sudo user
set -U fish_user_paths /sbin /usr/sbin $fish_user_paths
su user
set -U fish_user_paths /sbin /usr/sbin $fish_user_paths
exit
exit
exit

Installing and setting up IAX Modem

Sign in as root 1. Install IAX Modem

apt install -y iaxmodem
  1. Configure IAX Modem
nano /etc/iaxmodem/iaxmodem-cfg.ttyIAX0

Paste the following, making sure to fill in example values with your own

device          /dev/ttyIAX0
owner           uucp:uucp
mode            660
port            4577
server          AsteriskServerIP
refresh         300
peername        157
secret          Password123
cidname         FaxingFaxingFaxingdaCID
cidnumber       157
codec           ulaw
answer          yes

CTRL+S to Save CTRL+X to exit 1. Make a service for it Yes there exists sysv files for it, do we want to use those probably not.

nano /etc/systemd/system/iaxmodem-fax@.service

Paste the following (yes were running it as root, yes this is stupid)

[Unit]
Description=IAXModem instance %i
After=network.target

[Service]
Type=forking
PIDFile=/var/run/iaxmodem-%i.pid
ExecStart=/usr/bin/iaxmodem --configfile /etc/iaxmodem/iaxmodem-cfg.%i
Restart=always
User=root
Group=root


[Install]
WantedBy=multi-user.target

CTRL+S to save CTRL+X to exit

systemctl daemon-reload
systemctl enable --now iaxmodem-fax@ttyIAX0
systemctl status iaxmodem-fax@ttyIAX0

You should now be able to dial the extension and nolonger get Service Unavailable but just the Ring Tone (we have nothing that responds to an incoming call yet but you could pick up using at commands and screen on /dev/ttyAIX0)

  1. If installing IAX modem didnt create UUCP group and user for some reason run the following but should exist
groupadd --system uucp
useradd --system --no-create-home --gid uucp --shell /usr/sbin/nologin uucp

Installing HylaFax Plus (aka simply version 7.0.10)

Again use Debian 11, I've had no luck on Debian 12 for some reason... (5 hours wasted troubleshooting)

Sign in as root 1. Add Contrib to Debian APT Sources

sudo sed -i '/^deb /s/main/main contrib non-free/' /etc/apt/sources.list && sudo apt update
  1. Install dependencies and stuff
apt install -y build-essential libtiff-dev libjpeg-dev zlib1g-dev libpam0g-dev ghostscript gsfonts libgs-dev flex bison libncurses5-dev texinfo libssl-dev libc-client-dev uuid-dev libtool automake autoconf tcl8.6-dev libtiff-tools libjpeg-progs iaxmodem ghostscript gsfonts gsfonts-other gsfonts-x11 imagemagick ttf-mscorefonts-installer wget sendmail
  1. Download and Extract HylaFax Plus sources If that download for whatever reason disapears theres a copy in this repo too in the archive folder.
cd /usr/local/src
wget -O hylafax-7.0.10.tar.gz "http://prdownloads.sourceforge.net/hylafax/hylafax-7.0.10.tar.gz?download"
tar -xvzf hylafax-7.0.10.tar.gz
cd hylafax-7.0.10
  1. Configure it (my example output), build it and install it. (and pray alot)
./configure
make
make install

(I have changed default page size to A4 as thats the norm here)

  1. Preconfiguring Hylafax and making systemd files.
nano /etc/systemd/system/hylafax-faxq.service
[Unit]
Description=HylaFAX fax queue manager
After=network.target

[Service]
ExecStart=/usr/local/sbin/faxq
Restart=always
User=root
Group=root
Type=forking

[Install]
WantedBy=multi-user.target
nano /etc/systemd/system/hylafax-hfaxd.service
[Unit]
Description=HylaFAX hfaxd server
After=network.target

[Service]
ExecStart=/usr/local/sbin/hfaxd -i hylafax
Restart=always
User=root
Group=root
Type=forking

[Install]
WantedBy=multi-user.target
nano /etc/systemd/system/hylafax-faxgetty@.service
[Unit]
Description=HylaFAX faxgetty on %I
After=network.target

[Service]
ExecStart=/usr/local/sbin/faxgetty /dev/%I
Restart=always
User=root
Group=root
Type=simple

[Install]
WantedBy=multi-user.target
systemctl daemon-reload
systemctl enable --now hylafax-faxq
systemctl enable --now hylafax-hfaxd
systemctl enable --now hylafax-faxgetty@ttyIAX0

systemctl status hylafax-faxq
systemctl status hylafax-hfaxd
systemctl status hylafax-faxgetty@ttyIAX0

Crashes for faxq are okay missing some config.

  1. Remove SysV Init Files for Hylafax since we replaced them with proper ones
systemctl mask hylafax.service
rm -f /etc/init.d/hylafax
sudo update-rc.d -f hylafax remove
  1. Preconfigure HylaFax for your modem
nano /var/spool/hylafax/etc/config.ttyIAX0

Now paste the following and make changed where needed

# prototype config for the IAXmodem softmodem which uses
# the spandsp soft-DSP library

CountryCode:        41
AreaCode:       044
FAXNumber:      +41444444444
LongDistancePrefix: 0
InternationalPrefix:    00
DialStringRules:    etc/dialrules
ServerTracing:      1
SessionTracing:     0xFFF
RecvFileMode:       0600
LogFileMode:        0600
DeviceMode:     0666
RingsBeforeAnswer:  1
SpeakerVolume:      off
GettyArgs:      "-h %l dx_%s"
LocalIdentifier:    "Your Fax CID"
TagLineFont:        etc/LiberationSans-25.pcf
TagLineFormat:      "From Your Fax | %c | Page %%P of %%T""
MaxRecvPages:       25
ModemType:      Class1      # use this to supply a hint
#ModemSetOriginCmd: "AT+VSID=\"%s\",\"%d\""
#ModemResetCmds:    "ATH1\nAT+VCID=1"   # enables CallID display
#ModemReadyCmds:    ATH0
ModemResetDelay: 0              # DTR isn't handled, anyway
ModemSoftResetCmdDelay: 0           # modem reset is complete at "OK"
ModemResetCmds:     AT+VCID=1   # enables CallID display
PagerTTYParity:     none
Class1AdaptRecvCmd: AT+FAR=1
Class1TMConnectDelay:   400     # counteract quick CONNECT response
# For old iaxmodem versions
#Class1RMQueryCmd:  "!24,48,72,96"  # V.17 fast-train recv doesn't work well
#Class1TMQueryCmd:  "!24,48,72,96"  # V.17 fast-train recv doesn't work well

CallIDPattern:          "NMBR="
CallIDPattern:          "NAME="
CallIDPattern:      "ANID="
CallIDPattern:          "NDID="
#CallIDAnswerLength:    4
# Uncomment these if you really want them, but you probably don't.
#CallIDPattern:          "DATE="
#CallIDPattern:          "TIME="
  1. Run Fax Setup and answer questions. (Minified example below)
/usr/local/sbin/faxsetup

Should an entry be added for the FaxMaster to /etc/aliases [yes]? 
Users to receive fax-related mail [root]? 
Generate etc/ssl.pem for SSL Fax [yes]? no
Country code [1]? 41 
Area code [000]? 044
Long distance dialing prefix [1]? 0
International dialing prefix [011]? 00
Dial string rules file (relative to /var/spool/hylafax) ["etc/dialrules"]? 
Tracing during normal server operation [1]? 
Default tracing during send and receive sessions [0xFFF]? 
Continuation cover page (relative to /var/spool/hylafax) []? 
Timeout when converting PostScript documents (secs) [180]? 
Maximum number of concurrent jobs to a destination [1]? 
Define a group of modems []? 
Time of day restrictions for outbound jobs ["Any"]? 
Timeout before purging a stale UUCP lock file (secs) [30]? 
Max number of pages to permit in an outbound job [0xffffffff]? 
Syslog facility name for ServerTracing messages [daemon]? 
Is it ok to send a QUIT command to each process [yes]? 
/usr/local/sbin/faxquit ttyIAX0
Done verifying system setup.

root@fax /u/l/s/hylafax-7.0.10# /usr/local/bin/faxstat -s
HylaFAX scheduler on fax.teleco.local: Running
Modem ttyIAX0 (+41444444444): Waiting for modem to come ready

If modem doesnt come online make sure its all happy happy on asterisk and stuff otherwise idk ask an ai or something this was enough of a pain to figure out ... and btw chatppt will give you wrong answers about hylafax... and that like alot so dont rely on it