I tried to re-install like this
Code: Select all
[root@ipfire ~]# wget https://github.com/timfprogs/ipfstatusmail/raw/master/install-statusmail.sh
--2018-11-08 08:37:35-- https://github.com/timfprogs/ipfstatusmail/raw/master/install-statusmail.sh
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/install-statusmail.sh [following]
--2018-11-08 08:37:35-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/install-statusmail.sh
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1365 (1.3K) [text/plain]
Saving to: 'install-statusmail.sh.1'
install-statusmail.sh 100%[========================================================================================>] 1.33K --.-KB/s in 0s
2018-11-08 08:37:35 (143 MB/s) - 'install-statusmail.sh.1' saved [1365/1365]
[root@ipfire ~]# chmod +x install-statusmail.sh
[root@ipfire ~]# cat install-statusmail.sh
#! /bin/bash
# Locations of files
settingsdir="/var/ipfire/statusmail"
temp_dir="$TMP"
# Branch to use from repository
branch=master
phase2="no"
if [[ ! -d $settingsdir ]]; then mkdir -p $settingsdir; fi
while getopts ":2hHb:" opt; do
case $opt in
2) phase2="yes";;
b) branch=$OPTARG;;
:) echo "No argument supplied for option-$OPTARG"; exit 1;;
*) echo "Usage: $0 [-2]"; exit 1;;
esac
done
if [[ $phase2 == "no" ]]; then
# Download the manifest
wget "https://github.com/timfprogs/ipfstatusmail/raw/$branch/MANIFEST"
if [[ $? -gt 0 ]]; then echo "Branch $branch not found"; exit 1; fi
# Download and move files to their destinations
echo Downloading files
if [[ ! -r MANIFEST ]]; then
echo "Can't find MANIFEST file"
exit 1
fi
while read -r name path owner mode || [[ -n "$name" ]]; do
echo --
if [[ ! -d $path ]]; then
echo "Create $name";
mkdir -p $path;
fi
if [[ $name != "." ]]; then
echo "Download $name";
wget "https://github.com/timfprogs/ipfstatusmail/raw/$branch/$name" -O $path/$name;
fi
echo chown $owner $path/$name
echo chmod $mode $path/$name
done < "MANIFEST"
# Tidy up
rm MANIFEST
# Run the second phase of the new install file
exec $0 -2 -b $branch
echo Failed to exec $0
fi
echo
# Update language cache
update-lang-cache
[root@ipfire ~]# ./install-statusmail.sh.1
--2018-11-08 08:38:17-- https://github.com/timfprogs/ipfstatusmail/raw/master/MANIFEST
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/MANIFEST [following]
--2018-11-08 08:38:17-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/MANIFEST
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1492 (1.5K) [text/plain]
Saving to: 'MANIFEST'
MANIFEST 100%[========================================================================================>] 1.46K --.-KB/s in 0s
2018-11-08 08:38:17 (159 MB/s) - 'MANIFEST' saved [1492/1492]
Downloading files
--
chown nobody.nobody /var/ipfire/statusmail/.
chmod 0755 /var/ipfire/statusmail/.
--
chown nobody.nobody /var/ipfire/statusmail/plugins/.
chmod 0755 /var/ipfire/statusmail/plugins/.
--
chown nobody.nobody /var/ipfire/statusmail/keys/.
chmod 0700 /var/ipfire/statusmail/keys/.
--
Download install-statusmail.sh
--2018-11-08 08:38:17-- https://github.com/timfprogs/ipfstatusmail/raw/master/install-statusmail.sh
Resolving github.com... 140.82.118.3, 140.82.118.4
Connecting to github.com|140.82.118.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/install-statusmail.sh [following]
--2018-11-08 08:38:17-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/install-statusmail.sh
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1365 (1.3K) [text/plain]
Saving to: './install-statusmail.sh'
./install-statusmail.sh 100%[========================================================================================>] 1.33K --.-KB/s in 0s
2018-11-08 08:38:17 (141 MB/s) - './install-statusmail.sh' saved [1365/1365]
chown root.root ./install-statusmail.sh
chmod 0755 ./install-statusmail.sh
--
Download statusmail.en.pl
--2018-11-08 08:38:17-- https://github.com/timfprogs/ipfstatusmail/raw/master/statusmail.en.pl
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/statusmail.en.pl [following]
--2018-11-08 08:38:18-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/statusmail.en.pl
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 3712 (3.6K) [text/plain]
Saving to: '/var/ipfire/addon-lang/statusmail.en.pl'
/var/ipfire/addon-lang/statusmail.en.pl 100%[========================================================================================>] 3.62K --.-KB/s in 0s
2018-11-08 08:38:18 (54.1 MB/s) - '/var/ipfire/addon-lang/statusmail.en.pl' saved [3712/3712]
chown root.root /var/ipfire/addon-lang/statusmail.en.pl
chmod 0004 /var/ipfire/addon-lang/statusmail.en.pl
--
Download statusmail.cgi
--2018-11-08 08:38:18-- https://github.com/timfprogs/ipfstatusmail/raw/master/statusmail.cgi
Resolving github.com... 140.82.118.3, 140.82.118.4
Connecting to github.com|140.82.118.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/statusmail.cgi [following]
--2018-11-08 08:38:18-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/statusmail.cgi
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 42231 (41K) [text/plain]
Saving to: '/srv/web/ipfire/cgi-bin/statusmail.cgi'
/srv/web/ipfire/cgi-bin/statusmail.cgi 100%[========================================================================================>] 41.24K --.-KB/s in 0.002s
2018-11-08 08:38:18 (22.5 MB/s) - '/srv/web/ipfire/cgi-bin/statusmail.cgi' saved [42231/42231]
chown root.root /srv/web/ipfire/cgi-bin/statusmail.cgi
chmod 0755 /srv/web/ipfire/cgi-bin/statusmail.cgi
--
Download statusmail.pl
--2018-11-08 08:38:18-- https://github.com/timfprogs/ipfstatusmail/raw/master/statusmail.pl
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/statusmail.pl [following]
--2018-11-08 08:38:19-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/statusmail.pl
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 12149 (12K) [text/plain]
Saving to: '/usr/local/bin/statusmail.pl'
/usr/local/bin/statusmail.pl 100%[========================================================================================>] 11.86K --.-KB/s in 0s
2018-11-08 08:38:19 (68.3 MB/s) - '/usr/local/bin/statusmail.pl' saved [12149/12149]
chown root.root /usr/local/bin/statusmail.pl
chmod 0755 /usr/local/bin/statusmail.pl
--
Download statusmail.sh
--2018-11-08 08:38:19-- https://github.com/timfprogs/ipfstatusmail/raw/master/statusmail.sh
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/statusmail.sh [following]
--2018-11-08 08:38:19-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/statusmail.sh
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 57 [text/plain]
Saving to: '/etc/fcron.hourly/statusmail.sh'
/etc/fcron.hourly/statusmail.sh 100%[========================================================================================>] 57 --.-KB/s in 0s
2018-11-08 08:38:19 (6.81 MB/s) - '/etc/fcron.hourly/statusmail.sh' saved [57/57]
chown root.root /etc/fcron.hourly/statusmail.sh
chmod 0755 /etc/fcron.hourly/statusmail.sh
--
Download EX-statusmail.menu
--2018-11-08 08:38:19-- https://github.com/timfprogs/ipfstatusmail/raw/master/EX-statusmail.menu
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/EX-statusmail.menu [following]
--2018-11-08 08:38:20-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/EX-statusmail.menu
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 327 [text/plain]
Saving to: '/var/ipfire/menu.d/EX-statusmail.menu'
/var/ipfire/menu.d/EX-statusmail.menu 100%[========================================================================================>] 327 --.-KB/s in 0s
2018-11-08 08:38:20 (34.6 MB/s) - '/var/ipfire/menu.d/EX-statusmail.menu' saved [327/327]
chown nobody.nobody /var/ipfire/menu.d/EX-statusmail.menu
chmod 0644 /var/ipfire/menu.d/EX-statusmail.menu
--
Download EncryptedMail.pm
--2018-11-08 08:38:20-- https://github.com/timfprogs/ipfstatusmail/raw/master/EncryptedMail.pm
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/EncryptedMail.pm [following]
--2018-11-08 08:38:20-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/EncryptedMail.pm
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 27919 (27K) [text/plain]
Saving to: '/var/ipfire/statusmail/EncryptedMail.pm'
/var/ipfire/statusmail/EncryptedMail.pm 100%[========================================================================================>] 27.26K --.-KB/s in 0.001s
2018-11-08 08:38:20 (24.7 MB/s) - '/var/ipfire/statusmail/EncryptedMail.pm' saved [27919/27919]
chown nobody.nobody /var/ipfire/statusmail/EncryptedMail.pm
chmod 0644 /var/ipfire/statusmail/EncryptedMail.pm
--
Download StatusMail.pm
--2018-11-08 08:38:20-- https://github.com/timfprogs/ipfstatusmail/raw/master/StatusMail.pm
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/StatusMail.pm [following]
--2018-11-08 08:38:20-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/StatusMail.pm
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 6487 (6.3K) [text/plain]
Saving to: '/var/ipfire/statusmail/StatusMail.pm'
/var/ipfire/statusmail/StatusMail.pm 100%[========================================================================================>] 6.33K --.-KB/s in 0s
2018-11-08 08:38:21 (56.9 MB/s) - '/var/ipfire/statusmail/StatusMail.pm' saved [6487/6487]
chown nobody.nobody /var/ipfire/statusmail/StatusMail.pm
chmod 0644 /var/ipfire/statusmail/StatusMail.pm
--
Download stylesheet.css
--2018-11-08 08:38:21-- https://github.com/timfprogs/ipfstatusmail/raw/master/stylesheet.css
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/stylesheet.css [following]
--2018-11-08 08:38:21-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/stylesheet.css
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2133 (2.1K) [text/plain]
Saving to: '/var/ipfire/statusmail/stylesheet.css'
/var/ipfire/statusmail/stylesheet.css 100%[========================================================================================>] 2.08K --.-KB/s in 0s
2018-11-08 08:38:21 (30.8 MB/s) - '/var/ipfire/statusmail/stylesheet.css' saved [2133/2133]
chown nobody.nobody /var/ipfire/statusmail/stylesheet.css
chmod 0644 /var/ipfire/statusmail/stylesheet.css
--
Download generate_signature.sh
--2018-11-08 08:38:21-- https://github.com/timfprogs/ipfstatusmail/raw/master/generate_signature.sh
Resolving github.com... 140.82.118.3, 140.82.118.4
Connecting to github.com|140.82.118.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/generate_signature.sh [following]
--2018-11-08 08:38:21-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/generate_signature.sh
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 713 [text/plain]
Saving to: '/var/ipfire/statusmail/generate_signature.sh'
/var/ipfire/statusmail/generate_signature. 100%[========================================================================================>] 713 --.-KB/s in 0s
2018-11-08 08:38:22 (79.7 MB/s) - '/var/ipfire/statusmail/generate_signature.sh' saved [713/713]
chown nobody.nobody /var/ipfire/statusmail/generate_signature.sh
chmod 0755 /var/ipfire/statusmail/generate_signature.sh
--
Download test_plugin.pl
--2018-11-08 08:38:22-- https://github.com/timfprogs/ipfstatusmail/raw/master/test_plugin.pl
Resolving github.com... 140.82.118.3, 140.82.118.4
Connecting to github.com|140.82.118.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/test_plugin.pl [following]
--2018-11-08 08:38:22-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/test_plugin.pl
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 13079 (13K) [text/plain]
Saving to: '/var/ipfire/statusmail/test_plugin.pl'
/var/ipfire/statusmail/test_plugin.pl 100%[========================================================================================>] 12.77K --.-KB/s in 0s
2018-11-08 08:38:22 (25.0 MB/s) - '/var/ipfire/statusmail/test_plugin.pl' saved [13079/13079]
chown nobody.nobody /var/ipfire/statusmail/test_plugin.pl
chmod 0755 /var/ipfire/statusmail/test_plugin.pl
--
Download play.png
--2018-11-08 08:38:22-- https://github.com/timfprogs/ipfstatusmail/raw/master/play.png
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/play.png [following]
--2018-11-08 08:38:23-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/play.png
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 182 [image/png]
Saving to: '/srv/web/ipfire/html/images/play.png'
/srv/web/ipfire/html/images/play.png 100%[========================================================================================>] 182 --.-KB/s in 0s
2018-11-08 08:38:23 (10.8 MB/s) - '/srv/web/ipfire/html/images/play.png' saved [182/182]
chown root.root /srv/web/ipfire/html/images/play.png
chmod 0644 /srv/web/ipfire/html/images/play.png
--
Download plugins/graphs.pm
--2018-11-08 08:38:23-- https://github.com/timfprogs/ipfstatusmail/raw/master/plugins/graphs.pm
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/graphs.pm [following]
--2018-11-08 08:38:23-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/graphs.pm
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 17877 (17K) [text/plain]
Saving to: '/var/ipfire/statusmail/plugins/graphs.pm'
/var/ipfire/statusmail/plugins/graphs.pm 100%[========================================================================================>] 17.46K --.-KB/s in 0.001s
2018-11-08 08:38:23 (25.1 MB/s) - '/var/ipfire/statusmail/plugins/graphs.pm' saved [17877/17877]
chown nobody.nobody /var/ipfire/statusmail/plugins/graphs.pm
chmod 0644 /var/ipfire/statusmail/plugins/graphs.pm
--
Download plugins/network_firewall.pm
--2018-11-08 08:38:23-- https://github.com/timfprogs/ipfstatusmail/raw/master/plugins/network_firewall.pm
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/network_firewall.pm [following]
--2018-11-08 08:38:23-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/network_firewall.pm
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 13899 (14K) [text/plain]
Saving to: '/var/ipfire/statusmail/plugins/network_firewall.pm'
/var/ipfire/statusmail/plugins/network_fir 100%[========================================================================================>] 13.57K --.-KB/s in 0.001s
2018-11-08 08:38:24 (18.2 MB/s) - '/var/ipfire/statusmail/plugins/network_firewall.pm' saved [13899/13899]
chown nobody.nobody /var/ipfire/statusmail/plugins/network_firewall.pm
chmod 0644 /var/ipfire/statusmail/plugins/network_firewall.pm
--
Download plugins/services_clamav.pm
--2018-11-08 08:38:24-- https://github.com/timfprogs/ipfstatusmail/raw/master/plugins/services_clamav.pm
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/services_clamav.pm [following]
--2018-11-08 08:38:24-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/services_clamav.pm
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 7007 (6.8K) [text/plain]
Saving to: '/var/ipfire/statusmail/plugins/services_clamav.pm'
/var/ipfire/statusmail/plugins/services_cl 100%[========================================================================================>] 6.84K --.-KB/s in 0s
2018-11-08 08:38:24 (56.7 MB/s) - '/var/ipfire/statusmail/plugins/services_clamav.pm' saved [7007/7007]
chown nobody.nobody /var/ipfire/statusmail/plugins/services_clamav.pm
chmod 0644 /var/ipfire/statusmail/plugins/services_clamav.pm
--
Download plugins/services_intrusion_detection_system.pm
--2018-11-08 08:38:24-- https://github.com/timfprogs/ipfstatusmail/raw/master/plugins/services_intrusion_detection_system.pm
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/services_intrusion_detection_system.pm [following]
--2018-11-08 08:38:25-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/services_intrusion_detection_system.pm
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 8353 (8.2K) [text/plain]
Saving to: '/var/ipfire/statusmail/plugins/services_intrusion_detection_system.pm'
/var/ipfire/statusmail/plugins/services_in 100%[========================================================================================>] 8.16K --.-KB/s in 0s
2018-11-08 08:38:25 (55.6 MB/s) - '/var/ipfire/statusmail/plugins/services_intrusion_detection_system.pm' saved [8353/8353]
chown nobody.nobody /var/ipfire/statusmail/plugins/services_intrusion_detection_system.pm
chmod 0644 /var/ipfire/statusmail/plugins/services_intrusion_detection_system.pm
--
Download plugins/services_urlfilter.pm
--2018-11-08 08:38:25-- https://github.com/timfprogs/ipfstatusmail/raw/master/plugins/services_urlfilter.pm
Resolving github.com... 140.82.118.3, 140.82.118.4
Connecting to github.com|140.82.118.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/services_urlfilter.pm [following]
--2018-11-08 08:38:25-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/services_urlfilter.pm
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 7875 (7.7K) [text/plain]
Saving to: '/var/ipfire/statusmail/plugins/services_urlfilter.pm'
/var/ipfire/statusmail/plugins/services_ur 100%[========================================================================================>] 7.69K --.-KB/s in 0s
2018-11-08 08:38:25 (57.9 MB/s) - '/var/ipfire/statusmail/plugins/services_urlfilter.pm' saved [7875/7875]
chown nobody.nobody /var/ipfire/statusmail/plugins/services_urlfilter.pm
chmod 0644 /var/ipfire/statusmail/plugins/services_urlfilter.pm
--
Download plugins/system_packfire.pm
--2018-11-08 08:38:25-- https://github.com/timfprogs/ipfstatusmail/raw/master/plugins/system_packfire.pm
Resolving github.com... 140.82.118.3, 140.82.118.4
Connecting to github.com|140.82.118.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/system_packfire.pm [following]
--2018-11-08 08:38:25-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/system_packfire.pm
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 5387 (5.3K) [text/plain]
Saving to: '/var/ipfire/statusmail/plugins/system_packfire.pm'
/var/ipfire/statusmail/plugins/system_pack 100%[========================================================================================>] 5.26K --.-KB/s in 0s
2018-11-08 08:38:26 (50.9 MB/s) - '/var/ipfire/statusmail/plugins/system_packfire.pm' saved [5387/5387]
chown nobody.nobody /var/ipfire/statusmail/plugins/system_packfire.pm
chmod 0644 /var/ipfire/statusmail/plugins/system_packfire.pm
--
Download plugins/system_ssh.pm
--2018-11-08 08:38:26-- https://github.com/timfprogs/ipfstatusmail/raw/master/plugins/system_ssh.pm
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/system_ssh.pm [following]
--2018-11-08 08:38:26-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/system_ssh.pm
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 7861 (7.7K) [text/plain]
Saving to: '/var/ipfire/statusmail/plugins/system_ssh.pm'
/var/ipfire/statusmail/plugins/system_ssh. 100%[========================================================================================>] 7.68K --.-KB/s in 0s
2018-11-08 08:38:26 (57.5 MB/s) - '/var/ipfire/statusmail/plugins/system_ssh.pm' saved [7861/7861]
chown nobody.nobody /var/ipfire/statusmail/plugins/system_ssh.pm
chmod 0644 /var/ipfire/statusmail/plugins/system_ssh.pm
--
Download plugins/system_status_ps.pm
--2018-11-08 08:38:26-- https://github.com/timfprogs/ipfstatusmail/raw/master/plugins/system_status_ps.pm
Resolving github.com... 140.82.118.4, 140.82.118.3
Connecting to github.com|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/system_status_ps.pm [following]
--2018-11-08 08:38:26-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/system_status_ps.pm
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 3999 (3.9K) [text/plain]
Saving to: '/var/ipfire/statusmail/plugins/system_status_ps.pm'
/var/ipfire/statusmail/plugins/system_stat 100%[========================================================================================>] 3.91K --.-KB/s in 0s
2018-11-08 08:38:27 (55.9 MB/s) - '/var/ipfire/statusmail/plugins/system_status_ps.pm' saved [3999/3999]
chown nobody.nobody /var/ipfire/statusmail/plugins/system_status_ps.pm
chmod 0644 /var/ipfire/statusmail/plugins/system_status_ps.pm
--
Download plugins/system_status_services.pm
--2018-11-08 08:38:27-- https://github.com/timfprogs/ipfstatusmail/raw/master/plugins/system_status_services.pm
Resolving github.com... 140.82.118.3, 140.82.118.4
Connecting to github.com|140.82.118.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/system_status_services.pm [following]
--2018-11-08 08:38:27-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/system_status_services.pm
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 10427 (10K) [text/plain]
Saving to: '/var/ipfire/statusmail/plugins/system_status_services.pm'
/var/ipfire/statusmail/plugins/system_stat 100%[========================================================================================>] 10.18K --.-KB/s in 0s
2018-11-08 08:38:27 (53.6 MB/s) - '/var/ipfire/statusmail/plugins/system_status_services.pm' saved [10427/10427]
chown nobody.nobody /var/ipfire/statusmail/plugins/system_status_services.pm
chmod 0644 /var/ipfire/statusmail/plugins/system_status_services.pm
--
Download plugins/system_kernel.pm
--2018-11-08 08:38:27-- https://github.com/timfprogs/ipfstatusmail/raw/master/plugins/system_kernel.pm
Resolving github.com... 140.82.118.3, 140.82.118.4
Connecting to github.com|140.82.118.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/system_kernel.pm [following]
--2018-11-08 08:38:28-- https://raw.githubusercontent.com/timfprogs/ipfstatusmail/master/plugins/system_kernel.pm
Resolving raw.githubusercontent.com... 151.101.84.133
Connecting to raw.githubusercontent.com|151.101.84.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 12284 (12K) [text/plain]
Saving to: '/var/ipfire/statusmail/plugins/system_kernel.pm'
/var/ipfire/statusmail/plugins/system_kern 100%[========================================================================================>] 12.00K --.-KB/s in 0s
2018-11-08 08:38:28 (67.6 MB/s) - '/var/ipfire/statusmail/plugins/system_kernel.pm' saved [12284/12284]
chown nobody.nobody /var/ipfire/statusmail/plugins/system_kernel.pm
chmod 0644 /var/ipfire/statusmail/plugins/system_kernel.pm
It still didnt work, so I checked around and found this
Code: Select all
ls /srv/web/ipfire/cgi-bin/statusmail.cgi -la
-rw-r--r-- 1 root root 42231 Nov 8 08:38 /srv/web/ipfire/cgi-bin/statusmail.cgi
So I tried to do
Code: Select all
chmod +x /srv/web/ipfire/cgi-bin/statusmail.cgi
After that I can see the page
https://ipfire:444/cgi-bin/statusmail.cgi and it say "Please generate a signing key". But I have not generated keys or done anything yet, if you want me to check something else.