• Regolamento Macrocategoria DEV
    Prima di aprire un topic nella Macrocategoria DEV, è bene leggerne il suo regolamento. Sei un'azienda o un hosting/provider? Qui sono anche contenute informazioni per collaborare con Sciax2 ed ottenere l'accredito nella nostra community!

Problema risolto Problema e-mail mybb!

XxLorexX

Nuovo utente
Autore del topic
31 Dicembre 2008
45
0
Miglior risposta
0
So che altervista a il solito bug delle mail di conferma registrazione, ma non ho trovato la discussione dove spiega come sistemarlo.
Mi potete aiutare?
grazie in anticipo :ciao:

Ps: mi spiegate come usare, editare, e mettere come home page il file portal.php
 
Ultima modifica:
Intendi le e-mail per la registrazione al forum?

Per portal.php è 1 casino perchè devi modifcare tutti i collegamenti...

Comunque basta che fai 1 redirect automatico in index.html a portal.php
 
si le e-mail di conferma registrazione. se trovi una guida per portal.php postala pls
 
Ciao per far funzionare le email devi modificare il il php.php che si trova nella cartella inc/mailhandlers/php.php, il codice è il seguente:
<?php
/**
* MyBB 1.4
* Copyright © 2008 MyBB Group, All Rights Reserved
*
* Website:
Perfavore, Entra oppure Registrati per vedere i Link!

* License:
Perfavore, Entra oppure Registrati per vedere i Link!

*
* $Id: php.php 4181 2008-09-07 17:19:49Z Tikitiki $
*/
// Disallow direct access to this file for security reasons
if(!defined("IN_MYBB"))
{
die("Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined.");
}
/**
* PHP mail handler class.
*/
class PhpMail extends MailHandler
{
/**
* Additional parameters to pass to PHPs mail() function.
*
* @var string
*/
var $additional_parameters = '';
/**
* Sends the email.
*
* @return true/false whether or not the email got sent or not.
*/
function send()
{
global $lang, $mybb;
// For some reason sendmail/qmail doesn't like \r\n
$this->sendmail = @ini_get('sendmail_path');
if($this->sendmail)
{
$this->headers = str_replace("\r\n", "\n", $this->headers);
$this->message = str_replace("\r\n", "\n", $this->message);
$this->delimiter = "\n";
}

// Some mail providers ignore email's with incorrect return-to path's so try and fix that here
$this->sendmail_from = @ini_get('sendmail_from');
if($this->sendmail_from != $mybb->settings['adminemail'])
{
@ini_set("sendmail_from", $mybb->settings['adminemail']);
}
// If safe mode is on, don't send the additional parameters as we're not allowed to
if(ini_get('safe_mode') == 1 || strtolower(ini_get('safe_mode')) == 'on')
{
$sent = @mail($this->to, $this->subject, $this->message, trim($this->headers));
}
else
{
$sent = mail($this->to, $this->subject, $this->message, trim($this->headers));
}
$function_used = 'mail()';
if(!$sent)
{
$this->fatal_error("MyBB was unable to send the email using the PHP {$function_used} function.");
return false;
}
return true;
}
}
?>

Il codice lo ho modificato io ed a me parte perfettamente con la versione 1.4.5 Ciao e fammi sapere.