File Download Tracker
Created by Orckestra
C1 CMS Versions supported
This package requires CMS version 4.0 or newer (Build: 4.0.4897.31550).
Installation steps
- Log into the CMS Console as an administrator.
- Go to the "System" perspective.
- Open the folders “Packages” | “Available Packages” | " Composite.Media".
- Select " Composite.Media.FileDownloadTracker" and click “Install”.
- Complete the wizard.
The e-mail functionality of Composite.Media.FileDownloadTracker uses an SMTP Server on the local host (server) by default.
You can change this behavior by editing~/web.config
and include the /configuration/system.net/mailSettings
section as described below.
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.2.1
- Package ID
- a5d133ba-aa83-47d0-b3fc-458efa9d6c0b