Authentication is base 64 encoded and must be decrypted and encrypted before and after transmission.
*Note: Authentication is purely a mechanism of the remote server. It is NOT a requirement of KACE and can only be configured on the KACE end by enabling and disabling.
A decoder to translate the text must be used.
There are many you can choose from just google base64 decoder.
Here is an example:
http://www.webpan.com/Customers/Email/base64_conversion.htm
When the server returns VXNlcm5hbWU6 you copy and paste that into the decoder and hit decode it returns
Username:
Note* The text you type will also be encoded so type carefully. In most cases a backspace counts as a character and will cause the test to fail.
TELNET TEST
1. Telnet into Exchange server hosting IMS service using TCP port 25.
Command is telnet <servername> 25
2. Turn on local echo on your telnet client so that you can see what you are typing.
On Win 9x and NT 3.5/4.0 Telnet client this done by selecting the "preferences" from the "terminal" pull down menu, and checking the local echo radio button. For Windows 2000 telnet client, issue command "set local_echo", from the telnet command prompt.
3. Issue the following SMTP command sequence
helo <your domain name><enter>
response should be as follows
250 OK
mail from: <your Email Address><enter>
response should be as follows
250 OK - mail from <your Email address>
rcpt to: <recipient address><enter>
response should be as follows
250 OK - Recipient <recipient address>
data<enter>
response should be as follows
354 Send data. End with CRLF.CRLF
To: <recipient's display name><enter>
From: <your display name><enter>
Subject: <Subject field of Email message><enter>
<Enter you body text><enter><enter> . <enter>
response should be as follows
250 OK
quit<enter>