0.0.2 • Published 11 years ago

imap-message-stream v0.0.2

Weekly downloads
6
License
-
Repository
-
Last release
11 years ago

imap-message-stream

Use with node-imap's ImapMessage. Pipe like a pro.

Install

stable

npm install imap-message-stream

edge

npm install https://github.com/daxxog/imap-message-stream/tarball/master

Example

ImapMessageStream = require('imap-message-stream');
fetch.on('message', function(msg) {
    var ws = fs.createWriteStream('raw.email'),
        ims = ImapMessageStream(msg);
    
    ims.pipe(ws);
});