QUOTE(TCH-David @ May 30 2005, 05:10 PM)
EmailVerificationSecret is a setting in your mt.cfg file:
QUOTE
EmailVerificationSecret
If you are exposing the mt-add-notify.cgi interface to users, allowing them to sign up for site update notifications, you should set this value to something that outsiders would not be able to guess. This allows Movable Type to secure the notification signup process so that visitors have to verify their email addresses.
If the EmailVerificationSecret is not present in your mt.cfg file, you just need to add it (it can be added anywhere - I'd add it to the bottom of the file). If it is present, make sure it is uncommented (does not have a "#" at the beginning of the line).
You'd configure the setting like this:
CODE
EmailVerificationSecret secretWord
...with whatever secret word you want to use.
Me again. I have another question. I seem to have it working. But when I click on the link that is sent in the verification email I get a "Page Cannot Be Displayed" message.
Here's the link in the email ...
http://moonjuice.us/mt//mt-add-notify.cgi?...ww.moonjuice.usCould I possibly have some of the code wrong in the redirect line?
This is how I have it ...
CODE
<form method="post" action="<$MTCGIPath$>mt-add-notify.cgi">
<input type="hidden" name="blog_id" value="<$MTBlogID$>" />
<input type="hidden" name="_redirect" value="<$MTBlogURL$>http://www.moonjuice.us" />
<input name="email" size="20" />
<input type="submit" value="add" />
</form>