Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f5ef4885 authored by Steven Rostedt (VMware)'s avatar Steven Rostedt (VMware)
Browse files

ktest.pl: No need to print no mailer is specified when mailto is not



If the user doesn't want to send mail, then don't bother them with output
that says they didn't specify a mailer. That can be annoying.

Signed-off-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
parent eaaa1e28
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -4135,12 +4135,14 @@ sub _sendmail_send {
}

sub send_email {
    if (defined($mailto) && defined($mailer)) {
    if (defined($mailto)) {
	if (!defined($mailer)) {
	    doprint "No email sent: email or mailer not specified in config.\n";
	    return;
	}
        if ($mailer eq "mail" || $mailer eq "mailx"){ _mailx_send(@_);}
        elsif ($mailer eq "sendmail" ) { _sendmail_send(@_);}
        else { doprint "\nYour mailer: $mailer is not supported.\n" }
    } else {
        print "No email sent: email or mailer not specified in config.\n"
    }
}