a. Corelan respects your privacy. Most information accessible on or via the
Corelan Website is available without the need to provide personal information.
In certain cases you may however be requested to submit personal information. In
such case your personal information shall be treated in accordance with the General Data Protection Regulation and any amendments hereof.
b. All personal information made available by you will be treated solely for
the purpose of making available to you the requested information or services.
Your personal information will not be shared with third parties, but it may be used for authentication, support & marketing purposes in relation with services provided by Corelan.
c. We will only keep your personal information for as long as is required to
provide you with the requested information or services, or for any longer period
as may legally be required.
d. It is our goal to reasonably protect the personal information made
available by you from third parties.
e. You have the right to consult, correct, adjust or have removed your
personal details by written request to Corelan. If you decide to get your information removed, you understand and accept that you will lose all access to any resources that require the use of these personal details, such as parts of the website that require authentication.
f. When using the Corelan Website, cookies may possible be used. You do not have to accept cookies to be able to use the publicly accessible parts of Corelan Websites. If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.
When you log in, we will also set up several cookies to save your login information and your screen display choices. Cookies may be used to display advertisements or to collect statistics about the use of the Corelan website.
g. This privacy policy may be amended by Corelan at any time.
Sharepoint WSS 3.0 Alerts don’t work
After migrating this blog from my old 2008 RC1 server to a new 2008 RTM server, I noticed that my Sharepoint alerts stopped working. I was still getting an email message when I created a new alert definition, but when an alert should have been triggered, I was not getting an email.
Conclusion : the mail server setup works fine, no issues with antivirus products. So it must have been something else.
This is a high-level overview of what I’ve done to fix the issue
First, make sure the account that is used to run the "Windows Sharepoint Services Timer" Service has access to the content database(s) of your Sharepoint site(s).
Next, determine the url of your Sharepoint site. In my case, this is https://petersblog.dyndns.org:8899 (you’ll need the URL in the commands below)
Run the following commands : (The first 2 will show you whether alerts are enabled, the last 3 will first disable alerts, enable the timer, and enable alerts again)
stsadm -o getproperty -propertyname alerts-enabled -url https://petersblog.dyndns.org:8899
stsadm -o getproperty -propertyname job-immediate-alerts -url https://petersblog.dyndns.org:8899
stsadm -o setproperty -propertyname alerts-enabled -propertyvalue false -url https://petersblog.dyndns.org:8899
stsadm -o setproperty -propertyname job-immediate-alerts -url https://petersblog.dyndns.org:8899 -propertyvalue "every 5 minutes between 0 and 59"
stsadm -o setproperty -propertyname alerts-enabled -propertyvalue true -url https://petersblog.dyndns.org:8899
Usually, stsadm is located under C:\Program Files\Common Files\microsoft shared\Web Server Extensions\12\BIN
After running the two first command again (with the getproperty parameter), I’m now getting
C:\Program Files\Common Files\microsoft shared\Web Server Extensions\12\BIN>stsadm -o getproperty -propertyname alerts-enabled -url https://petersblog.dyndns.org:8899
C:\Program Files\Common Files\microsoft shared\Web Server Extensions\12\BIN>stsadm -o getproperty -propertyname job-immediate-alerts -url https://petersblog.dyndns.org:8899
Now restart the "Windows Sharepoint Services Timer" service. After a couple of minutes, the alerts started to flow again.
© 2008, Peter Van Eeckhoutte (corelanc0d3r). All rights reserved.
Similar/Related posts: