суббота, 9 марта 2013 г.
postfix и как прятать айпи отправителя
В main.cf:
smtp_header_checks = pcre:/etc/postfix/smtp_header_checks
В dynamicmaps.cf:
pcre /usr/lib/postfix/dict_pcre.so dict_pcre_open
Обычно данная строка есть если установлен пакет postfix-pcre
В /etc/postfix/smtp_header_checks:
/^Received: .*/ IGNORE
/^X-Originating-IP:/ IGNORE
потом
# /etc/init.d/postfix reload
php функция mail (отправляет почту через локальный почтовик)
сам пхп файлик
$tables = file_get_contents('/home/chr/public_html/tech/table_dump.php');
//echo $tables;
$headers = "From: admin@chr.com \r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1 ";
$headers .= "MIME-Version: 1.0 ";
mail("mobile@chr.com", "Tech for Today", $tables, $headers);
mail("tuser@icl.com", "Tech for Today", $tables, $headers);
?>
задача в кроне
php -q /home/chr/public_html/tech/email.php
$tables = file_get_contents('/home/chr/public_html/tech/table_dump.php');
//echo $tables;
$headers = "From: admin@chr.com \r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1 ";
$headers .= "MIME-Version: 1.0 ";
mail("mobile@chr.com", "Tech for Today", $tables, $headers);
mail("tuser@icl.com", "Tech for Today", $tables, $headers);
?>
задача в кроне
php -q /home/chr/public_html/tech/email.php
Подписаться на:
Сообщения (Atom)