Created
June 11, 2012 21:05
-
-
Save PhirePhly/2912693 to your computer and use it in GitHub Desktop.
A sample SMTP exchange using CCSMTP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./ccsmtpd[3519]: Starting thread for socket #5 | |
220 kwf.dyndns.org SMTP CCSMTP | |
C5: EHLO mail-ey0-f180.google.com | |
S5: 502 Command not implemented | |
C5: HELO mail-ey0-f180.google.com | |
S5: 250 Ok | |
C5: MAIL FROM:<[email protected]> | |
S5: 250 Ok | |
C5: RCPT TO:<[email protected]> | |
S5: 250 Ok | |
C5: RCPT TO:<[email protected]> | |
S5: 250 Ok | |
C5: DATA | |
S5: 354 Continue | |
C5: Received: by eaai12 with SMTP id i12so1751180eaa.25 | |
C5: for <multiple recipients>; Mon, 11 Jun 2012 14:01:01 -0700 (PDT) | |
C5: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; | |
C5: d=gmail.com; s=20120113; | |
C5: h=mime-version:date:message-id:subject:from:to:content-type; | |
C5: bh=HADX3ZJBWSSmr7lEkeRdPC7BDfJJc+HvRZksFUNNwEw=; | |
C5: b=OOQN2io8TBNSZhdQL6EyL9F5JVeASiiGwdUAcuwWyOvNyxHxfvUTAzFN9X/tYDeYpj | |
C5: HrVLiprOaidWTWU3m4E2gAEPdx7IFcKVFWca+Vx1m07GkhgRtUQ6QU3BGEGNx0McvVX3 | |
C5: NcxP9CSAO38G7cqJXjpA7LFXUAyKmgEkOtQmDzI5hFpt84dZ5Bj/5x5HfnOGZrs/jcSZ | |
C5: WmfMGwClUDVx1jPI/EAfn/noA2POoV4VudVqokgNMif+yIndsblpAHTRsdlIPvqlQcRX | |
C5: oWKr+z5b8FVcPYbJKGJPQ+UmLAtrrBzcuU50/F3VEeGsQHBgHN1eGR2Xs5dBt5OuNuju | |
C5: Q2Ww== | |
C5: MIME-Version: 1.0 | |
C5: Received: by 10.14.188.129 with SMTP id a1mr6710045een.10.1339448461633; Mon, | |
C5: 11 Jun 2012 14:01:01 -0700 (PDT) | |
C5: Received: by 10.14.98.66 with HTTP; Mon, 11 Jun 2012 14:01:01 -0700 (PDT) | |
C5: Date: Mon, 11 Jun 2012 14:01:01 -0700 | |
C5: Message-ID: <CAFS5k-hX3c3YcKhxmg=6rM-VDHY4fkqhju4uEeGA9gu=FEdymw@mail.gmail.com> | |
C5: Subject: Subject Line | |
C5: From: Kenneth Finnegan <[email protected]> | |
C5: To: [email protected], [email protected] | |
C5: Content-Type: text/plain; charset=ISO-8859-1 | |
C5: | |
C5: Contents of the email. | |
C5: | |
C5: Kenneth Finnegan | |
C5: . | |
S5: 250 Ok | |
C5: QUIT | |
S5: 221 Ok |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment