Страница 1 из 1

Постфикс - отправка почты

Добавлено: 2008-02-02 6:43:20
imagnitsky
Добрый день!

У меня собран постфикс, по статье Lissyara, все работает как часы, но!
При отправке почты через Squirrel mail, заметил. что почта не остается в "Отправленных сообщениях"
Полез в /var/spool/mail , прошелся там по директориям - действительно, отправленная почта не сохраняется.

Не подскажете ли, в каком направлении копать?
Заранее признателен,
И.С. Магницкий

P.S. прошелся по настройкам Squirrel mail, в некоторых почтах встречается опция "Не сохранять выходные сообщения", но там ничего подобного не было.
Пожалуйста, помогите.

Re: Постфикс - отправка почты

Добавлено: 2008-02-02 14:29:29
Fastman
у меня в конфиге вот такое есть:
config.php

Код: Выделить всё

/**
 * The following are related to deleting messages.
 *   $default_move_to_trash
 *      If this is set to 'true', when 'delete' is pressed, it
 *      will attempt to move the selected messages to the folder
 *      named $trash_folder. If it's set to 'false', we won't even
 *      attempt to move the messages, just delete them.
 *   $default_move_to_sent
 *      If this is set to 'true', sent messages will be stored in
 *      $sent_folder by default.
 *   $default_save_as_draft
 *      If this is set to 'true', users are able to use $draft_folder
 *      to store their unfinished messages.
 *   $trash_folder
 *      This is the path to the default trash folder. For Cyrus
 *      IMAP, it would be 'INBOX.Trash', but for UW it would be
 *      'Trash'. We need the full path name here.
 *   $draft_folder
 *      This is the patch to where Draft messages will be stored.
 *   $auto_expunge
 *      If this is true, when a message is moved or copied, the
 *      source mailbox will get expunged, removing all messages
 *      marked 'Deleted'.
 *   $sent_folder
 *      This is the path to where Sent messages will be stored.
 *   $delete_folder
 *      If this is true, when a folder is deleted then it will
 *      not get moved into the Trash folder.
 * @global bool $default_move_to_trash
 * @global bool $default_move_to_sent
 * @global bool $default_save_as_draft
 * @global string $trash_folder
 * @global string $sent_folder
 * @global string $draft_folder
 * @global bool $auto_expunge
 * @global bool $delete_folder
 */
$default_move_to_trash = true;
$default_move_to_sent  = true;
$default_save_as_draft = true;
$trash_folder = 'INBOX.Trash';
$sent_folder  = 'INBOX.Sent';
$draft_folder = 'INBOX.Drafts';
$auto_expunge = false;
$delete_folder = false;
может поможет. у меня все работает.