aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUMTS at Teleco <crt@adastra7.net>2025-02-18 16:39:04 +0100
committerUMTS at Teleco <crt@adastra7.net>2025-02-18 16:39:04 +0100
commit8ee0eaa7304de325adc233ceffce87200c55ce7e (patch)
tree9f4bde455a7c15564253b8027949ce21e61e8d2e
parent316478c11b2c2bed29a55c0e330054bc38234545 (diff)
pain pain pain pain
-rw-r--r--README.md245
-rw-r--r--examples/outputs/hylafaxconfig.md577
2 files changed, 821 insertions, 1 deletions
diff --git a/README.md b/README.md
index 4235fe6..9138af7 100644
--- a/README.md
+++ b/README.md
@@ -4,9 +4,252 @@ Telecos Crappy Fax
Very wip... lol
+# TC-C-FAX : Telecos Crappy Fax Gateway
+So you want a Fax Gateway ? No ? Do you even know what that is ? Also no? well let me explain.
+
+This project contains all files needed for setting up TC-C-FAX
+A fax server that is highly integrated with E-Mail!
+
+What it does ?
+It listens for new E-Mails on an E-Mail defined by you. Once one arrives it gives the sender (if unknown) an ID and gives the E-Mail an ID too.
+Prints the E-Mail including sender ID and E-Mail ID on your actual Fax machine (can be any fax no matter if Virtual or Real aslong as its a dialable Asterisk Extension)
+Now thats all nice and stuff but how do you reply on your fax machine to an E-Mail ? Ah you see thats where the ID system comes in handy!
+On you actual fax dial its extension with the E-Mail or Sender ID appended to the extension number and evoila your Fax is sent either as a new E-Mail to the Sender ID you gave or as a reply to E-Mail ID.
+
+Now as of now this is just the concept of how it is supposed to work, this is not actually done yet. Once that all somewhat works there should be a release available.
+
+# Getting Started :
+
+## What you will need :
+- An Asterisk Server with an IAX extension set up for the Fax Gateway
+- Some way of testing your Fax Gateway (can be a virtual fax or a real one aslong as you can dial it from the IAX extension)
+- An E-Mail account without 2FA
+- Some Virtualization Platform for the Debian 11 VM needed for this.
+
+
+### Setting up a Debian 11 VM
+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
+```bash
+su
+```
+1. Set Static IP (Optional if fine with DHCP)
+Change your primary interface to have static IP `nano /etc/network/interfaces`
+```bash
+# 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`
+```bash
+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
+
+1. Setting up the basics (biased) (replace user with your actual user account username)
+```bash
+apt update && apt upgrade && apt install -y sudo fish unzip htop screen tmux
+/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
+```bash
+apt install -y iaxmodem
+```
+1. Configure IAX Modem
+```bash
+nano /etc/iaxmodem/iaxmodem-cfg.ttyIAX0
+```
+Paste the following, making sure to fill in example values with your own
+```bash
+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.
+```bash
+nano /etc/systemd/system/iaxmodem-fax@.service
+```
+Paste the following
+(yes were running it as root, yes this is stupid)
+```bash
+[Unit]
+Description=IAXModem instance %i
+After=network.target
+
+[Service]
+Type=simple
+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
+```bash
+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
+```bash
+groupadd --system uucp
+useradd --system --no-create-home --gid uucp --shell /usr/sbin/nologin uucp
+
+```
+### Installing HylaFax Plus (aka simply version 7.0.10)
+
# Installing HylaFax (Make sure to have a will to live and to not loose it while installing this crap)
-Done on Debian 11 because 12 is even more broken, use root user to save yourself some pain
+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
+```bash
+sudo sed -i '/^deb /s/main/main contrib non-free/' /etc/apt/sources.list && sudo apt update
+```
+1. Install dependencies and stuff
+```bash
+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.
+```bash
+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](examples/outputs/hylafaxconfig.md)), build it and install it. (and pray alot)
+```bash
+./configure
+make
+make install
+```
+(I have changed default page size to A4 as thats the norm here)
+
+1. Preconfiguring Hylafax and making systemd files.
+```bash
+nano /etc/systemd/system/hylafax-faxq.service
+```
+```bash
+[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
+```
+```bash
+nano /etc/systemd/system/hylafax-hfaxd.service
+```
+```bash
+[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
+```
+```bash
+nano /etc/systemd/system/hylafax-faxgetty@.service
+```
+```bash
+[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
+```
+```bash
+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
+```
+```bash
+/usr/local/sbin/faxstat -s
+```
+
+
+
+
+
+
+
+
1. Install build and hyla deps :
diff --git a/examples/outputs/hylafaxconfig.md b/examples/outputs/hylafaxconfig.md
new file mode 100644
index 0000000..ba2dcba
--- /dev/null
+++ b/examples/outputs/hylafaxconfig.md
@@ -0,0 +1,577 @@
+```bash
+root@fax /u/l/s/hylafax-7.0.10# ./configure
+
+Configuring HylaFAX (tm) (aka FlexFAX) 7.0.10.
+
+If configure does the wrong thing, check the file config.log for
+information that may help you understand what went wrong.
+
+Reading site-wide parameters from ./config.site.
+Gosh, aren't you lucky to have a x86_64-unknown-linux-gnu system!
+Using /usr/bin/gcc for a C compiler (set CC to override).
+Looks like /usr/bin/gcc supports the -g option.
+Using " -g" for C compiler options.
+Looks like /usr/bin/gcc has an ANSI C preprocessor.
+... but __ANSI_CPP__ is not automatically defined, will compensate.
+Looks like /usr/bin/gcc supports the -M option for generating make dependencies.
+Using /usr/bin/g++ for a C++ compiler (set CXX to override).
+Looks like /usr/bin/g++ supports the -g option.
+Using " -g" for C++ compiler options.
+Looks like /usr/bin/g++ has an ANSI C preprocessor.
+... but __ANSI_CPP__ is not automatically defined, will compensate.
+Using /usr/bin/make to configure the software.
+Using "include file" syntax for Makefiles.
+Looks like make supports "sinclude" for conditional includes.
+Using /usr/bin/bash to process command scripts.
+Checking for regular expression library support
+... found. Using system regular expression support.
+Checking for PAM (Pluggable Authentication Module) support
+... found. Enabling PAM support
+Checking for OpenSSL library support
+... found. Enabling OpenSSL library support
+Checking for version-flexible OpenSSL library support
+... found. Enabling version-flexible OpenSSL library support.
+Checking for JBIG library support
+... found. Enabling JBIG support
+Checking for JPEG library support
+... found. Enabling JPEG library support
+Checking for Little CMS library support
+... not found. Disabling Little CMS support
+Checking for LDAP (Lightweight Directory Access Protocol) support
+... not found. Disabling LDAP support
+Checking for PODOFO library support
+... not found. Disabling PODOFO support
+Looks like -lcrypt is needed for crypt.
+Looks like -lutil is needed for wtmp file logging.
+Looks like -lm is the library for math functions.
+
+Creating port.h with necessary definitions.
+... using call-by-reference for TIOCMBIS ioctl
+... constrain client IDs to be <= 60002
+... configure use of <stdint.h>
+... configure use of <sys/select.h>
+... use (sig_t) for sigaction handler type
+... use (sig_t) for signal handler type
+... configure use of mmap for memory-mapped files
+... configure use of sysconf
+... configure use of ulimit
+... configure use of getdtablesize
+... add #define for howmany
+... add function prototype for sigvec
+... configure use of fchown
+... configure use of fchmod
+... configure use of struct tm timezone information
+... configure use of <locale.h> (internationalization support)
+... configure use of <langinfo.h> (internationalization support)
+... configure use of <paths.h>
+... configure use of logwtmp (BSD-style wtmp logging)
+... configure use of logout (BSD-style utmp support)
+... configure use of <utmp.h> (normal utmp interface)
+... configure use of extended exit status in utmp
+... configure use of POSIX realtime process control interface
+... configure use of <crypt.h>
+... checking TIFF library version
+ Found tiffio.h version 20201219
+ Found libtiff version 4.2
+... add declaration for tiff_runlen_t and tiff_offset_t
+... checking PAM library version
+Done creating port.h.
+
+Checking system libraries for functionality to emulate.
+Done checking system libraries.
+
+Checking ZLIB support.
+Using pre-built ZLIB library -lz
+Done checking ZLIB support.
+
+Checking TIFF support.
+Using TIFF binary files from /usr/bin
+Checking JBIG-in-TIFF conversion support.
+JBIG-in-TIFF conversion support found.
+Done checking TIFF support.
+
+Checking for Dynamic Shared Object (DSO) support.
+Looks like your system supports LINUX-style DSOs.
+
+Selecting programs used during installation and operation.
+Looks like /usr/bin/mawk should be used in command scripts.
+WARNING, could not locate sendmail on your system.
+
+Beware that the mail notification work done by this software uses
+sendmail-specific command line options. If you do not have a
+sendmail-compatible mailer things will break.
+Using /usr/lib/sendmail to deliver mail.
+Looks like /usr/bin/mkfifo creates FIFO special files.
+Looks like /usr/bin/mv supports the -f option to force a move.
+Looks like /usr/bin/ln supports the -s option to create a symbolic link.
+Looks like a SysV-style init is used, enabling installation of startup code.
+Looks like SysV init scripts go in /etc/init.d.
+Done selecting programs.
+
+Selecting default HylaFAX configuration parameters.
+
+Using uid uucp and gid uucp for controlling access to fax stuff.
+Using uid bin and gid bin for installing programs.
+Using MSB2LSB bit order for your x86_64 cpu.
+Looks like you need SysV getty support.
+Looks like /sbin/agetty is the program to exec for a data call.
+WARNING, no vgetty program found to handle a voice call, using /bin/vgetty.
+WARNING, no egetty program found, using /bin/egetty.
+Looks like you use ascii-style UUCP lock files.
+Looks like UUCP lock files go in /var/lock.
+Looks like the gs imager package should be used.
+Looks like /usr/bin/gs is the PostScript RIP to use.
+Setting the Fontmap path to /usr/share/ghostscript/9.53.3/Resource/Init:/usr/share/ghostscript/9.53.3/lib:/usr/share/ghostscript/9.53.3/Resource/Font:/usr/share/ghostscript/fonts:/var/lib/ghostscript/fonts:/usr/share/cups/fonts:/usr/share/ghostscript/fonts:/usr/local/lib/ghostscript/fonts:/usr/share/fonts
+Looks like font metric information goes in /usr/share/ghostscript/9.53.3/Resource/Init:/usr/share/ghostscript/9.53.3/lib:/usr/share/ghostscript/9.53.3/Resource/Font:/usr/share/ghostscript/fonts:/var/lib/ghostscript/fonts:/usr/share/cups/fonts:/usr/share/ghostscript/fonts:/usr/local/lib/ghostscript/fonts:/usr/share/fonts.
+Looks like manual pages go in /usr/share/man.
+Looks like manual pages should be installed with bsd-source-cat.
+Press Return to Continue
+
+
+HylaFAX configuration parameters (part 1 of 2) are:
+
+[ 1] Directory for applications: /usr/local/bin
+[ 2] Directory for lib data files: /usr/local/lib/fax
+[ 3] Directory for lib executables: /usr/local/sbin
+[ 4] Directory for system apps: /usr/local/sbin
+[ 5] Directory for manual pages: /usr/share/man
+[ 6] Directory for spooling: /var/spool/hylafax
+[ 7] Directory for uucp lock files: /var/lock
+[ 8] Uucp lock file scheme: ascii
+[ 9] PostScript imager package: gs
+[10] PostScript imager program: /usr/bin/gs
+[11] Manual page installation scheme: bsd-source-cat
+[12] Default page size: North American Letter
+[13] Default vertical res (lpi): 98
+
+Are these ok [yes]? 12
+Default page size [North American Letter]? A4
+
+HylaFAX configuration parameters (part 1 of 2) are:
+
+[ 1] Directory for applications: /usr/local/bin
+[ 2] Directory for lib data files: /usr/local/lib/fax
+[ 3] Directory for lib executables: /usr/local/sbin
+[ 4] Directory for system apps: /usr/local/sbin
+[ 5] Directory for manual pages: /usr/share/man
+[ 6] Directory for spooling: /var/spool/hylafax
+[ 7] Directory for uucp lock files: /var/lock
+[ 8] Uucp lock file scheme: ascii
+[ 9] PostScript imager package: gs
+[10] PostScript imager program: /usr/bin/gs
+[11] Manual page installation scheme: bsd-source-cat
+[12] Default page size: ISO A4
+[13] Default vertical res (lpi): 98
+
+Are these ok [yes]?
+
+HylaFAX configuration parameters (part 2 of 2) are:
+
+[14] Location of getty program: /sbin/agetty
+[15] Location of voice getty program: /bin/vgetty
+[16] Location of sendmail program: /usr/lib/sendmail
+[17] Location of TIFF tools: /usr/bin
+[18] Location of SysV init scripts: /etc/init.d
+[19] Location of SysV start scripts: ../rc2.d ../rc3.d ../rc4.d ../rc5.d
+[20] Location of SysV stop scripts: ../rc0.d ../rc1.d ../rc6.d
+[21] Name of SysV start script: S97hylafax
+[22] Name of SysV stop script: K05hylafax
+[23] Init script starts faxq: yes
+[24] Init script starts hfaxd yes
+[25] Start paging protocol: no
+
+WARNING, /usr/lib/sendmail does not seem to be an executable program;
+ you may need to correct this before starting up the fax server.
+ls: cannot access '/usr/lib/sendmail': No such file or directory
+
+Are these ok [yes]? ^C⏎ root@fax /u/l/s/hylafax-7.0.10 [1]# apt install -y sendmail
+Reading package lists... Done
+Building dependency tree... Done
+Reading state information... Done
+The following additional packages will be installed:
+ liblockfile1 lockfile-progs procmail sendmail-base sendmail-bin sendmail-cf sensible-mda
+Suggested packages:
+ sendmail-doc rmail logcheck resolvconf sasl2-bin
+The following NEW packages will be installed:
+ liblockfile1 lockfile-progs procmail sendmail sendmail-base sendmail-bin sendmail-cf sensible-mda
+0 upgraded, 8 newly installed, 0 to remove and 0 not upgraded.
+Need to get 1,963 kB of archives.
+After this operation, 4,466 kB of additional disk space will be used.
+Get:1 http://deb.debian.org/debian bullseye/main amd64 liblockfile1 amd64 1.17-1+b1 [17.0 kB]
+Get:2 http://deb.debian.org/debian bullseye/main amd64 lockfile-progs amd64 0.1.18 [10.4 kB]
+Get:3 http://deb.debian.org/debian bullseye/main amd64 sendmail-base all 8.15.2-22+deb11u3 [345 kB]
+Get:4 http://deb.debian.org/debian bullseye/main amd64 sendmail-cf all 8.15.2-22+deb11u3 [293 kB]
+Get:5 http://deb.debian.org/debian bullseye/main amd64 sendmail-bin amd64 8.15.2-22+deb11u3 [700 kB]
+Get:6 http://deb.debian.org/debian bullseye/main amd64 procmail amd64 3.22-26+deb11u1 [144 kB]
+Get:7 http://deb.debian.org/debian bullseye/main amd64 sensible-mda amd64 8.15.2-22+deb11u3 [227 kB]
+Get:8 http://deb.debian.org/debian bullseye/main amd64 sendmail all 8.15.2-22+deb11u3 [225 kB]
+Fetched 1,963 kB in 1s (3,166 kB/s)
+Selecting previously unselected package liblockfile1:amd64.
+(Reading database ... 47906 files and directories currently installed.)
+Preparing to unpack .../0-liblockfile1_1.17-1+b1_amd64.deb ...
+Unpacking liblockfile1:amd64 (1.17-1+b1) ...
+Selecting previously unselected package lockfile-progs.
+Preparing to unpack .../1-lockfile-progs_0.1.18_amd64.deb ...
+Unpacking lockfile-progs (0.1.18) ...
+Selecting previously unselected package sendmail-base.
+Preparing to unpack .../2-sendmail-base_8.15.2-22+deb11u3_all.deb ...
+Unpacking sendmail-base (8.15.2-22+deb11u3) ...
+Selecting previously unselected package sendmail-cf.
+Preparing to unpack .../3-sendmail-cf_8.15.2-22+deb11u3_all.deb ...
+Unpacking sendmail-cf (8.15.2-22+deb11u3) ...
+Selecting previously unselected package sendmail-bin.
+Preparing to unpack .../4-sendmail-bin_8.15.2-22+deb11u3_amd64.deb ...
+Unpacking sendmail-bin (8.15.2-22+deb11u3) ...
+Selecting previously unselected package procmail.
+Preparing to unpack .../5-procmail_3.22-26+deb11u1_amd64.deb ...
+Unpacking procmail (3.22-26+deb11u1) ...
+Selecting previously unselected package sensible-mda.
+Preparing to unpack .../6-sensible-mda_8.15.2-22+deb11u3_amd64.deb ...
+Unpacking sensible-mda (8.15.2-22+deb11u3) ...
+Selecting previously unselected package sendmail.
+Preparing to unpack .../7-sendmail_8.15.2-22+deb11u3_all.deb ...
+Unpacking sendmail (8.15.2-22+deb11u3) ...
+Setting up sendmail-cf (8.15.2-22+deb11u3) ...
+Setting up procmail (3.22-26+deb11u1) ...
+Setting up liblockfile1:amd64 (1.17-1+b1) ...
+Setting up lockfile-progs (0.1.18) ...
+Setting up sendmail-base (8.15.2-22+deb11u3) ...
+adduser: Warning: The home directory `/var/lib/sendmail' does not belong to the user you are currently creating.
+Setting up sendmail-bin (8.15.2-22+deb11u3) ...
+update-alternatives: using /usr/libexec/sendmail/sendmail to provide /usr/sbin/sendmail-mta (sendmail-mta) in auto mode
+update-alternatives: using /usr/libexec/sendmail/sendmail to provide /usr/sbin/sendmail-msp (sendmail-msp) in auto mode
+
+You are doing a new install, or have erased /etc/mail/sendmail.mc.
+If you've accidentaly erased /etc/mail/sendmail.mc, check /var/backups.
+
+I am creating a safe, default sendmail.mc for you and you can
+run sendmailconfig later if you need to change the defaults.
+
+Updating sendmail environment ...
+Validating configuration.
+Writing configuration to /etc/mail/sendmail.conf.
+Writing /etc/cron.d/sendmail.
+Could not open /etc/mail/databases(No such file or directory), creating it.
+Could not open /etc/mail/sendmail.mc(No such file or directory)
+Reading configuration from /etc/mail/sendmail.conf.
+Validating configuration.
+Writing configuration to /etc/mail/sendmail.conf.
+Writing /etc/cron.d/sendmail.
+Turning off Host Status collection
+Could not open /etc/mail/databases(No such file or directory), creating it.
+Reading configuration from /etc/mail/sendmail.conf.
+Validating configuration.
+Creating /etc/mail/databases...
+
+Checking filesystem, this may take some time - it will not hang!
+ ... Done.
+
+Checking for installed MDAs...
+Adding link for newly extant program (mail.local)
+Adding link for newly extant program (procmail)
+sasl2-bin not installed, not configuring sendmail support.
+
+To enable sendmail SASL2 support at a later date, invoke "/usr/share/sendmail/update_auth"
+
+
+Creating/Updating SSL(for TLS) information
+Creating /etc/mail/tls/starttls.m4...
+Creating SSL certificates for sendmail.
+Generating DSA parameters, 2048 bit long prime
+This could take some time
+...+...............+..+...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*
+..............+...................+....+..................+......+..+................+......+.+......................+...................+..+...+......+...........+.+..............+.......+..........+............+....+..+.+.+..+.+..+..+.......+...+........+..................+.+................+.....+.......+...+.....
+.+................+...+...+..+...+........+......+.+......+.+................+..+....+.+.....+..........................+.......+.............+...+...+....................+...+......+.......................+..................+...+.+.....+...+.........+.+.............+............+.+.......................+...+.......
+.......+...........+..............+...............+........+..................+....+................+.+...........+......+...........+.....................+.................+.+..........+.........+.................+..+..............+........+.......+.....+.......+......+...+..............+......+.+......+........+...
+..........+.........................+.+..+...+.....+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*
+Generating RSA private key, 2048 bit long modulus (2 primes)
+.......+++++
+...............................+++++
+e is 65537 (0x010001)
+
+*** *** *** WARNING *** WARNING *** WARNING *** WARNING *** *** ***
+
+Everything you need to support STARTTLS (encrypted mail transmission
+and user authentication via certificates) is installed and configured
+but is *NOT* being used.
+
+To enable sendmail to use STARTTLS, you need to:
+1) Add this line to /etc/mail/sendmail.mc and optionally
+ to /etc/mail/submit.mc:
+ include(`/etc/mail/tls/starttls.m4')dnl
+2) Run sendmailconfig
+3) Restart sendmail
+
+
+Updating /etc/hosts.allow, adding "sendmail: all".
+
+Please edit /etc/hosts.allow and check the rules location to
+make sure your security measures have not been overridden -
+it is common to move the sendmail:all line to the *end* of
+the file, so your more selective rules take precedence.
+Checking {sendmail,submit}.mc and related databases...
+Reading configuration from /etc/mail/sendmail.conf.
+Validating configuration.
+Creating /etc/mail/databases...
+Reading configuration from /etc/mail/sendmail.conf.
+Validating configuration.
+Creating /etc/mail/databases...
+Reading configuration from /etc/mail/sendmail.conf.
+Validating configuration.
+Creating /etc/mail/Makefile...
+Reading configuration from /etc/mail/sendmail.conf.
+Validating configuration.
+Writing configuration to /etc/mail/sendmail.conf.
+Writing /etc/cron.d/sendmail.
+Disabling HOST statistics file(/var/lib/sendmail/host_status).
+Creating /etc/mail/sendmail.cf...
+Creating /etc/mail/submit.cf...
+Informational: confCR_FILE file empty: /etc/mail/relay-domains
+Warning: confCT_FILE source file not found: /etc/mail/trusted-users
+ it was created
+Informational: confCT_FILE file empty: /etc/mail/trusted-users
+Warning: confCW_FILE source file not found: /etc/mail/local-host-names
+ it was created
+Warning: access_db source file not found: /etc/mail/access
+ it was created
+Updating /etc/mail/access...
+Linking /etc/aliases to /etc/mail/aliases
+Informational: ALIAS_FILE file empty: /etc/mail/aliases
+Updating /etc/mail/aliases...
+/etc/mail/aliases: 0 aliases, longest 0 bytes, 0 bytes total
+
+Warning: 3 database(s) sources
+ were not found, (but were created)
+ please investigate.
+Setting up sensible-mda (8.15.2-22+deb11u3) ...
+Setting up sendmail (8.15.2-22+deb11u3) ...
+Processing triggers for libc-bin (2.31-13+deb11u11) ...
+Processing triggers for man-db (2.9.4-2) ...
+root@fax /u/l/s/hylafax-7.0.10# ./configure
+
+Configuring HylaFAX (tm) (aka FlexFAX) 7.0.10.
+
+If configure does the wrong thing, check the file config.log for
+information that may help you understand what went wrong.
+
+Reading site-wide parameters from ./config.site.
+Do they really still make x86_64-unknown-linux-gnu systems?!
+Using /usr/bin/gcc for a C compiler (set CC to override).
+Looks like /usr/bin/gcc supports the -g option.
+Using " -g" for C compiler options.
+Looks like /usr/bin/gcc has an ANSI C preprocessor.
+... but __ANSI_CPP__ is not automatically defined, will compensate.
+Looks like /usr/bin/gcc supports the -M option for generating make dependencies.
+Using /usr/bin/g++ for a C++ compiler (set CXX to override).
+Looks like /usr/bin/g++ supports the -g option.
+Using " -g" for C++ compiler options.
+Looks like /usr/bin/g++ has an ANSI C preprocessor.
+... but __ANSI_CPP__ is not automatically defined, will compensate.
+Using /usr/bin/make to configure the software.
+Using "include file" syntax for Makefiles.
+Looks like make supports "sinclude" for conditional includes.
+Using /usr/bin/bash to process command scripts.
+Checking for regular expression library support
+... found. Using system regular expression support.
+Checking for PAM (Pluggable Authentication Module) support
+... found. Enabling PAM support
+Checking for OpenSSL library support
+... found. Enabling OpenSSL library support
+Checking for version-flexible OpenSSL library support
+... found. Enabling version-flexible OpenSSL library support.
+Checking for JBIG library support
+... found. Enabling JBIG support
+Checking for JPEG library support
+... found. Enabling JPEG library support
+Checking for Little CMS library support
+... not found. Disabling Little CMS support
+Checking for LDAP (Lightweight Directory Access Protocol) support
+... not found. Disabling LDAP support
+Checking for PODOFO library support
+... not found. Disabling PODOFO support
+Looks like -lcrypt is needed for crypt.
+Looks like -lutil is needed for wtmp file logging.
+Looks like -lm is the library for math functions.
+
+Using previously created port.h.
+
+Checking system libraries for functionality to emulate.
+Done checking system libraries.
+
+Checking ZLIB support.
+Using pre-built ZLIB library -lz
+Done checking ZLIB support.
+
+Checking TIFF support.
+Using TIFF binary files from /usr/bin
+Checking JBIG-in-TIFF conversion support.
+JBIG-in-TIFF conversion support found.
+Done checking TIFF support.
+
+Checking for Dynamic Shared Object (DSO) support.
+Looks like your system supports LINUX-style DSOs.
+
+Selecting programs used during installation and operation.
+Looks like /usr/bin/mawk should be used in command scripts.
+Looks like /sbin/sendmail should be used to deliver mail.
+Looks like /usr/bin/mkfifo creates FIFO special files.
+Looks like /usr/bin/mv supports the -f option to force a move.
+Looks like /usr/bin/ln supports the -s option to create a symbolic link.
+Looks like a SysV-style init is used, enabling installation of startup code.
+Looks like SysV init scripts go in /etc/init.d.
+Done selecting programs.
+
+Selecting default HylaFAX configuration parameters.
+
+Using uid uucp and gid uucp for controlling access to fax stuff.
+Using uid bin and gid bin for installing programs.
+Using MSB2LSB bit order for your x86_64 cpu.
+Looks like you need SysV getty support.
+Looks like /sbin/agetty is the program to exec for a data call.
+WARNING, no vgetty program found to handle a voice call, using /bin/vgetty.
+WARNING, no egetty program found, using /bin/egetty.
+Looks like you use ascii-style UUCP lock files.
+Looks like UUCP lock files go in /var/lock.
+Looks like the gs imager package should be used.
+Looks like /usr/bin/gs is the PostScript RIP to use.
+Setting the Fontmap path to /usr/share/ghostscript/9.53.3/Resource/Init:/usr/share/ghostscript/9.53.3/lib:/usr/share/ghostscript/9.53.3/Resource/Font:/usr/share/ghostscript/fonts:/var/lib/ghostscript/fonts:/usr/share/cups/fonts:/usr/share/ghostscript/fonts:/usr/local/lib/ghostscript/fonts:/usr/share/fonts
+Looks like font metric information goes in /usr/share/ghostscript/9.53.3/Resource/Init:/usr/share/ghostscript/9.53.3/lib:/usr/share/ghostscript/9.53.3/Resource/Font:/usr/share/ghostscript/fonts:/var/lib/ghostscript/fonts:/usr/share/cups/fonts:/usr/share/ghostscript/fonts:/usr/local/lib/ghostscript/fonts:/usr/share/fonts.
+Looks like manual pages go in /usr/share/man.
+Looks like manual pages should be installed with bsd-source-cat.
+Press Return to Continue
+
+
+HylaFAX configuration parameters (part 1 of 2) are:
+
+[ 1] Directory for applications: /usr/local/bin
+[ 2] Directory for lib data files: /usr/local/lib/fax
+[ 3] Directory for lib executables: /usr/local/sbin
+[ 4] Directory for system apps: /usr/local/sbin
+[ 5] Directory for manual pages: /usr/share/man
+[ 6] Directory for spooling: /var/spool/hylafax
+[ 7] Directory for uucp lock files: /var/lock
+[ 8] Uucp lock file scheme: ascii
+[ 9] PostScript imager package: gs
+[10] PostScript imager program: /usr/bin/gs
+[11] Manual page installation scheme: bsd-source-cat
+[12] Default page size: North American Letter
+[13] Default vertical res (lpi): 98
+
+Are these ok [yes]? 12
+Default page size [North American Letter]? A4
+
+HylaFAX configuration parameters (part 1 of 2) are:
+
+[ 1] Directory for applications: /usr/local/bin
+[ 2] Directory for lib data files: /usr/local/lib/fax
+[ 3] Directory for lib executables: /usr/local/sbin
+[ 4] Directory for system apps: /usr/local/sbin
+[ 5] Directory for manual pages: /usr/share/man
+[ 6] Directory for spooling: /var/spool/hylafax
+[ 7] Directory for uucp lock files: /var/lock
+[ 8] Uucp lock file scheme: ascii
+[ 9] PostScript imager package: gs
+[10] PostScript imager program: /usr/bin/gs
+[11] Manual page installation scheme: bsd-source-cat
+[12] Default page size: ISO A4
+[13] Default vertical res (lpi): 98
+
+Are these ok [yes]?
+
+HylaFAX configuration parameters (part 2 of 2) are:
+
+[14] Location of getty program: /sbin/agetty
+[15] Location of voice getty program: /bin/vgetty
+[16] Location of sendmail program: /sbin/sendmail
+[17] Location of TIFF tools: /usr/bin
+[18] Location of SysV init scripts: /etc/init.d
+[19] Location of SysV start scripts: ../rc2.d ../rc3.d ../rc4.d ../rc5.d
+[20] Location of SysV stop scripts: ../rc0.d ../rc1.d ../rc6.d
+[21] Name of SysV start script: S97hylafax
+[22] Name of SysV stop script: K05hylafax
+[23] Init script starts faxq: yes
+[24] Init script starts hfaxd yes
+[25] Start paging protocol: no
+Are these ok [yes]?
+
+Creating defs from ./defs.in
+Creating config.h from ./config.h.in
+Creating rules from ./rules.in
+Creating Makefile from ./Makefile.in
+Creating config/Makefile from ./config/Makefile.in
+Creating etc/Makefile from ./etc/Makefile.in
+Creating faxalter/Makefile from ./faxalter/Makefile.in
+Creating faxcover/Makefile from ./faxcover/Makefile.in
+Creating faxd/Makefile from ./faxd/Makefile.in
+Creating faxmail/Makefile from ./faxmail/Makefile.in
+Creating faxrm/Makefile from ./faxrm/Makefile.in
+Creating faxstat/Makefile from ./faxstat/Makefile.in
+Creating hfaxd/Makefile from ./hfaxd/Makefile.in
+Creating man/Makefile from ./man/Makefile.in
+Creating sendfax/Makefile from ./sendfax/Makefile.in
+Creating sendpage/Makefile from ./sendpage/Makefile.in
+Creating util/Makefile from ./util/Makefile.in
+Creating faxcover/edit-faxcover.sh from ./faxcover/edit-faxcover.sh.in
+Creating faxmail/application-pdf.sh from ./faxmail/application-pdf.sh.in
+Creating faxmail/application-octet-stream.sh from ./faxmail/application-octet-stream.sh.in
+Creating faxmail/application-binary.sh from ./faxmail/application-binary.sh.in
+Creating faxmail/image-tiff.sh from ./faxmail/image-tiff.sh.in
+Creating port/Makefile from ./port/Makefile.in
+Creating port/install.sh from ./port/install.sh.in
+Creating port/version.c from ./port/version.c.in
+Creating etc/faxsetup.sh from ./etc/faxsetup.sh.in
+Creating etc/faxsetup.linux from ./etc/faxsetup.linux.in
+Creating etc/faxaddmodem.sh from ./etc/faxaddmodem.sh.in
+Creating etc/probemodem.sh from ./etc/probemodem.sh.in
+Creating etc/hylafax from ./etc/hylafax.in
+Creating util/xferfaxstats.sh from ./util/xferfaxstats.sh.in
+Creating util/recvstats.sh from ./util/recvstats.sh.in
+Creating util/faxcron.sh from ./util/faxcron.sh.in
+Creating util/pagesizes from ./util/pagesizes.in
+Creating util/archive.sh from ./util/archive.sh.in
+Creating util/dictionary.sh from ./util/dictionary.sh.in
+Creating util/common-functions.sh from ./util/common-functions.sh.in
+Creating util/faxrcvd.sh from ./util/faxrcvd.sh.in
+Creating util/mkcover.sh from ./util/mkcover.sh.in
+Creating util/notify.sh from ./util/notify.sh.in
+Creating util/pcl2fax.sh from ./util/pcl2fax.sh.in
+Creating util/pollrcvd.sh from ./util/pollrcvd.sh.in
+Creating util/ps2fax.dps.sh from ./util/ps2fax.dps.sh.in
+Creating util/ps2fax.gs.sh from ./util/ps2fax.gs.sh.in
+Creating util/pdf2fax.gs.sh from ./util/pdf2fax.gs.sh.in
+Creating util/ps2fax.imp.sh from ./util/ps2fax.imp.sh.in
+Creating util/tiff2fax.sh from ./util/tiff2fax.sh.in
+Creating util/wedged.sh from ./util/wedged.sh.in
+Creating util/tiff2pdf.sh from ./util/tiff2pdf.sh.in
+Creating util/qp-encode.awk from ./util/qp-encode.awk.in
+Creating util/rfc2047-encode.awk from ./util/rfc2047-encode.awk.in
+Creating util/dict-de from ./util/dict-de.in
+Creating util/dict-en from ./util/dict-en.in
+Creating util/dict-es from ./util/dict-es.in
+Creating util/dict-he from ./util/dict-he.in
+Creating util/dict-it from ./util/dict-it.in
+Creating util/dict-fr from ./util/dict-fr.in
+Creating util/dict-nl_BE from ./util/dict-nl_BE.in
+Creating util/dict-pl from ./util/dict-pl.in
+Creating util/dict-pt from ./util/dict-pt.in
+Creating util/dict-pt_BR from ./util/dict-pt_BR.in
+Creating util/dict-ro from ./util/dict-ro.in
+Creating util/dict-ru from ./util/dict-ru.in
+Creating util/dict-sr from ./util/dict-sr.in
+Creating util/dict-tr from ./util/dict-tr.in
+Creating util/dict-uk from ./util/dict-uk.in
+Creating util/dict-zh from ./util/dict-zh.in
+Creating pkg/Makefile from ./pkg/Makefile.in
+Creating pkg/cpkginfo from ./pkg/cpkginfo.in
+Creating pkg/cproto.stub from ./pkg/cproto.stub.in
+Creating pkg/crequest from ./pkg/crequest.in
+Creating pkg/make_proto.sh from ./pkg/make_proto.sh.in
+Creating pkg/postinstall from ./pkg/postinstall.in
+Creating pkg/postremove from ./pkg/postremove.in
+Creating pkg/spkginfo from ./pkg/spkginfo.in
+Creating pkg/sproto.stub from ./pkg/sproto.stub.in
+Creating pkg/srequest from ./pkg/srequest.in
+Creating port/mkdepend from ./port/mkdepend.in
+Done.
+root@fax /u/l/s/hylafax-7.0.10#
+``` \ No newline at end of file