Please or Register to create posts and topics.

How to manually setup the OfficeClip SMTP

  • Make a copy of the dynamic.config file in the OfficeClip applicaiton directory.
  • Open the file dynamic.config for editing on your favorite text editor (e.g. notepad). Look for key="EmailServerName" and set the value as given below:
    1. server=<your-server-name> (required)
    2. user=<your-email-login-id> (required but can be empty)
    3. password=<email-password> (required but can be empty)
    4. port=<smtp-port> (25, for non-ssl, 465 for ssl or 587 for tls)
    5. timeout=<smtp-timeout> (default=30)
    6. isSSL=<yes or no> (optional)
    7. isStarttLS=<yes or no> (optional)
    8. Note: there are two fallback keys called EmailServerName1 and EmailServerName2 that you can ignore
  • The following are examples of valid values:
      • <add key="EmailServerName" value="server=smtp.gmail.com;[email protected];password=***;port=465;timeout=30;isSSL=yes;isStartTLS=no" />
      • <add key="EmailServerName" value="server=192.168.0.1;user=;password=;port=465;timeout=30" />
  • Once it is setup correctly, restart the website
  • Run https://your-web-site/offficeclip/systemtest.aspx (please note that the url may be different based on your implementation) and scroll down to the bottom. You should be able to test your email smtp from here.