0
503 Issue RCPT TO: command before DATA command
LEGEND
,
/t5/coldfusion-discussions/503-issue-rcpt-to-command-before-data-command/td-p/32231
Aug 29, 2006
Aug 29, 2006
Copy link to clipboard
Copied
Can anyone shed some light on what is/could be causing this
issue to keep
showing up in the logs? We are having an issue of a cfmail tag not
functioning and this appears to be tied to the issue.
Also, we have a scheduled task that is just quitting for some reason. It
will run fine for a an intermittent amount of time, then just stop for no
apparent reason. Each time we delete and recreate the task and it just keeps
repeating the same cycle. All it does is run a query to generate a csv file
then move that csv file to another local server.
--
Bryan Ashcraft (remove brain to reply)
Web Application Developer
Wright Medical Technology, Inc.
------------------------------------------------------------------
Macromedia Certified Dreamweaver Developer
Adobe Community Expert (DW) :: http://www.adobe.com/communities/experts/
showing up in the logs? We are having an issue of a cfmail tag not
functioning and this appears to be tied to the issue.
Also, we have a scheduled task that is just quitting for some reason. It
will run fine for a an intermittent amount of time, then just stop for no
apparent reason. Each time we delete and recreate the task and it just keeps
repeating the same cycle. All it does is run a query to generate a csv file
then move that csv file to another local server.
--
Bryan Ashcraft (remove brain to reply)
Web Application Developer
Wright Medical Technology, Inc.
------------------------------------------------------------------
Macromedia Certified Dreamweaver Developer
Adobe Community Expert (DW) :: http://www.adobe.com/communities/experts/
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Advocate
,
/t5/coldfusion-discussions/503-issue-rcpt-to-command-before-data-command/m-p/32232#M3417
Aug 29, 2006
Aug 29, 2006
Copy link to clipboard
Copied
Post the code that's throwing this error.
An SMTP conversation usually flows as follows:
HELO mydomain.com
MAIL FROM: me@mydomain.com
RCPT TO: bob@hisdomain.com
DATA
Subject: Hello
blah blah blah
.
That error makes it sound like the RCPT TO: line is being put below the DATA line. So, post the code that's causing this error and I'll take a look at it.
http://www.apps.ietf.org/rfc/rfc821.html
An SMTP conversation usually flows as follows:
HELO mydomain.com
MAIL FROM: me@mydomain.com
RCPT TO: bob@hisdomain.com
DATA
Subject: Hello
blah blah blah
.
That error makes it sound like the RCPT TO: line is being put below the DATA line. So, post the code that's causing this error and I'll take a look at it.
http://www.apps.ietf.org/rfc/rfc821.html
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Newsgroup_User
AUTHOR
LEGEND
,
LATEST
/t5/coldfusion-discussions/503-issue-rcpt-to-command-before-data-command/m-p/32233#M3418
Aug 30, 2006
Aug 30, 2006
Copy link to clipboard
Copied
Thanks Kronin, we finally figured out what was going on with
the mail tag.
At least the one I was having a problem with. It turned out to be an issue
on SQL Server. So that error must be coming from someone else's file and I
have no clue which one.
Now if I can figured out the scheduled tag issue, I would be doing great.
Running the page manually works fine, but the scheduled task will not run.
If you look at the scheduler log though, it says it ran when in didn't. Any
one have any thoughts?
--
Bryan Ashcraft (remove brain to reply)
Web Application Developer
Wright Medical Technology, Inc.
------------------------------------------------------------------
Macromedia Certified Dreamweaver Developer
Adobe Community Expert (DW) :: http://www.adobe.com/communities/experts/
"Kronin555" <webforumsuser@macromedia.com> wrote in message
news:ed1vb7$53h$1@forums.macromedia.com...
> Post the code that's throwing this error.
>
> An SMTP conversation usually flows as follows:
> HELO mydomain.com
> MAIL FROM: me@mydomain.com
> RCPT TO: bob@hisdomain.com
> DATA
> Subject: Hello
>
> blah blah blah
> .
>
> That error makes it sound like the RCPT TO: line is being put below the
> DATA
> line. So, post the code that's causing this error and I'll take a look at
> it.
>
> http://www.apps.ietf.org/rfc/rfc821.html#sec-4.1
>
At least the one I was having a problem with. It turned out to be an issue
on SQL Server. So that error must be coming from someone else's file and I
have no clue which one.
Now if I can figured out the scheduled tag issue, I would be doing great.
Running the page manually works fine, but the scheduled task will not run.
If you look at the scheduler log though, it says it ran when in didn't. Any
one have any thoughts?
--
Bryan Ashcraft (remove brain to reply)
Web Application Developer
Wright Medical Technology, Inc.
------------------------------------------------------------------
Macromedia Certified Dreamweaver Developer
Adobe Community Expert (DW) :: http://www.adobe.com/communities/experts/
"Kronin555" <webforumsuser@macromedia.com> wrote in message
news:ed1vb7$53h$1@forums.macromedia.com...
> Post the code that's throwing this error.
>
> An SMTP conversation usually flows as follows:
> HELO mydomain.com
> MAIL FROM: me@mydomain.com
> RCPT TO: bob@hisdomain.com
> DATA
> Subject: Hello
>
> blah blah blah
> .
>
> That error makes it sound like the RCPT TO: line is being put below the
> DATA
> line. So, post the code that's causing this error and I'll take a look at
> it.
>
> http://www.apps.ietf.org/rfc/rfc821.html#sec-4.1
>
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

