Scroll to navigation

IM::Imap(3pm) Internet Message Perl modules IM::Imap(3pm)
 

NAME

IM::Imap - IMAP handler

SYNOPSIS

 use IM::Imap;
 imap_open(auth, host, user, pass)
     return value:
          0: success
         -1: failure
Other subroutines: imap_select imap_head imap_get imap_put imap_delete imap_get_msg imap_spec imap_range2set imap_folder_regname imap_scan_folder imap_open_folders imap_close_folders imap_get_handle imap_get_message imap_put_message imap_put_file imap_refile imap_delete_message

DESCRIPTION

The IM::Imap module handles IMAP.
This modules is provided by IM (Internet Message).

EXAMPLES

  my($rc, $HANDLE) = imap_open($auth, $host, $user, $pass);
  if ($rc < 0) {
      exit 1;
  }
  imap_close($HANDLE);

COPYRIGHT

IM (Internet Message) is copyrighted by IM developing team. You can redistribute it and/or modify it under the modified BSD license. See the copyright file for more details.
2011-05-25 IM151