Skip to main content

msgpart:content_type

Last updated March 2020

Name

msgpart:content_type — Returns a table of content type related information

Synopsis

msgpart:content_type();

Description

Returns a table of content type related information with the following fields:

  • mimetype (text/plain)

  • charset (utf-8)

  • encoding (base64)

  • is_attachment – This element is a boolean and is always true when there is a filename in Content-Type/Content-Disposition.

  • filename – The "filename" attribute is taken from the "filename" attribute in the Content-Disposition header if present, otherwise the "name" parameter from the Content-Type header is used.

Note

This function only returns one filename. The filename specified in the Content-Disposition field takes precedence over the name parameter specified in Content-Type.

Enable this function with the statement require('msys.extended.message');.

require("msys.core");
require('msys.extended.message');

local mod = {};

function mod:validate_data_spool_each_rcpt (msg, accept, vctx)
  local msgpart = msg:mime(true);
  while msgpart != nil do
    local ct = msgpart:content_type();
    for k,v in pairs(ct) do
      print(k,v)
    end
    msgpart = msgpart.thread;
  end
  return msys.core.VALIDATE_DONE;
end

msys.registerModule('validate_data_spool_each_rcpt', mod);
Was this page helpful?