navigation
a webmaster learning community
     Home    Register     Search      Help      Login    
Sponsors

Shopping Cart Software
Ecommerce software integrated into Frontpage, Dreamweaver and Golive templates. No monthly fees and available in ASP and PHP versions.

Website Templates
We also have a wide selection of Dreamweaver, Expression Web and Frontpage templates as well as webmaster tools and CSS layouts.

Frontpage website templates
Creative Website Templates for FrontPage, Dreamweaver, Flash, SwishMax

Search Forums
 

Advanced search
Recent Posts

 Todays Posts
 Most Active posts
 Posts since last visit
 My Recent Posts
 Mark posts read

Microsoft MVP

 

SPF record

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
Printable Version 

All Forums >> Web Development >> Server Issues >> SPF record
Page: [1]
 
kt

 

Posts: 195
Joined: 11/3/2004
Status: offline

 
SPF record - 7/29/2006 9:56:49   
My hosting company has just added an SPF record for my domain, but only for my mailserver. They then said this:

"I did not include your actual websever as a mail sender as I believe it would only be your actual mailserver which is used to send any mail.
Please let me know if your site actually sends out email for this domain too."

I'm not sure of the answer to this, and I couldn't get a straight answer from the hosting company.

I run scripts on many of my pages that send mail with CDO, for example to notify members of things, for contact forms, that sort of thing. Does this mean that I use my webserver to send mail too?

Many thanks, kt


Reflect

 

Posts: 4767
From: USA
Status: offline

 
RE: SPF record - 7/31/2006 9:34:15   
It is on the hosting company unless you use a co-located server. It is a server level configuration. If using a standard web hosting account this would not be on you.

Here is a good site that goes over it all...

http://www.openspf.org/

In that site is a link to a "checker" to see if it is allready setup...

http://www.kitterman.com/spf/validate.html

Take care,

Brian



_____________________________


(in reply to kt)
rdouglass

 

Posts: 9167
From: Biddeford, ME USA
Status: offline

 
RE: SPF record - 7/31/2006 9:34:40   
Are they on the same physical machine / IP address? If they are, you're all set. If not, you will need to 'point' all your CDo mail thru your mailserver first to take advantage of the SPF record.

A ReverseDNS entry is also recommended and more widely supported than an SPF record (currently anyways until Microsoft takes over the world.:))

_____________________________

Don't take you're eye off your final destination.

ASP Checkbox Function Tutorial.

(in reply to kt)
kt

 

Posts: 195
Joined: 11/3/2004
Status: offline

 
RE: SPF record - 7/31/2006 18:24:07   
Thanks both for the replies. I think I will have to send CDO email using my mailserver.

So, if I use something like this (which seems to work):

<%
Dim ObjSendMail
Set ObjSendMail = CreateObject("CDO.Message") 
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") ="mail.mysite.com"
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False 
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusername") ="mymail@mysite.com"
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendpassword") ="mypassword"
ObjSendMail.Configuration.Fields.Update
ObjSendMail.To = "someone@somesite.com"
ObjSendMail.Subject = "Subject"
ObjSendMail.From = "someone@mysite.com"
ObjSendMail.TextBody = "Body"
ObjSendMail.Send
Set ObjSendMail = Nothing 
%> 


...is there any danger of anything malicious being done with my email address and password, given that it's included in the code for outgoing authentication?

Are there any other advantages/disadvantages/issues of using the remote mailserver versus localhost?

Thanks again, kt

< Message edited by kt -- 7/31/2006 18:39:00 >

(in reply to kt)
Page:   [1]

All Forums >> Web Development >> Server Issues >> SPF record
Page: [1]
Jump to: 1





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts