icon Forms Renderer
Created by Orckestra

C1 CMS Versions supported

This package requires CMS version 5.2 or newer (Build: 5.2.6093.24082).

Launch the CMS Console, then open the top menu item “Help” and click “About C1 CMS”.

Installation steps

  1. Log into the CMS Console as an administrator.
  2. Go to the "System" perspective.
  3. Open the folders “Packages” | “Available Packages” | " Composite.Forms".
  4. Select " Composite.Forms.Renderer" and click “Install”.
  5. Complete the wizard.

Configuring Email Host

This package requires sending emails so you should provide Orckestra CMS with a way to deliver emails.

Configure this by adding a /configuration/system.net/mailSettings section to the ~/web.config file.

If your Orckestra CMS site is hosted in a managed server environment, you should contact your hosting provider for details about accessing their SMTP services.

To use the local Orckestra CMS Server as an SMTP server, add the following /configuration/system.net/mailSetting

<configuration> 
  <!-- … other web.config elements … --> 
  <system.net> 
    <mailSettings> 
      <smtp deliveryMethod="Network"> 
        <network host="localhost" port="25" defaultCredentials="true" /> 
      </smtp> 
    </mailSettings> 
  </system.net> 
  <!-- … other web.config elements … --> 
</configuration>

To use a remote SMTP server that does not require authentication, use the following configuration (specifying the host name or IP address to use):

<configuration> 
  <!-- … other web.config elements … --> 
  <system.net> 
    <mailSettings> 
      <smtp deliveryMethod="Network"> 
        <network host="yoursmtpserver.com" port="25" defaultCredentials="true" /> 
      </smtp> 
    </mailSettings> 
  </system.net> 
  <!-- … other web.config elements … --> 
</configuration>

To use an SMTP server which require authentication, you can use this as a template configuration:

<configuration> 
  <!-- … other web.config elements … --> 
  <system.net> 
    <mailSettings> 
      <smtp deliveryMethod="Network"> 
        <network host="yoursmtpserver.com" port="25" defaultCredentials="false" userName="login" password="password" /> 
      </smtp> 
    </mailSettings> 
  </system.net> 
  <!-- … other web.config elements … --> 
</configuration>

If the Microsoft IIS SMTP Service is installed on the Orckestra CMS server, e-mails can be "sent" by writing them to the Pickup Directory. This is probably the most robust method of delivery since the SMTP Service is not required to be running while the e-mail is generated. To use this feature, use the following configuration:

<configuration> 
  <!-- … other web.config elements … --> 
  <system.net> 
    <mailSettings> 
      <smtp deliveryMethod="PickupDirectoryFromIis" /> 
    </mailSettings> 
  </system.net> 
  <!-- … other web.config elements … --> 
</configuration>

The sample configurations above are typical settings, but they are not exhaustive. Please refer to http://msdn.microsoft.com/en-us/library/w355a94k(VS.80).aspx for more information on the <mailSettings /> element.

Version info

Current version
1.7.0
Package ID
6fe2ef97-15e6-4aca-a1e3-588d770b435b