How to Test SMTP AUTH using Telnet
Below are instructions on how to test SMTP AUTH against a mail server using Telnet and entering the commands by hand.
The first thing you need to do is get a base64 encoding of your username and password. There are a couple ways to do this, the example below uses Perl:
perl -MMIME::Base64 -e 'print encode_base64("username");' perl -MMIME::Base64 -e 'print encode_base64("password");'
What will be returned from each command is a base64 encoding of the username and password; save these as you will need them later. Now connect to the mail server using Telnet:
telnet mailserver.com 25
Greet the mail server:
EHLO mailserver.com
Tell the server you want to authenticate with it:
AUTH LOGIN
The server should have returned 334 VXNlcm5hbWU6;
this is a base64 encoded string asking you for your username, paste the base64 encoded username you created earlier, example:
dXNlcm5hbWUuY29t
Now the server should have returned 334 UGFzc3dvcmQ6;
. Again this is a base64 encoded string now asking for your password, paste the base64 encoded password you created, example:
bXlwYXNzd29yZA==
Now you should have received a message telling you that you successfully authenticated. If it failed your user/pass may have been wrong or your mailserver is broken.
Below is a log of a real successful SMTP AUTH connection over Telnet:
user@localhost [~]# telnet exampledomain.com 25 Trying 1.1.1.1... Connected to exampledomain.com (1.1.1.1). Escape character is '^]'. 220-server1.exampledomain.com ESMTP Exim 4.66 #1 Wed, 09 May 2007 23:55:12 +0200 220-We do not authorize the use of this system to transport unsolicited, 220 and/or bulk e-mail. EHLO exampledomain.com 250-server1.exampledomain.com Hello [1.1.1.2] 250-SIZE 52428800 250-PIPELINING 250-AUTH PLAIN LOGIN 250-STARTTLS 250 HELP AUTH LOGIN 334 VXNlcm5hbWU6 dXNlcm5hbWUuY29t 334 UGFzc3dvcmQ6 bXlwYXNzd29yZA== 235 Authentication succeeded
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
39 | Develop |
[c#] mfc 기반의 웹서비스 서버/클라이언트 샘플과 예제 소스
![]() |
hooni | 2013.04.23 | 2073 |
38 | Develop | [ios] Thread Loop 내에서 UI 업데이트 방법 | hooni | 2015.01.03 | 2069 |
37 | Develop | [js] 스크롤 이벤트 막기 | hooni | 2015.04.14 | 2067 |
36 | Develop |
GPL, AGPL, MPL,.. 한눈에 보는 오픈소스SW 라이선스
![]() |
hooni | 2014.10.14 | 2062 |
35 | Develop | [android] AlertDialog 메시지 창 띄우기 | hooni | 2015.07.09 | 2048 |
34 | Develop | [ios] NSData to NSString (NSString to NSData) | hooni | 2015.07.21 | 2022 |
33 | Develop |
[c] 이진 탐색 두 가지 코드 (재귀/반복)
![]() |
hooni | 2015.06.26 | 2021 |
32 | Develop |
[ios] SBCampanion App 초안
![]() |
hooni | 2015.09.16 | 2007 |
31 | Develop | [ios] UIWebView에서 로컬에 있는 html 파일 불러오기 | hooni | 2015.02.10 | 1998 |
30 | Develop |
[ios] 새로 만들고 있는 DateMemo
![]() |
hooni | 2016.07.12 | 1893 |
29 | Develop | [ios] NSNotificationCenter 초간단 사용 예~ ㅋㄷ | hooni | 2015.06.26 | 1851 |
28 | Develop | [ios] 문자열로 함수 실행하기 (eval 함수처럼) | hooni | 2015.02.10 | 1833 |