A captcha-protected version of the classic ContactPage extension.
Go to file
Raimond Spekking 0b87dfd6f1 * (bug 8536) Update Slovak extension translations
Patch by helix84
2007-04-02 09:16:38 +00:00
ContactPage.i18n.de.php include sender name in mail subject 2007-02-16 22:20:14 +00:00
ContactPage.i18n.fr.php * (bug 9039) Update French messages 2007-02-20 14:30:06 +00:00
ContactPage.i18n.it.php Finish last commit, didn't commit ContactPage i18n 2007-03-11 00:42:08 +00:00
ContactPage.i18n.php include sender name in mail subject 2007-02-16 22:20:14 +00:00
ContactPage.i18n.sk.php * (bug 8536) Update Slovak extension translations 2007-04-02 09:16:38 +00:00
ContactPage.php updated readme & documentation links 2007-02-15 15:35:27 +00:00
README updated readme & documentation links 2007-02-15 15:35:27 +00:00
SpecialContact.php include sender name in mail subject 2007-02-16 22:20:14 +00:00
install.settings mail contact page for anon visitors 2007-02-12 21:50:29 +00:00

README

--------------------------------------------------------------------------
README for the ContactPage extension
Copyright © 2006 Daniel Kinzler
Licenses: GNU General Public Licence (GPL)
          GNU Free Documentation License (GFDL)
--------------------------------------------------------------------------

The ContactPage extension implements a contact form for visitors. It 
creates a special page Special:Contact, which is similar to
Special:Emailuser, but it has a fixed recipient, and can be used
anonymously.

<http://mediawiki.org/wiki/Extension:ContactPage>

The ContactPage extension was originally written by Daniel Kinzler in 2007
and is released under the GNU General Public Licence (GPL). It is based on
the code in SpecialEmailuser.php in the MediaWiki core.
The internationalization files contain contributions by several people;
they are mentioned in each file individually.


== Installing ==

Copy the ContactPage directory into the extensions folder of your 
MediaWiki installation. Then add the following lines to your
LocalSettings.php file (near the end):

  require_once( "$IP/extensions/ContactPage/ContactPage.php" );

  $wgContactUser = 'WikiAdmin';
  $wgContactSender = 'apache@' . $wgServerName;
  $wgContactSenderName = 'Contact Form on ' . $wgSitename;


== Configuration ==

$wgContactUser must be the name of a registered wiki user, who has 
supplied an email address, has user-to-user email enabled, and has
confirmed his/her email address if that is required on this wiki
(see $wgEmailAuthentication).

$wgContactSender must be the email address used as the sender of the
contact email. Depending on the setup of your web host, this may have to
be an existing mail account.

$wgContactSenderName is the name associated with the contact sender.
This will be shown in the recipient's email program.