Skip to main content

Name

ec_get_message_mailfrom — Return the mailfrom of the current message.

Synopsis

ec_get_message_mailfrom

Description

ec_get_message_mailfrom returns the mail from of the current message. It has the form of MAIL FROM:bar@bar.com.

In the following script, the mailfrom is checked against a specific value and the mail is permanently failed if it does not match.

$mfrom = ec_get_message_mailfrom;
if not ec_test :contains "${mfrom}" "MAIL FROM:<bar@bar.com>" {
  ec_action 550 "ec_get_message_mailfrom failed (read ${mfrom})";
}
Was this page helpful?