Views:
If you will install IMSS on the same computer that has a Postfix installation, configure Postfix as listed in this section.
Note
Note
The installer does not install an MTA during IMSS server installation. You should already have your MTAs installed and operational. If you install Postfix on the same computer on which you will install IMSS, verify that the Postfix settings are correct. Trend Micro strongly recommends that you install and use the Postfix distributed with your version of Linux. See http://www.postfix.org for details.

Procedure

  • Insert or modify the following settings to /etc/postfix/main.cf:
    default_process_limit=200
    imss_timeout=10m
    imss_connect_timeout=1s
    content_filter = imss:localhost:10025
    imss_destination_recipient_limit=200
    imss_destination_concurrency_limit=200
    
  • Insert the following settings to /etc/postfix/master.cf:
    #IMSS: content filter smtp transport imss for IMSS
    imss unix - - n - - smtp
      -o disable_dns_lookups=yes
      -o smtp_connect_timeout=$imss_connect_timeout
      -o smtp_data_done_timeout=$imss_timeout
      -o smtpd_tls_security_level=none
    
    #IMSS: content filter loop back smtpd
    localhost:10026 inet n - n - 200 smtpd
      -o content_filter=
      -o smtpd_timeout=$imss_timeout
      -o smtpd_tls_security_level=none
      -o local_recipient_maps=
      -o myhostname=postfix.imss91
      -o smtpd_client_restrictions=
      -o smtpd_enforce_tls=no
    
    Note
    Note
    If you copy and paste the preceding configurations, make sure you correct the indentation of all lines accordingly.