Author |
Topic  |
Running925
Starting Member
USA
28 Posts |
Posted - 01 February 2010 : 13:51:40
|
Hey guys i've looked around a little bit but i can't seem to find my exact problem.
My members are unable to e-mail eachother. When you click the e-mail button, it pulls up the window, and you can click send, and it tells you that it was sent. There does not appear to be any problem on the users side but the e-mail never comes through.
My domain & e-mail are setup through godaddy and i'm hosting the site on my own windows server with IIS.
I'm asuming that i just don't have my e-mail info setup properly.
Any someone tell me what i've done wrong.
Thanks
 |
|
AnonJr
Moderator
    
United States
5768 Posts |
Posted - 01 February 2010 : 15:40:39
|
Check and see if your host requires authentication. There are numerous posts on how to set it up if they do. |
 |
|
Running925
Starting Member
USA
28 Posts |
Posted - 01 February 2010 : 23:12:29
|
I keep going through different threads on here and coming up empty. Many of the threds that i've found never show the end result and i didn't wanna start pulling a bunch of them back from the dead. |
 |
|
HuwR
Forum Admin
    
United Kingdom
20600 Posts |
Posted - 02 February 2010 : 02:15:43
|
unfortunately it could be one of many things that is the problem, although we do get more email issues from godaddy than any other.
Try working through the suggestions in this post http://forum.snitz.com/forum/topic.asp?TOPIC_ID=67328 one of them should work. |
 |
|
Running925
Starting Member
USA
28 Posts |
Posted - 02 February 2010 : 16:07:24
|
i've gone through the thread you've suggested and i'm still stuck.
Is it possible that there is something wrong with my web server?
Windows 2k IIS
my inc_mail.asp
|
Edited by - Podge on 03 February 2010 09:40:44 |
 |
|
Podge
Support Moderator
    
Ireland
3776 Posts |
|
Running925
Starting Member
USA
28 Posts |
Posted - 02 February 2010 : 19:25:23
|
quote: Originally posted by Podge
quote: You do not need to use a username and password for this server.
http://help.godaddy.com/article/955
Try removing these lines (they shouldn't be needed)
I made this change, tested sending an e-mail, still no errors and nothing comes through into the e-mail box....
|
Edited by - Running925 on 02 February 2010 19:26:17 |
 |
|
Podge
Support Moderator
    
Ireland
3776 Posts |
Posted - 02 February 2010 : 20:00:49
|
Try this and see if any errors are raised in your browser. case "cdosys"
on error goto 0
Set iConf = Server.CreateObject ("CDO.Configuration")
Set Flds = iConf.Fields
'Set and update fields properties
With Flds
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'cdoSendUsingPort
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "relay-hosting.secureserver.net" 'strMailServer
End With
Flds.Update
Set objNewMail = Server.CreateObject("CDO.Message")
Set objNewMail.Configuration = iConf
'Format and send message
Err.Clear
objNewMail.To = strRecipients
objNewMail.From = strSender
objNewMail.Subject = strSubject
objNewMail.TextBody = strMessage
On Error Resume Next
objNewMail.Send
If Err <> 0 Then
Err_Msg = Err_Msg & "<li>Your request was not sent due to the following error: " & Err.Description & "</li>"
End if
Set Flds = nothing
Set iConf = nothing
Set objNewMail = nothing
Can you try to send an email through the forum using a member account that has an email address from your domain? i.e. register an account with the email address support @ young stown racing.com and try to send an email to another member using that account. |
Podge.
The Hunger Site - Click to donate free food | My Blog | Snitz 3.4.05 AutoInstall (Beta!)
My Mods: CAPTCHA Mod | GateKeeper Mod Tutorial: Enable subscriptions on your board
Warning: The post above or below may contain nuts. |
 |
|
Running925
Starting Member
USA
28 Posts |
Posted - 02 February 2010 : 23:32:28
|
I just attemped that code change podge, and it basicly took down the whole forum, i coudln't even load the index, so i undo the change.
It gave me an "http 500" error
btw, my admin account "running925" on there is assigned the support@youngstownracing.com e-mail address. and i've been using that user and trying to send to my self, via the e-mail link the forum. That is how i've been testing.
|
Edited by - Running925 on 02 February 2010 23:33:41 |
 |
|
HuwR
Forum Admin
    
United Kingdom
20600 Posts |
Posted - 03 February 2010 : 03:14:42
|
http 500 errors could be your browser, if you are using IE you need to turn off 'freindly httperror messages' in Tools|internet options| Advanced |
 |
|
Podge
Support Moderator
    
Ireland
3776 Posts |
|
Running925
Starting Member
USA
28 Posts |
Posted - 03 February 2010 : 09:32:02
|
ok, i turned off "friendly error messages" and tested again. error reads
Microsoft VBScript compilation error '800a03fe'
Expected 'Select'
/forum/inc_mail.asp, line 149
End if ----^
I had to change it back because i don't want my board to be down.
Thoughts? |
 |
|
Podge
Support Moderator
    
Ireland
3776 Posts |
|
HuwR
Forum Admin
    
United Kingdom
20600 Posts |
Posted - 03 February 2010 : 10:23:42
|
seems to me that you may have inadvertantly deletd or commented out the wrong line
|
 |
|
Running925
Starting Member
USA
28 Posts |
Posted - 03 February 2010 : 11:00:03
|
|
 |
|
HuwR
Forum Admin
    
United Kingdom
20600 Posts |
Posted - 03 February 2010 : 11:34:39
|
looks like you may have an extraEnd If, I have highlighted it red in your post (in the cdosys section) |
 |
|
Topic  |
|