Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: Mail Configuration
 urgent: CDOSYS
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

pokemon
Junior Member

151 Posts

Posted - 25 August 2004 :  11:20:47  Show Profile
Hello all,

I have a problem when using CDOSYS for windows server 2003. These features are working on windows 2000, but not windows 2003. All my mail function stop working. How do I change this script to work with windows 2003? Please help me as soon as you can... Thanks

Podge
Support Moderator

Ireland
3776 Posts

Posted - 25 August 2004 :  12:17:19  Show Profile  Send Podge an ICQ Message  Send Podge a Yahoo! Message
Are you with the same host and sending mail through your host's mail server?
Are you required to authenticate with the mail server before sending mail?

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.
Go to Top of Page

sy
Average Member

United Kingdom
638 Posts

Posted - 25 August 2004 :  15:21:28  Show Profile  Visit sy's Homepage  Send sy a Yahoo! Message
I heard something about this, but don't use 2003, google at MS site produces: http://support.microsoft.com/?id=315197

Anything there

The pessimist complains about the wind; the optimist expects it to change; the realist adjusts the sails

Go to Top of Page

pokemon
Junior Member

151 Posts

Posted - 25 August 2004 :  15:48:01  Show Profile
I have hosted on my own server 2003. I search for an object that support the mail function, but no luck. Do you have any solution? Thanks
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 25 August 2004 :  16:29:36  Show Profile
perhaps you need to supply authentication.

Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~
Go to Top of Page

pokemon
Junior Member

151 Posts

Posted - 25 August 2004 :  17:11:51  Show Profile
What do you mean by supplying an authentication?
Go to Top of Page

Podge
Support Moderator

Ireland
3776 Posts

Posted - 25 August 2004 :  18:01:50  Show Profile  Send Podge an ICQ Message  Send Podge a Yahoo! Message
Some mailservers require a valid username and password before it will send or relay mail.

In the CDOSYS part of inc_mail.asp you can set the username and password, etc.

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.
Go to Top of Page

sr_erick
Senior Member

USA
1318 Posts

Posted - 07 September 2004 :  12:36:47  Show Profile  Visit sr_erick's Homepage  Send sr_erick a Yahoo! Message
This is strange. I have the same problem but to solve it I simply commented out the lines:

Flds("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'cdoSendUsingPort
Flds("http://schemas.microsoft.com/cdo/configuration/smtpserver") = strMailServer

It now seems to be working just fine.




Erick
Snowmobile Fanatics

Go to Top of Page

pokemon
Junior Member

151 Posts

Posted - 14 September 2004 :  10:29:45  Show Profile
I'm now using third party email hosting with UNIX. They gave me a MX address, something like mail.mymail.com. On other hand, i'm still hosting my own website with server 2003. So, how do I send email out by using mail.mymail.com. I noticed CDOSYS not work...is there any option that I can work around? When new register signup at my forum, they recieve a message that tell them to check message in their inbox, but the email was never arrived to their inbox. There is no error or anything. I'm not sure how to fix it...if anyone has the solution....please share.. Thanks
Go to Top of Page

Podge
Support Moderator

Ireland
3776 Posts

Posted - 14 September 2004 :  18:31:18  Show Profile  Send Podge an ICQ Message  Send Podge a Yahoo! Message
If you're hosted on W2003 then more than likely CDOSYS will work and I think its the best option as you will need to authenticate with the external mail server.

Can you post the CDOSYS portion of inc_mail.asp and xxxxxxxx out your mail server, username and password?

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.
Go to Top of Page

ascension
New Member

50 Posts

Posted - 27 September 2004 :  07:02:06  Show Profile
If anyone uses Verio, and needs help with this ... just e-mail me. I finally figured out how to implement this fix for Verio users.
Go to Top of Page

jamesson
Starting Member

11 Posts

Posted - 20 November 2004 :  15:59:51  Show Profile
anybody know what i should comment out and what i shouldn't
for windows 2003 server using exchange server on the cdosys files ?
Go to Top of Page

jamesson
Starting Member

11 Posts

Posted - 23 November 2004 :  09:14:32  Show Profile
Set iConf = Server.CreateObject ("CDO.Configuration")
Set Flds = iConf.Fields

'Set and update fields properties

'Flds("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'cdoSendUsingPort
'Flds("http://schemas.microsoft.com/cdo/configuration/smtpserver") = strMailServer
Flds("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = cdoBasic
Flds("http://schemas.microsoft.com/cdo/configuration/sendusername") = "administrator@pc24hours.com"
Flds("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "1977"
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
Go to Top of Page

Podge
Support Moderator

Ireland
3776 Posts

Posted - 23 November 2004 :  11:18:55  Show Profile  Send Podge an ICQ Message  Send Podge a Yahoo! Message
Don't include you password here....

Uncomment these two;

'Flds("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'cdoSendUsingPort
'Flds("http://schemas.microsoft.com/cdo/configuration/smtpserver") = strMailServer

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.
Go to Top of Page

jamesson
Starting Member

11 Posts

Posted - 26 November 2004 :  07:36:47  Show Profile
didn't work
i guess i have to try a diff forum then
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.59 seconds. Powered By: Snitz Forums 2000 Version 3.4.07