GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Sisimai::Mail::STDIN(3) User Contributed Perl Documentation Sisimai::Mail::STDIN(3)

Sisimai::Mail::STDIN - Mailbox reader

    use Sisimai::Mail::STDIN;
    my $mailbox = Sisimai::Mail::STDIN->new();
    while( my $r = $mailbox->read ) {
        print $r;   # print data read from STDIN
    }

"Sisimai::Mail::STDIN" read email data from Standard-In

new() method is a constructor of "Sisimai::Mail::STDIN"

    my $mailbox = Sisimai::Mail::STDIN->new();

path() metehod returns a fixed string ""<STDIN"">

    print $mailbox->path;   # "<STDIN>"

size() method returns the data size which has been read

    print $mailbox->size;   # 2202

offset() method returns the offset position for seeking the mbox. The value of "offset" is a bytes which have already read.

    print $mailbox->offset;   # 0

handle() method returns file handle object "IO::Handle" of the mbox.

    $mailbox->handle;

read() method works as an iterator for reading each email in the mbox.

    my $mailbox = Sisimai::Mail->new();
    while( my $r = $mailbox->read ) {
        print $r;   # print data read from STDIN
    }

azumakuniyuki

Copyright (C) 2014-2016,2018-2021,2024 azumakuniyuki, All rights reserved.

This software is distributed under The BSD 2-Clause License.

2025-03-28 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.