A captcha-protected version of the classic ContactPage extension.
Go to file
Translation updater bot 0e44049ed5 Localisation updates from http://translatewiki.net.
Change-Id: I993c51bf03eb7a82b4fe535472092e74972f3da7
2013-08-10 19:25:51 +00:00
.gitignore Add .gitignore 2012-05-21 01:32:46 +01:00
.gitreview Adding .gitreview 2012-03-23 10:27:26 -07:00
ContactPage.alias.php Localisation updates from http://translatewiki.net. 2013-04-09 20:29:30 +00:00
ContactPage.i18n.php Localisation updates from http://translatewiki.net. 2013-08-10 19:25:51 +00:00
ContactPage.php (bug 45461) Use email instead of e-mail 2013-02-27 13:25:23 +01:00
ContactPage_body.php Maintenance for ContactPage extension. 2012-08-30 14:43:17 +02:00
README Follow-up r76660: typos per CR 2010-11-14 20:09:33 +00:00
install.settings Remove $wgServerName in extensions, too (follow r73950) 2010-09-29 17:05: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 = $wgPasswordSender;
  $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.

If you are using the ConfirmEdit extension (captchas), you can require
a captcha test for sending contact messages by using the following:

   $wgCaptchaTriggers['contactpage'] = true;

== Customization ==

[[Special:Contact]] calls the default formular.
Pagetext: [[MediaWiki:contactpage-pagetext]]
Subject: prefilled with text from [[MediaWiki:Contactpage-defsubject]] 
E-mail body: empty.

[[Special:Contact/typename]] calls the contact page with a customized pagetext and
prefilled form fields:
Pagetext: [[MediaWiki:contactpage-pagetext-typename]]
Subject: prefilled with text from [[MediaWiki:Contactpage-subject-typename]] 
E-mail body: prefilled with text from [[MediaWiki:Contactpage-text-typename]]

If a customized message does not exist the default message is shown.