>- see footer for list info -< Not entirely sure if this is possible, but if you set the Mail Logging 'Error Log Severity' level to 'Information' will it identify emails that have been moved to undelivr as a result of being 'DUFF' email address?
If so, a bit of further investigation into the mail.log file could determine whether to move an item of mail back into the spool folder or not. -----Original Message----- From: Jenny [mailto:[EMAIL PROTECTED] Sent: 05 November 2004 13:08 To: [EMAIL PROTECTED]; Coldfusion Development Subject: RE: [CF-Dev] CFMAIL and the mail spooler >- see footer for list info -< Thanks Terry and Stephen, I've written the following for now and popped it into the scheduler. <cfdirectory action = "list" directory = "c:\cfusionmx\mail\undelivr" name = "Mail" newDirectory = "new directory name"> <cfif mail.recordcount gt 0> <cfloop query ="mail"> <cffile action = "move" source = "c:\cfusionmx\mail\undelivr\#mail.name#" destination = "c:\cfusionmx\mail\spool"> </cfloop> </cfif> Not an ideal solution because it will also try and resend mail that really is to a duff email addresses and not just because the mail server was too busy. I'm a bit confused that people are able to get a duff email address past the email validation? Thanks again, Jenny > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Terry Riley > Sent: 05 November 2004 12:44 > To: [EMAIL PROTECTED] > Subject: Re: [CF-Dev] CFMAIL and the mail spooler > > > >- see footer for list info -< > Jenny > > There used to be a custom tag available called (IIRC) > ResendUndeliverableMail. When I used it, it was configurable > within the NT > Scheduler to try every x minutes. It grabs any messages in \undelivd and > reinserts them into the \spool. > > A quick google ought to find it. > > Cheers > Terry > > ----- Original Message ----- > > > >- see footer for list info -< > > > > Hi all, > > > > I've got a problem with the mail spooler. Sending out only small > > volumes of > > mail is overloading the mail server and the mails end up being moved > > into > > the \undelivr directory. > > > > Is there anyway I can get cf to reprocess mail out of this folder until > > it > > is all sent? Or can I put a delay between the spooling of each message > > to > > give the mail server more time? > > > > I tried changing the mail spool times, but this only changes when the > > batch > > of email is sent to the mail server and not the timing for each > > individual > > email. > > > > The mail server and CF are on the same server. I'm running CFMX 6.1 > > with > > Daemon mail server on win2k. > > > > Thanks, > > > > Jenny > > > > > > > > > _______________________________________________ > > For details on ALL mailing lists and for joining or leaving > lists, go to http://list.cfdeveloper.co.uk/mailman/listinfo > > -- > CFDeveloper Sponsors:- > >- Hosting provided by www.cfmxhosting.co.uk -< > >- Forum provided by www.fusetalk.com -< > >- DHTML Menus provided by www.APYCOM.com -< > >- Lists hosted by www.Gradwell.com -< > >- CFdeveloper is run by Russ Michaels, feel free to volunteer > your help -< > _______________________________________________ For details on ALL mailing lists and for joining or leaving lists, go to http://list.cfdeveloper.co.uk/mailman/listinfo -- CFDeveloper Sponsors:- >- Hosting provided by www.cfmxhosting.co.uk -< >- Forum provided by www.fusetalk.com -< >- DHTML Menus provided by www.APYCOM.com -< >- Lists hosted by www.Gradwell.com -< >- CFdeveloper is run by Russ Michaels, feel free to volunteer your help -< _______________________________________________________________________ Confidentiality: This e-mail and its attachments are intended for the above named only and may be confidential. If they have come to you in error you must take no action based on them, nor must you copy or show them to anyone; please reply to this e-mail and highlight the error. Security Warning: Please note that this e-mail has been created in the knowledge that Internet e-mail is not a 100% secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Viruses: Although we have taken steps to ensure that this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. ________________________________________________________________________ _______________________________________________ For details on ALL mailing lists and for joining or leaving lists, go to http://list.cfdeveloper.co.uk/mailman/listinfo -- CFDeveloper Sponsors:- >- Hosting provided by www.cfmxhosting.co.uk -< >- Forum provided by www.fusetalk.com -< >- DHTML Menus provided by www.APYCOM.com -< >- Lists hosted by www.Gradwell.com -< >- CFdeveloper is run by Russ Michaels, feel free to volunteer your help -<
