Thanks Rod. I've done manually to move undelivered mails from Undelivr to Spool
directory. However, they have moved back to Undelivr automatically by CF.

On 28/03/07, Rod Higgins <[EMAIL PROTECTED]> wrote:
>
>  yeah I should of added in the code to delete the file as well or used
> copy I had not tested the code it was written in the email client on the
> fly.
>
>  -----Original Message-----
> *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Steve Onnis
> *Sent:* Wednesday, 28 March 2007 10:57 AM
> *To:* cfaussie@googlegroups.com
> *Subject:* [cfaussie] Re: How to send out undelivered cfmails?
>
> i wouldnt use COPY, rather use MOVE.  you dont want duplicates going back
> into the undelivered folder
>
>  ------------------------------
> *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Rod Higgins
> *Sent:* Wednesday, 28 March 2007 10:25 AM
> *To:* cfaussie@googlegroups.com
> *Subject:* [cfaussie] Re: How to send out undelivered cfmails?
>
>  A simple script like this should do it George. You will need to set the
> path for your spool directory and undelivered driectory on your mail server.
>
> <cfset undevpath="C:\CFusionMX7\Mail\Undelivr">
> <cfset spoolpath="E:\CFusionMX7\Mail\Spool">
>
> <cfdirectory action="LIST" directory="#undevpath#" name="file_list"
> filter="*.cfmail" sort="dateLastModified">
>
> <cfoutput query="file_list">
>   <cffile action="COPY" source="#undevpath#\#name#"
> destination="#spoolpath#\#name#">
> </cfoutput>
>
> Is this what you were looking for?
>
>  -----Original Message-----
> *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *George Lu
> *Sent:* Wednesday, 28 March 2007 10:15 AM
> *To:* cfaussie@googlegroups.com
> *Subject:* [cfaussie] Re: How to send out undelivered cfmails?
>
> Thanks for the explanation. My problem is how to deliver these undelivered
> mails to the mail server again.
>
> On 27/03/07, Rod Higgins < [EMAIL PROTECTED]> wrote:
> >
> >  Sorry forgot the URL
> >
> > http://www.adobe.com/devnet/coldfusion/articles/mail_61_03.html
> >
> >
> >  -----Original Message-----
> > *From:* cfaussie@googlegroups.com [mailto: [EMAIL PROTECTED] *On
> > Behalf Of *Andrew Scott
> > *Sent:* Tuesday, 27 March 2007 5:47 PM
> > *To:* cfaussie@googlegroups.com
> > *Subject:* [cfaussie] Re: How to send out undelivered cfmails?
> >
> >  It doesn't matter what you do these emails are not deliverable, that
> > means the email address is incorrect in someway.
> >
> >
> >
> > On 3/27/07, George Lu <[EMAIL PROTECTED]> wrote:
> > >
> > > I've done that. Here is one of the errors: Moved undelivered mail:
> > > Mail37806.cfmail to C:\CFusionMX7/Mail/Undelivr directory.
> > >
> > > Steve, how do I do the auto schedule task? Sorry I'm quite dump about
> > > this.
> > >
> > > On 27/03/07, Joel <[EMAIL PROTECTED] > wrote:
> > > >
> > > >  check the CF error logs (mailsent.log i think)
> > > >
> > > >
> > > > ----- Original Message -----
> > > > *From:* George Lu <[EMAIL PROTECTED]>
> > > > *To:* cfaussie@googlegroups.com
> > > > *Sent:* Tuesday, March 27, 2007 4:46 PM
> > > > *Subject:* [cfaussie] Re: How to send out undelivered cfmails?
> > > >
> > > >
> > > > I've dragged those mails to the spool directory but they've gone
> > > > back to undelivered directory again.
> > > >
> > > > On 27/03/07, Andrew Scott < [EMAIL PROTECTED] > wrote:
> > > > >
> > > > >  If they are sitting in there, they are not deliverable at all,
> > > > > you can try dragging them to the spool directory if you want to try 
> > > > > sending
> > > > > them again.
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Andrew Scott
> > > > > Senior Coldfusion Developer
> > > > > Aegeon Pty. Ltd.
> > > > > www.aegeon.com.au
> > > > > Phone: +613  8676 4223
> > > > > Mobile: 0404 998 273
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > *From:* cfaussie@googlegroups.com [mailto:
> > > > > [EMAIL PROTECTED] *On Behalf Of *George Lu
> > > > > *Sent: *Tuesday, 27 March 2007 4:28 PM
> > > > > *To:* CFAussie Mailing List
> > > > > *Subject:* [cfaussie] How to send out undelivered cfmails?
> > > > >
> > > > >
> > > > >
> > > > > Our mail server was down and now it's up again. There are 5 emails
> > > > > sitting at C:\CFusionMX7\Mail\Undelivr folder. Is there any way to 
> > > > > send out
> > > > > these emails?
> > > > >
> > > > > Thanks,
> > > > > George
> > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > >
> > > Aegeon Pty. Ltd.
> > > www.aegeon.com.au
> > > Phone: +613  8676 4223
> > > Mobile: 0404 998 273
> > >
> > >
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to