Class TNEFNode


  • public class TNEFNode
    extends Node
    This Node converts TNEF files (i.e. MS Outlook's winmail.dat mail attachments) and MSG files (i.e. saved Outlook mailes) into RFC 822 messages with pure Java.

    Those converted messages can processed via the normal jadice server mail nodes, for instance with the EmailConversion.groovy script

    Since:
    jadice server 4.2.1.3
    • Constructor Detail

      • TNEFNode

        public TNEFNode()
    • Method Detail

      • getWorkerClassName

        public String getWorkerClassName()
        Description copied from class: Node
        Return the node's associated com.levigo.jadice.server.core.NodeWorker full qualified class's name. By default, the worker class name is
        • The same as the node name with the trailing "Node" replaced by "Worker" if the node name ends in "Node"
        • The node class name with an appended "Worker" otherwise.
        The package name of the worker class is the name of the Node's package with an appended ".worker".

        This behavior can be overridden in concrete subclasses.

        Overrides:
        getWorkerClassName in class Node
        Returns:
        the full qualified class name of the worker of this node.
      • setIgnoreOriginalMimeTypes

        public void setIgnoreOriginalMimeTypes​(boolean ignoreOriginalMimeTypes)
        Set whether the original MIME-type information should be ignored.

        This flag indicates whether the original MIME-type information from any MIME-encoded messages should be mistrusted. If set to true, all MIME types are set to StreamDescriptor.UNKNOWN_MIME_TYPE ("unknown") and the original MIME type information is propagated using the property "PURPORTED_MIME_TYPE". This option can be used to let the com.levigo.jadice.server.documentplatform.StreamAnalysisNode determine the actual MIME types in cases when the purported information is unreliable.

        An exception from the mistrust are the multipart/*, text/* and message/* types—for those types the information must be trusted. Default value: false .

        Parameters:
        ignoreOriginalMimeTypes - flag if or if not to ignore the original MIME type
        Since:
        jadice server 4.3.1.6
      • isIgnoreOriginalMimeTypes

        public boolean isIgnoreOriginalMimeTypes()
        Returns:
        whether the original MIME-type information should be ignored.
        Since:
        jadice server 4.3.1.6