форум vBSupport.ru > vBulletin > Old vB versions (3.0.x & 2.x.x) > vBulletin 3.6.x > vBulletin [3.6] Troubleshooting and Problems
Register Меню vBsupport Изображения Files Manager О рекламе Today's Posts Search
  • Родная гавань
  • Блок РКН снят
  • Premoderation
  • For English speaking users
  • Каталог Фрилансеров
  • If you want to buy some product or script
  • Администраторам
VBsupport перешел с домена .ORG на родной .RU Ура! Пожалуйста, обновите свои закладки - VBsupport.ru
Блок РКН снят, форум доступен на всей территории России, включая новые терртории, без VPN
На форуме введена премодерация ВСЕХ новых пользователей

Почта с временных сервисов, типа mailinator.com, gawab.com и/или прочих, которые предоставляют временный почтовый ящик без регистрации и/или почтовый ящик для рассылки спама, отслеживается и блокируется, а так же заносится в спам-блок форума, аккаунты удаляются
for English speaking users:
You may be surprised with restriction of access to the attachments of the forum. The reason is the recent change in vbsupport.org strategy:

- users with reputation < 10 belong to "simple_users" users' group
- if your reputation > 10 then administrator (kerk, Luvilla) can decide to move you into an "improved" group, but only manually

Main idea is to increase motivation of community members to share their ideas and willingness to support to each other. You may write an article for the subject where you are good enough, you may answer questions, you may share vbulletin.com/org content with vbsupport.org users, receiving "thanks" equal your reputation points. We should not only consume, we should produce something.

- you may:
* increase your reputation (doing something useful for another members of community) and being improved
* purchase temporary access to the improved category:
10 $ for 3 months. - this group can download attachments, reputation/posts do not matter.
20 $ for 3 months. - this group can download attachments, reputation/posts do not matter + adds eliminated + Inbox capacity increased + files manager increased permissions.

Please contact kerk or Luvilla regarding payments.

Important!:
- if your reputation will become less then 0, you will be moved into "simple_users" users' group automatically.*
*for temporary groups (pre-paid for 3 months) reputation/posts do not matter.
Уважаемые пользователи!

На форуме открыт новый раздел "Каталог фрилансеров"

и отдельный раздел для платных заказов "Куплю/Закажу"

Если вы хотите приобрести какой то скрипт/продукт/хак из каталогов перечисленных ниже:
Каталог модулей/хаков
Ещё раз обращаем Ваше внимание: всё, что Вы скачиваете и устанавливаете на свой форум, Вы устанавливаете исключительно на свой страх и риск.
Сообщество vBSupport'а физически не в состоянии проверять все стили, хаки и нули, выкладываемые пользователями.
Помните: безопасность Вашего проекта - Ваша забота.
Убедительная просьба: при обнаружении уязвимостей или сомнительных кодов обязательно отписывайтесь в теме хака/стиля
Спасибо за понимание
 
 
 
 
Wowa
Простоузер
Default Не отсылает письма - Варианты решения проблемы
0

После установки Joomla, форум перестал отсылать уведомления по е-мэйл. Джумлу не интегрировал. Почту настроил под smtp. И на Джумле и на форуме один и тот же клиент smtp. Раньше отправлось а после установки Джумлы прям ни в какую.
Подскажите пожалуйста, в чем может быть проблема?
Спасибо.

Добавлено через 23 часа 31 минуту
Полазил в поиске нарыл:


Почему не доходят письма до большинства бесплатных почтовых серверов?
Все дело в том, что многие бесплатные почтовые службы не принимают писма напрямую с так называемых "одиночных компьютеров", хотя если отправлять через SMTP-сервер какого нть провайдера - нормально проходят.
Провайдеровские серваки обычно находятся в довереных списках бесплатных почтовых служб, хотя бывают и исключения (чаще для забугорных) ...

СПОСОБ №1 (простой и быстрый)
Ложим в корень сайта/форума файл .htaccess и в нем пишем/добавляем:
php_value SMTP "smtp.provider.ru"

СПОСОБ №2 (если 1-й не работает)
Если у вас не работает .htaccess или PHP стоит не как модуль Апача, то делаем следующее: (проверялось на 3.0.1)
Открываем includes/functions.php
Ищем:
code:
$sendmail_path = @ini_get('sendmail_path');
if ($sendmail_path === '')
{

ВЫШЕ вставляем:
ini_set("SMTP", "smtp.provider.ru");
Сохраняем, заливаем, пробуем.

PS smtp.provider.ru - SMTP-сервер провайдера, к которому подключен хостинг...

Есть еще что-то вроде хака: http://netadmin.ws/forum/showthread....&threadid=9723

Первый вариант не сработал.

Второй тем более т.к. у меня нет ничего подобного в includes/functions.php
У меня там есть только

Code:
	global $vbulletin;

	if (!class_exists('vB_Mail'))
	{
		require_once(DIR . '/includes/class_mail.php');
	}

	if ($vbulletin->options['usemailqueue'] AND !$notsubscription)
	{
		$mail =& vB_QueueMail::fetch_instance();
	}
	else if ($vbulletin->options['use_smtp'])
	{
		$mail =& new vB_SmtpMail($vbulletin);
	}
	else
	{
		$mail =& new vB_Mail($vbulletin);
	}

	$mail->start($toemail, $subject, $message, $from, $uheaders, $username);
	$mail->send();
}


