Spam Filter ISP Support Forum

  New Posts New Posts RSS Feed - Registration ASP page not sending password email
  FAQ FAQ  Forum Search   Register Register  Login Login

Registration ASP page not sending password email

 Post Reply Post Reply
Author
LogSat View Drop Down
Admin Group
Admin Group
Avatar

Joined: 25 January 2005
Location: United States
Status: Offline
Points: 4104
Post Options Post Options   Thanks (0) Thanks(0)   Quote LogSat Quote  Post ReplyReply Direct Link To This Post Topic: Registration ASP page not sending password email
    Posted: 13 June 2003 at 12:39am

There is a bug in beta .152 that (again) causes self-registration emails to not be sent. It will be fixed in the next build, in the meantime a simple change in tha ASP code will fix the problem as well. Please make the following addition in red to the Register.asp page:

 rs.AddNew
 rs("EMailFrom") = "System Administrator <>"
 rs("EMailTo") = EMail
 rs("Subject") = "Your quarantine area password"
 rs("MsgID") = MsgID
 rs("MsgDate") = MessageDate
 rs("Expire") = 0
 rs("Deliver") = 1
 rs("RejectDetails") = ""
 rs("RejectID") = 0
 rs("ServerID")=0
 rs.Update
 rs.Close
 Set rs = Nothing
 
 
Also, to manually deliver all emails generated but not sent, issue a query on the tblQuarantine to change all records with "ServerID IS NULL" to "ServerID=0" like so:
 
 
UPDATE    tblQuarantine
SET              ServerID = 0
WHERE     (ServerID IS NULL)
 

Roberto Franceschetti
LogSat Software

Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down



This page was generated in 0.152 seconds.