Testing Mail Delivery

From PeformIQ Upgrade
Revision as of 10:09, 11 February 2008 by PeterHarding (talk | contribs) (New page: =Writing Directly to SMTP Server= <pre> # telnet 127.0.0.1 25 Trying 127.0.0.1... Connected to 127.0.0.1. Escape character is '^]'. 220 localhost.localdomain ESMTP Postfix (Debian/GNU) EH...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Writing Directly to SMTP Server

# telnet 127.0.0.1 25
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
220 localhost.localdomain ESMTP Postfix (Debian/GNU)
EHLO mail.xxx.com.au
250-localhost.localdomain
250-PIPELINING
250-SIZE 67108864
250-VRFY
250-ETRN
250-AUTH PLAIN LOGIN
250-AUTH=PLAIN LOGIN
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN
MAIL From:<yyy@yyy.com.au>
250 2.1.0 Ok
RCPT To:<xxx@xxx.com.au>
250 2.1.5 Ok
DATA
354 End data with <CR><LF>.<CR><LF>
Subject: xxxxx
blah blah blah
.
250 2.0.0 Ok: queued as 8AFD1E4488
QUIT
221 2.0.0 Bye
Connection closed by foreign host.
# 


Using Python Scipts