You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a device :
WR1043ND
Gargoyle 1.9.0.3 (r49208)
It uses the application "msmtprc" for sending email:
As the Gargoyle Router report end
Be alert mail after connecting the port 1/2/3/4
To "2" point of entry needs to "msmtprc"
tls_starttls on
tls_certcheck off
because it receives information sendmail: account default from /etc/msmtprc: tls requires either tls_trust_file (highly recommended) or tls_fingerprint or a disabled tls_certcheck
as Append to "msmtprc" is tls_starttls on end tls_certcheck off after the Gargoyle Router report, these two entries to remove
someone will like this set up?
Be alert mail after connecting the port 1/2/3/4
/bin/sh
touch /tmp/wynik1
O1=$(swconfig dev switch0 port 1 get link)
O2=$(cat /tmp/wynik1)
if [ "$O1" = "$O2" ]; then
echo "to samo co było"
else
echo "$O1" > /tmp/wynik1
if grep -q "link:up" /tmp/wynik1; then
cat /mnt/LAN1.txt | sendmail -t
fi
fi
The text was updated successfully, but these errors were encountered:
receiver=$(uci get email.@email[0].recipient)
data=$(uci get email.@email[0].data)
tlscert="/etc/ssl/certs/ca-certificates.crt"
tls=$(uci get email.@email[0].tls)
count=$(uci get email.@email[0].count)
touch /tmp/wynik1
O1=$(swconfig dev switch0 port 1 get link)
O2=$(cat /tmp/wynik1)
if [ "$O1" = "$O2" ]; then
echo "to samo co było"
else
echo "$O1" > /tmp/wynik1
if grep -q "link:up" /tmp/wynik1; then
cat /mnt/LAN1.txt | sendmail --tls-trust-file $tlscert $receiver
fi
fi
fi
Hello
I have a device :
WR1043ND
Gargoyle 1.9.0.3 (r49208)
It uses the application "msmtprc" for sending email:
To "2" point of entry needs to "msmtprc"
tls_starttls on
tls_certcheck off
because it receives information sendmail: account default from /etc/msmtprc: tls requires either tls_trust_file (highly recommended) or tls_fingerprint or a disabled tls_certcheck
as Append to "msmtprc" is tls_starttls on end tls_certcheck off after the Gargoyle Router report, these two entries to remove
someone will like this set up?
Be alert mail after connecting the port 1/2/3/4
/bin/sh
touch /tmp/wynik1
O1=$(swconfig dev switch0 port 1 get link)
O2=$(cat /tmp/wynik1)
if [ "$O1" = "$O2" ]; then
echo "to samo co było"
else
echo "$O1" > /tmp/wynik1
if grep -q "link:up" /tmp/wynik1; then
cat /mnt/LAN1.txt | sendmail -t
fi
fi
The text was updated successfully, but these errors were encountered: