Topic on Extension talk:ContactPage

Wikimanz (talkcontribs)

Hi there, I have installed the extension as requested and even used the latest version from Git. I have 1.23 mediawiki and have included a proper user with email communcation enabled. However, I just do not get emails even though everything is successfully sent with no errors displayed. I dont know what could be the problem. Could you give me some pointers.

MediaWiki 1.23.1
PHP 5.3.10-1ubuntu3.14 (apache2handler)
MySQL 5.5.38-0ubuntu0.12.04.1
ContactPage 2.2


require_once "$IP/extensions/ContactPage/ContactPage.php";
$wgContactConfig['default'] = array(
'RecipientUser' => 'WikiUserOwn', // Must be the name of a valid account
'SenderName' => 'Contact Form on ' . $wgSitename, // "Contact Form on" needs to be localised
'SenderEmail' => 'user@email.com',
'RequireDetails' => true,
'AdditionalFields' => array(
'Text' => array(
'label-message' => 'message',
'type' => 'textarea',
'rows' => 10,
'cols' => 80,
'required' => true,
),
),
);

$wgCaptchaTriggers['contactpage'] = true;
$wgContactUser = 'WikiUserOwn';

I have tried commenting out $wgCaptchaTriggers and $wgContactUser but with no fix.
Thanks

Kghbln (talkcontribs)

The configuration looks allrighty to me, except for the $wgContactUser which is no longer a valid configuration parameter with the latest version. However this should not be the hold-up for the e-mail to be sent. User "WikiUserOwn" provided a valid e-mail in it's personal preferences? Another thing will perhaps be to look a the log of the mail system you are using on your server. Once it happened to me that the sendmail software itself was messed up and had to be dealt with. Also have a look at your servers regular error log. Perhaps there is something to see, too.

Reply to "No email sending"