A captcha-protected version of the classic ContactPage extension.
Go to file
Translation updater bot fbefd042b3 Localisation updates from https://translatewiki.net.
Change-Id: Ie4b991571f278b3b0f0a84b46e66dbc03e900008
2014-02-19 20:03:42 +00:00
.gitignore Add .gitignore 2012-05-21 01:32:46 +01:00
.gitreview Adding .gitreview 2012-03-23 10:27:26 -07:00
COPYING Update README 2014-01-29 03:45:20 +00:00
ContactPage.alias.php Localisation updates from https://translatewiki.net. 2014-02-19 20:03:42 +00:00
ContactPage.i18n.php Localisation updates from https://translatewiki.net. 2014-02-14 20:18:37 +00:00
ContactPage.php Handle $wgEnableEmail = false better 2014-01-29 03:31:19 +00:00
ContactPage_body.php Use real name if set, else use username 2014-01-29 21:13:38 +00:00
README Update README 2014-01-29 03:45:20 +00:00

README

--------------------------------------------------------------------------
README for the ContactPage extension
Copyright © 2006-2014 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.

<https://www.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'; // User on the wiki
  $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.