Howie,

Thanks, I will look into your suggestions. The Pass.cfm mod looks tempting to me....

Steve

At 09:51 AM 6/21/2006, Howie Hamlin wrote:
I assume that the client is looking at the UUID of the mail and ignoring emails that it already has according to that. FusionMail uses a UUID based on the record ID of the mail in the mail table. If you took all of the records of the mails for that client and copied them to new records then the UUID will change. As an alternative - you can hack the PASS.CFM template and alter the UUIDs for that client. Our server code looks like this:

<cfoutput query="getmail">
popmail=#messageid#,#filename#
</cfoutput>

This sends a list of waiting mails to the iMS POP Server. You could change it to something like this:

<cfoutput query="getmail">
<cfif userid is 12345>
<cfset tempid=messageid+100000>
popmail=#tempid#,#filename#
<cfelse>
popmail=#messageid#,#filename#
</cfif>
</cfoutput>

Another alternative is to set the client so that it does not leave mail on the server...or maybe the client has some kind of resynch function.

Regards,

Howie

--- On Wednesday, June 21, 2006 12:19 PM, Stephen Garrett scribed: ---
>
> All,
>
> I've run into a problem, that I think was my own making.
>
> I have a scenario where mail is sitting on IMS waiting to be picked
> up but...
>
> 1) The client logs into POP, sees a list of mail to retrieve
> 2) The client evidently thinks it has already received these emails
> so it does nothing
> 3) repeat 1/2 over and over.
>
> I've put old code back into place and things seem to be working
> correctly from that point forward, but the old emails are "stuck".
>
> Does anyone have some code that can in effect requeue these old
> emails or do I need to whip something up?
>
> Thanks for anyones help!
>
> Steve
>
==^=======================================================
This list server is Powered by iMS  "The Swiss Army Knife of Mail Servers"
--------------------------------------------------------------------------------------
This list is provided as a free service.  Although we will try to address issues
in a timely manner, support via this list is not guaranteed.  If you require 
expedited
support then a support contract is required.  Support may be purchased from
http://www.coolfusion.com/commerce.  Details regarding support options may be 
reviewed
at: http://www.coolfusion.com/SupportOptions.cfm
--------------------------------------------------------------------------------------
To leave this list please complete the form at 
http://www.coolfusion.com/Support/
Need an iMS Developer license?  Sign up for a free license here:
http://www.coolfusion.com/Developers/
List archives: http://www.coolfusion.com/cfbb/
Note: You are subscribed as archive_jab_org / [email protected]
==^=======================================================


Reply via email to