Ещё раскопал:

в includes/functions.php функцию vb_send_mail меняем полностью на то что ниже

Code:
// fStrange hack 
function  vb_send_mail($to,$subject,$message,$additional_hea
ders="",$additional_parameters="") 
{ 
require("smtp/smtp.php"); 

    $from=getenv("USER")."@".getenv("HOSTNAME"); /* Change this to your address like "me@mydomain.com"; */ 
        $from="******@******.ru"; 
        $smtp=new smtp_class; 
     
    $smtp->direct_delivery=0;     /* Set to 1 to deliver directly to the recepient SMTP server */ 
    $smtp->timeout=10;            /* Set to the number of seconds wait for a successful connection to the SMTP server */ 
    $smtp->data_timeout=0;        /* Set to the number seconds wait for sending or retrieving data from the SMTP server. 
                                     Set to 0 to use the same defined in the timeout variable */ 

    $smtp->host="****.****.ru";   /* SMTP server address */ 

     
    $smtp->user = "******"; 
    $smtp->password = "******"; 
    $smtp->pop3_auth_host = "*******"; 
    $smtp->debug=0;            /* Output dialog with SMTP server */         
    $smtp->direct_delivery=0;  /* Deliver directly to the recipients destination SMTP server */ 


    /* 
     * If you need to use the direct delivery mode and this is running under 
     * Windows or any other platform that does not have enabled the MX 
     * resolution function GetMXRR() , you need to include code that emulates 
     * that function so the class knows which SMTP server it should connect 
     * to deliver the message directly to the recipient SMTP server. 
     */ 
    if($smtp->direct_delivery) 
    { 
        if(!function_exists("GetMXRR")) 
        { 
            /* 
            * If possible specify in this array the address of at least on local 
            * DNS that may be queried from your network. 
            */ 
            $_NAMESERVERS=array(); 
            include("getmxrr.php"); 
        } 
        /* 
        * If GetMXRR function is available but it is not functional, to use 
        * the direct delivery mode, you may use a replacement function. 
        */ 
        /* 
        else 
        { 
            $_NAMESERVERS=array(); 
            if(count($_NAMESERVERS)==0) 
                Unset($_NAMESERVERS); 
            include("rrcompat.php"); 
            $smtp->getmxrr="_getmxrr"; 
        } 
        */ 
    } 

    if($smtp->SendMessage( 
        $from, 
        array($to), 
        array("From: $from","To: $to","Subject: $subject","Date: ".strftime("%a, %d %b %Y %H:%M:%S %Z")), 
        $message)) 
        return TRUE; 
    else 
        return FALSE; 
}                                                
// fStrange hack end
$from="****@*****.ru";
$smtp->host="****.****.ru";
$smtp->user = "******";
$smtp->password = "******";
$smtp->pop3_auth_host = "*******";
в этих строчках вписать настройки своего smtp

нужно создать в папке includes каталог smtp
и добавить туда файл smtp.php временно лежит в http://fclan.ru/tmp/smtp.zip стандартный smtp класс скачан с http://phpclasses.segmenta.ru



Но у меня нет в файле includes/functions.php функции vb_send_mail :(


Еще раскапал :

Code:
in includes/mail.php find

     var $smtpHost = "smtp.example.com";
	var $smtpPort = 25;
	var $smtpUser = false;
	var $smtpPass = false;
	var $smtpSocket = null;
    
    Edit to the correct values
    
    Example
    
    var $smtpHost = "smtp.example.com";
	var $smtpPort = 25;
	var $smtpUser = user@domain.com;
	var $smtpPass = password;
	var $smtpSocket = null;
    
save and upload

find in includes/functions.php
     
     if (false) // will eventually use $vboptions to determine this
     
     Change too
     
     if (true) // will eventually use $vboptions to determine this
     
     Send a test email to ensure that it is working.
     
save and upload
Но у меня нет файла mail.php в папке includes

Версия 3.6.8. Как решить проблему? Подскажите пожалуйста.

Только прошу без шуток, если не знаете решения, лучше вообще не пишите. Был в поиске, проблему так и не решили.

Спасибо.

Last edited by Wowa : 04-06-2008 at 04:06 PM. Reason: Добавлено сообщение
Bot
Yandex Bot Yandex Bot is online now
 
Join Date: 05.05.2005
Реклама на форуме А что у нас тут интересного? =)
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off




All times are GMT +4. The time now is 05:30 PM.


Powered by vBulletin® Version VipeR Edition
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.