docs

Home All functions Legacy functions Categories

vuSetMailProxy()

Clarion prototype

Prototype: vuSetMailProxy(*CSTRING InProxyHost, LONG InProxyPort), SIGNED, PROC, PASCAL, RAW, NAME(‘vuSetMailProxy’)

Description

This is the legacy vuMail function name.

Preferred function name:

This function is exported for backward compatibility and behaves identically to vuNetSetProxy().

Example (Clarion)

rc        LONG
proxyHost CSTRING(256)

proxyHost = 'proxy.example.com'
rc = vuSetMailProxy(proxyHost, 8080)

IF rc = 0
  MESSAGE('Proxy was not accepted: ' & vuMailLastError())
END
Home All functions Legacy functions Categories