Search

GlobalSCAPE Knowledge Base

Configuring a Terms of Service Agreement for Secure Ad Hoc Transfer Module

Karla Marsh
EFT

THE INFORMATION IN THIS ARTICLE APPLIES TO:

  • Tested on EFT v6.5 and EFT v7.1

DISCUSSION

Secure Ad Hoc Transfer module allows internal employees to send files that may be larger than email will allow. This page usually uses LDAP for internal uses, however many customers would like a Terms of Service (ToS) before the employee logs in to send files. Here is a quick and painless way to make the employee aware that they are using a service for secure file transfer.

  1. Using a text editor such as Notepad or Notepad++, open the sendmail.aspx page.
    (By default located in C:\Inetpub\wwwroot\EFTAdhoc\).
  2. Search the file for "script" before the link.
  3. Type or paste the following code after that line.
  4. <script type="text/javascript">
    function show_alert()
    {
    do
    {
    var r=confirm("Insert your ToS text here.");
    if (r!=true)
    {
    alert("You must press 'OK' to continue");
    }
    }
    while (r!=true);
    }
    </script>

  5. Find <body>; this is the start of the HTML code for the sendmail.aspx page.
  6. Replace this with <body onLoad="show_alert();">
  7. Save and open a browser to https://localhost/eftadhoc on EFT Enterprise or EFT SMB.
  8. A dialog box should now appear.

Details
Last Modified: 9 Years Ago
Last Modified By: kmarsh
Type: HOWTO
Article not rated yet.
Article has been viewed 5.8K times.
Options
Also In This Category