* [Comm] postfix, удаление письма
@ 2004-05-12 7:56 Дворников Михаил
2004-05-12 8:04 ` Vladimir V. Kamarzin
0 siblings, 1 reply; 6+ messages in thread
From: Дворников Михаил @ 2004-05-12 7:56 UTC (permalink / raw)
To: community
Показать письма в очереди: mailq
Как удалить письмо из очереди ?
Смотрел в /var/spool/postfix ... и не понял :)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Comm] postfix, удаление письма
2004-05-12 7:56 [Comm] postfix, удаление письма Дворников Михаил
@ 2004-05-12 8:04 ` Vladimir V. Kamarzin
2004-05-12 8:22 ` Дворников Михаил
0 siblings, 1 reply; 6+ messages in thread
From: Vladimir V. Kamarzin @ 2004-05-12 8:04 UTC (permalink / raw)
To: community
Приветствую, Дворников Михаил!
Wed, 12 May 2004 11:56:37 +0400 вы писали:
> Показать письма в очереди: mailq
> Как удалить письмо из очереди ?
> Смотрел в /var/spool/postfix ... и не понял :)
http://www.opennet.ru/tips/sml/26.shtml ;]
Как удалить письмо из очереди Postfix [обсудить]
postsuper -d <id> deferred (-d ALL - удалить все сообщения из очереди)
Для удаления группы писем от определенного адресата, можно использовать:
mailq|grep 'test@test.ru'|awk '{print $1}'|xargs -J{} -n1 postsuper -d {} deferred
Подойдёт?
--
WBR, Vladimir V. Kamarzin, 2:5077/16.35
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Comm] postfix, удаление письма
2004-05-12 8:04 ` Vladimir V. Kamarzin
@ 2004-05-12 8:22 ` Дворников Михаил
2004-05-12 8:25 ` Leonid B. Sysoletin
2004-05-12 9:05 ` [Comm] postfix , " Nizamov Shavkat
0 siblings, 2 replies; 6+ messages in thread
From: Дворников Михаил @ 2004-05-12 8:22 UTC (permalink / raw)
To: community
Vladimir V. Kamarzin wrote:
>Приветствую, Дворников Михаил!
>Wed, 12 May 2004 11:56:37 +0400 вы писали:
>
>
>
>>Показать письма в очереди: mailq
>>Как удалить письмо из очереди ?
>>Смотрел в /var/spool/postfix ... и не понял :)
>>
>>
>
>http://www.opennet.ru/tips/sml/26.shtml ;]
>
>
>Как удалить письмо из очереди Postfix [обсудить]
>
>
>postsuper -d <id> deferred (-d ALL - удалить все сообщения из очереди)
>Для удаления группы писем от определенного адресата, можно использовать:
> mailq|grep 'test@test.ru'|awk '{print $1}'|xargs -J{} -n1 postsuper -d {} deferred
>
>Подойдёт?
>
Не подойдет.
postuser нет команды.
xargs -J - "invalid option -- J"
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Comm] postfix, удаление письма
2004-05-12 8:22 ` Дворников Михаил
@ 2004-05-12 8:25 ` Leonid B. Sysoletin
2004-05-12 8:37 ` Дворников Михаил
2004-05-12 9:05 ` [Comm] postfix , " Nizamov Shavkat
1 sibling, 1 reply; 6+ messages in thread
From: Leonid B. Sysoletin @ 2004-05-12 8:25 UTC (permalink / raw)
To: community
12 Май 2004 12:22, Дворников Михаил написал:
> Vladimir V. Kamarzin wrote:
> >>Как удалить письмо из очереди ?
> >postsuper -d <id> deferred (-d ALL - удалить все сообщения из очереди)
> >Для удаления группы писем от определенного адресата, можно использовать:
> > mailq|grep 'test@test.ru'|awk '{print $1}'|xargs -J{} -n1 postsuper -d
> > {} deferred
> >
> >Подойдёт?
>
> Не подойдет.
> postuser нет команды.
> xargs -J - "invalid option -- J"
post_super_
[root@antarctida root]# rpm -qf `which postsuper`
postfix-2.0.20-alt1
--
Л. Сысолетин,
webmaster@bdo.ru
[Team Ёжики-рулез!] [Team Котёнки на солярке] [Team Берегите букву "ё"!]
[Team Я люблю свою фортунку] [Team Фортунка в переписку не вступает]
Думая о бурной жизни личной,
трогаю былое взглядом праздным;
все, кого любил я, так различны,
что, наверно, сам бывал я разным.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Comm] postfix , удаление письма
2004-05-12 8:22 ` Дворников Михаил
2004-05-12 8:25 ` Leonid B. Sysoletin
@ 2004-05-12 9:05 ` Nizamov Shavkat
1 sibling, 0 replies; 6+ messages in thread
From: Nizamov Shavkat @ 2004-05-12 9:05 UTC (permalink / raw)
To: community
>>postsuper -d <id> deferred (-d ALL - удалить все сообщения из очереди)
>>Для удаления группы писем от определенного адресата, можно использовать:
>> mailq|grep 'test@test.ru'|awk '{print $1}'|xargs -J{} -n1 postsuper -d
>> {} deferred
>>
>>Подойдёт?
>>
> Не подойдет.
> postuser нет команды.
> xargs -J - "invalid option -- J"
еще раз внимательно читаем
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2004-05-12 9:05 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-05-12 7:56 [Comm] postfix, удаление письма Дворников Михаил
2004-05-12 8:04 ` Vladimir V. Kamarzin
2004-05-12 8:22 ` Дворников Михаил
2004-05-12 8:25 ` Leonid B. Sysoletin
2004-05-12 8:37 ` Дворников Михаил
2004-05-12 9:05 ` [Comm] postfix , " Nizamov Shavkat
ALT Linux Community general discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
public-inbox-index community
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.community
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git