Name | Description
---------------------|--------------
smtp_address | **Optional.** The host's address. Defaults to "$address$".
+smtp_mail_from | **Optional.** Test a MAIL FROM command with the given email address.
#### <a id="plugin-check-command-ssmtp"></a> ssmtp
----------------|--------------
ssmtp_address | **Required.** The host's address. Defaults to "$address$".
ssmtp_port | **Optional.** The port that should be checked. Defaults to 465.
+ssmtp_mail_from | **Optional.** Test a MAIL FROM command with the given email address.
#### <a id="plugin-check-command-imap"></a> imap
arguments = {
"-H" = "$smtp_address$"
+ "-f" = "$smtp_mail_from$"
}
vars.smtp_address = "$address$"
arguments = {
"-H" = "$ssmtp_address$"
"-p" = "$ssmtp_port$"
+ "-f" = "$ssmtp_mail_from$"
}
vars.ssmtp_address = "$address$"