Print Page | Close Window

Registration ASP page not sending password email

Printed From: LogSat Software
Category: Spam Filter ISP
Forum Name: Spam Filter ISP Support
Forum Description: General support for Spam Filter ISP
URL: https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=939
Printed Date: 27 December 2024 at 5:50am


Topic: Registration ASP page not sending password email
Posted By: LogSat
Subject: Registration ASP page not sending password email
Date 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




Print Page | Close Window