Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add installation function for sendemail #124

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions l
Original file line number Diff line number Diff line change
Expand Up @@ -6711,6 +6711,11 @@ function stop_monitor
}
function spoof_email
{
if [[ ! -f /usr/bin/sendemail && ! -f /usr/sbin/sendemail ]]
then
install_sendemail
clear
fi
while true
do
sm=0
Expand Down Expand Up @@ -9760,6 +9765,10 @@ check_if_ks
return 1
fi
}
function install_sendemail
{
apt-get install -y sendemail
}
function install_fluxion
{
foldname="fluxion"
Expand Down