Web Wiz - Green Windows Web Hosting - Celebrating 25 Years!

  New Posts New Posts RSS Feed - Anyone using webwiz on brinkster
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Anyone using webwiz on brinkster

 Post Reply Post Reply
Author
runsh View Drop Down
Newbie
Newbie


Joined: 13 May 2005
Location: United States
Status: Offline
Points: 4
Post Options Post Options   Thanks (0) Thanks(0)   Quote runsh Quote  Post ReplyReply Direct Link To This Post Topic: Anyone using webwiz on brinkster
    Posted: 14 May 2005 at 10:46am

if you using webwiz forum on brinkster please let me know how you set up email activation.

 
thanks
Back to Top
martionline View Drop Down
Groupie
Groupie


Joined: 13 January 2005
Location: Turkey
Status: Offline
Points: 54
Post Options Post Options   Thanks (0) Thanks(0)   Quote martionline Quote  Post ReplyReply Direct Link To This Post Posted: 15 May 2005 at 4:15am
i am using it in brinkster paid account if u need help write here but i dont know free brinkster accounts
Back to Top
WebWiz-Bruce View Drop Down
Admin Group
Admin Group
Avatar
Web Wiz Developer

Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
Post Options Post Options   Thanks (0) Thanks(0)   Quote WebWiz-Bruce Quote  Post ReplyReply Direct Link To This Post Posted: 15 May 2005 at 5:11am
Brinkster doesn't have any email components on it's free accounts so you can not use any of the email features.

Free hosting accounts are usualy naff and have many features of full accounts disabled as they are to give you a taster in the hope you will upgrade to a paid account with all the features.
Back to Top
runsh View Drop Down
Newbie
Newbie


Joined: 13 May 2005
Location: United States
Status: Offline
Points: 4
Post Options Post Options   Thanks (0) Thanks(0)   Quote runsh Quote  Post ReplyReply Direct Link To This Post Posted: 15 May 2005 at 9:01am
I have paid account and able to run other programs with email component as those have built in authentication option setting but webwiz forum has no such option. Is there anyway around this.
thanks
Back to Top
dj air View Drop Down
Senior Member
Senior Member
Avatar

Joined: 05 April 2002
Location: United Kingdom
Status: Offline
Points: 3627
Post Options Post Options   Thanks (0) Thanks(0)   Quote dj air Quote  Post ReplyReply Direct Link To This Post Posted: 15 May 2005 at 9:34am
if you are using CDOSYS you can edit the send mail function file to use the username and password you set.

another way somehosts bypass the security is to allow you to set the mail server as localhost

then you wont need the authentication
Back to Top
runsh View Drop Down
Newbie
Newbie


Joined: 13 May 2005
Location: United States
Status: Offline
Points: 4
Post Options Post Options   Thanks (0) Thanks(0)   Quote runsh Quote  Post ReplyReply Direct Link To This Post Posted: 15 May 2005 at 12:49pm
Originally posted by dj air dj air wrote:

if you are using CDOSYS you can edit the send mail function file to use the username and password you set.
 
The problem is haven't been able to get it to work. Can only send email to email accounts generated by my site such as name@mydomain.com other emial like yahoo or msn will not get activation email generated.
this is what they recommend to be used but couldn't get it to work.
CDOSYS:
<%

Dim objEmail
Set objEmail = CreateObject("CDO.Message")

objEmail.From = "you@domain.com"
objEmail.To = "user@domain.com"
objEmail.Subject = "Test message sent using the CDOSYS component"
objEmail.TextBody = "This is a test message."
With objEmail.Configuration.Fields
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mail.YourDomain.com"
.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "you@domain.com"
.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "password"
.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
.Update
End With
objEmail.Send

Set objEmail = Nothing
%>

have contact support they keep giving me link to above code.
any idea how to change it.
 
Originally posted by dj air dj air wrote:

another way somehosts bypass the security is to allow you to set the mail server as localhost

then you wont need the authentication
 
How this can be done?
Back to Top
dj air View Drop Down
Senior Member
Senior Member
Avatar

Joined: 05 April 2002
Location: United Kingdom
Status: Offline
Points: 3627
Post Options Post Options   Thanks (0) Thanks(0)   Quote dj air Quote  Post ReplyReply Direct Link To This Post Posted: 15 May 2005 at 2:21pm
no 1.

to add those items to the code open function_send_mail.asp within the functions folder and look for the case "CDOSYS"

under that there is a configuration section that looks simular the above.

add these lines (below).. to the section

          .Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2

.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mail.YourDomain.com"

.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "you@domain.com"

.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "password"

.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
you can delete the duplicates like the mail server . then add the relavent details.

no 2.
 some hosts (some).. allow this, where it says mail server within the email configuration section of the forum enter localhost

and the other  details as already are. as i said somehosts allow this. but the above 2 ways are doable.. and the top.
Back to Top
runsh View Drop Down
Newbie
Newbie


Joined: 13 May 2005
Location: United States
Status: Offline
Points: 4
Post Options Post Options   Thanks (0) Thanks(0)   Quote runsh Quote  Post ReplyReply Direct Link To This Post Posted: 15 May 2005 at 5:07pm
Originally posted by dj air dj air wrote:

no 1.

add these lines (below).. to the section

          .Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2

.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mail.YourDomain.com"

.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "you@domain.com"

.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "password"

.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
Thanks dj air for your help. I have done that before, didn't work I don't know why but I got it to work 
this time. I have been working on this for last several weeks. 
In case someone has similar problem in addition to above I brought down database, added smtpid and smtppass 
colum to tblconfig in database and upload it to server. that did it.Smile
 
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.