Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

smew(1) [debian man page]

SMEW(1) 						      General Commands Manual							   SMEW(1)

NAME
smew - search related messages from Mew's database file SYNOPSIS
smew myid [mydb [mydir]] DESCRIPTION
The smew utility searches related messages from a Message-ID database file with SQLite 3 for Mew. myid is a Message-ID of the message to search. mydb is a database file name. (default: "~/Mail/id.db") mydir is a directory part of the message in the database. Note that messages are contained as a relative path from "~/Mail". If multiple messages are found by myid , the first found one is preferred. However, the message whose directory is mydir is preferred to the first one. The options are as follows: -c Search a parent message only. -p Search a child message only. February 17, 2008 SMEW(1)

Check Out this Related Man Page

Mail::Message::Construct::Bounce(3pm)			User Contributed Perl Documentation		     Mail::Message::Construct::Bounce(3pm)

NAME
Mail::Message::Construct::Bounce - bounce a Mail::Message SYNOPSIS
$message->bounce(To => 'you')->send; DESCRIPTION
Complex functionality on Mail::Message objects is implemented in different files which are autoloaded. This file implements the functionality related to bouncing messages off to other destinations. METHODS
Constructing a message $obj->bounce([RG-OBJECT|OPTIONS]) The program calling this method considers itself as an intermediate step in the message delivery process; it therefore leaves a resent group of header fields as trace. When a message is received, the Mail Transfer Agent (MTA) adds a "Received" field to the header. As OPTIONS, you may specify lines which are added to the resent group of that received field. "Resent-*" is prepended before the field-names automatically, unless already present. You may also specify an instantiated Mail::Message::Head::ResentGroup (RG) object. See Mail::Message::Head::ResentGroup::new() for the available options. This is required if you want to add a new resent group: create a new "Received" line in the header as well. If you are planning to change the body of a bounce message, don't! Bounced messages have the same message-id as the original message, and therefore should have the same content (message-ids are universally unique). If you still insist, use Mail::Message::body(). example: my $bounce = $folder->message(3)->bounce(To => 'you', Bcc => 'everyone'); $bounce->send; $outbox->addMessage($bounce); my $rg = Mail::Message::Head::ResentGroup->new(To => 'you', Received => 'from ... by ...'); $msg->bounce($rg)->send; DIAGNOSTICS
Error: Method bounce requires To, Cc, or Bcc The message bounce() method forwards a received message off to someone else without modification; you must specified it's new destination. If you have the urge not to specify any destination, you probably are looking for reply(). When you wish to modify the content, use forward(). SEE ALSO
This module is part of Mail-Box distribution version 2.105, built on May 07, 2012. Website: http://perl.overmeer.net/mailbox/ LICENSE
Copyrights 2001-2012 by [Mark Overmeer]. For other contributors see ChangeLog. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://www.perl.com/perl/misc/Artistic.html perl v5.14.2 2012-05-07 Mail::Message::Construct::Bounce(3pm)
Man Page