Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: send/header command fails

From: ben:brannen:gm:ail at: 20-Aug-2009 10:38

sorry .... forgot to answer the original question: whats the difference with trace/net on? (series of 'xx' replace private data) ---------------------------------------------------
>> probe header
make object! [ To: [ben.brannen-xxxxxxxxx.com] CC: none BCC: none From: none Reply-To: none Date: "Thu, 20 Aug 2009 09:54:25 -0500" Subject: none Return-Path: none Organization: none Message-Id: none Comment: none X-REBOL: "View 2.7.6.3.1 http://WWW.REBOL.COM" MIME-Version: none Content-Type: none Content: none ]
>> >> >> trace/net on >> send/header header/to "message" header
Net-log: ["Opening" "tcp" "for" "esmtp"] Net-log: [none "220"] Net-log: {220 xxxxxxxxxxxxxxxxxxxxxxxxxx} Net-log: [["EHLO" system/network/host] "250"] Net-log: "250-xxxxxxxxxxxxxxxxxxxxxxxx" Net-log: "250-AUTH LOGIN" Net-log: "250-8BITMIME" Net-log: "250 SIZE" Net-log: ["Supported auth methods:" [login]] Net-log: ["MAIL FROM: <ben.brannen-xxxxcomercialAcctxxxxx.com>" "250"] Net-log: "250 Ok" Net-log: ["RCPT TO: <ben.brannen-xxxxxxxxxxxxx.com>" "250"] Net-log: "250 Ok" Net-log: ["DATA" "354"] Net-log: {354 Enter mail, end with "." on a line by itself} Net-log: [none "250"] Net-log: "250 Ok" Net-log: ["QUIT" "221"] Net-log: {221 xxxxxxxxxxxxxxxxxxxx Closing transmission channel}
>> send/header header/to "message" header
Net-log: ["Opening" "tcp" "for" "esmtp"] Net-log: [none "220"] Net-log: {220 xxxxxxxxxxxxxxxxxxxx, Inc. All rights reserved. Read y} Net-log: [["EHLO" system/network/host] "250"] Net-log: "250-xxxxxxxxxxxxxxxxxxxxxxx" Net-log: "250-AUTH LOGIN" Net-log: "250-8BITMIME" Net-log: "250 SIZE" Net-log: ["Supported auth methods:" [login]] ** User Error: ESMTP: Invalid command ** Near: insert smtp-port reduce [from reduce [addr] tmp]
>>
however, if I pre-set the From address I receive the same error. ------------------------------------ On Wed, Aug 19, 2009 at 7:31 PM, Graham Chiu<compkarori-gmail.com> wrote: