Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - Send mail change
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Send mail change

 Post Reply Post Reply
Author
Manbos View Drop Down
Newbie
Newbie
Avatar

Joined: 21 November 2003
Location: Spain
Status: Offline
Points: 1
Post Options Post Options   Thanks (0) Thanks(0)   Quote Manbos Quote  Post ReplyReply Direct Link To This Post Topic: Send mail change
    Posted: 22 November 2003 at 1:24pm

My domain is on Windows Server 2003 and I have had to make changes to the code of CDOSYS so that work according to me has indicated my technical support:

They first said the following thing to me:

I asked to them:

- The data of my forum are:

- SmtpServerPort = 25

- SendUsing = 2

- I must change the SmtpServerPort to 2500?

And its answer was:

- Yes the relay port have to be changed to 2500.  It is to make possible for Microsoft SMTP Server to work together with Mailenable SMTP (which uses the default port 25). 

When changing this port followed without working, so in the end I had to change the code:

Original code in functions_send_mail.asp:

'-------------------------------------------
'       With objCDOSYSCon
'           'Out going SMTP server
'           .Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = strIncomingMailServer
'           'SMTP port
'           '.Fields(" http://schemas.microsoft.com/cdo/configuration/smtpserverpor t")  = 25
'           'CDO Port
'           .Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
'           'Timeout
'           .Fields(" http://schemas.microsoft.com/cdo/configuration/smtpconnectio ntimeout") = 60
'           .Fields.Update
'          End With
'-----------------------------------------

New code:

     With objCDOSYSCon.Fields
     .Item("sendusing") = 2
     .Item("smtpserver") = strIncomingMailServer
     .Item("smtpport") = "2500"
     .Update
     End With
'-----------------------------------------------

And now send mail work fine.

Commentary ?

Manbos

http://www.manbos.com

 



Edited by Manbos
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.