Files
kumomta/docs/reference/events/smtp_server_rcpt_to.md
T

812 B

kumo.on('smtp_server_rcpt_to', function(recipient, conn_meta))

Called by the ESMTP server in response to the client issuing a "RCPT TO" command. The event handler is passed the recipient address parameter from the RCPT TO command.

The recipient address is an EnvelopeAddress object.

{{since('dev', indent=True)}} The conn_meta parameter represents the connection metadata and can be used to share state between the various SMTP listener event handlers. See Connection Metadata for more information.

You may choose to reject the connection via kumo.reject.

kumo.on('smtp_server_rcpt_to', function(recipient)
  if recipient.domain == 'bad.domain' then
    kumo.reject(420, 'not thanks')
  end
end)