We configure the Allowed IP settings in our SMTP Servers with all of our valid local addresses. Then, in our templates we process based on that. We also do separate processing based on whether the connection is from a trusted source (the sender has smtp authenticated). In your case it would be something like:
<cfif (FORM.IPALLOWED is "NO") and (form.AUTHENTICATED is "NO")> <!--- test and reject mail without a FROM header here ---> </cfif> In this way, your local servers and validated senders would not be subjected to this test. HTH, Howie ----- Original Message ----- From: "Michelle Davis" <[EMAIL PROTECTED]> To: "inFusion Support List" <[EMAIL PROTECTED]> Sent: Friday, April 16, 2004 7:42 PM Subject: Re: [iMS] Adding POP and SMTP > Thanks Howie and DGo, this worked a treat - I didn't bother trying to parse all the > subjects and so forth, so it looks a bit odd in the FusionMail webmail interface, > but as long as users can get their email all is well. > > Another question. I was using the mail.cfm template to eliminate mail with a blank > from address, the problem was that when the POST server had to bounce a bunch of > mail back to a sender on our server, the mail.cfm template refused to process the > mail because of the blank from address. > > I turned off the mail.cfm template in the SMTP server, but is there some way to get > the POST server (and Relay server if this matters) to provide a valid from address, > so I can continue to use the template? Otherwise I suppose I could get creative and > work out how to use mail.cfm to allow blank from addresses from local mail but not > any other mail? > > Has anyone done anything similar? > > Ciao, > > Michelle > > At 01:40 AM 17/04/2004, you wrote: > >A mailbox in iMS is usually a db record. For example - FusionMail stores records > >in a table called MAIL and each record corresponds to a particular user ID in the > >system. So, if you are using FusionMail you can probably write a CF script to move > >the files into the system and add the proper DB records. > > > >HTH, > > > >Howie > > > >----- Original Message ----- > >From: "Michelle Davis" <[EMAIL PROTECTED]> > >To: "inFusion Support List" <[EMAIL PROTECTED]> > >Sent: Friday, April 16, 2004 11:27 AM > >Subject: Re: [iMS] Adding POP and SMTP > > > > > >> Hi All, > >> > >> I have installed the new pop and smtp servers and they are working fine. It will > >> take a while to get around all the features, but in the meantime I have a small > >> problem. I have some mail that was sitting in the pop mailboxes of the old smtp > >> server, what I want to do is to just insert it directly into the mailboxes of the > >> inFusion server so the users can download it. > >> > >> The files are .eml files but they look like a pretty standard format. I tried > >> simpling renaming them .mail and putting them into the mail box for the > >> appropriate users, but they didn't download. > >> > >> Any ideas on how to do this? > >> > >> Ciao, > >> > >> Michelle Davis > >> ==^======================================================= 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.mail-archive.com/infusion-email%40eoscape.com/ Note: You are subscribed as [EMAIL PROTECTED] ==^=======================================================
