Skip to content

Mail::IMAPClient is a Perl module that provides an interface for communicating with an IMAP server as an IMAP client.

Notifications You must be signed in to change notification settings

plobbes/mail-imapclient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mail::IMAPClient
================
Mail::IMAPClient is a Perl module that provides an interface for
communicating with an IMAP server as an IMAP client.

DEPENDENCIES
============
The following are the minimum requirements for using Mail::IMAPClient:

- Perl 5.8
    https://www.perl.org/
- Perl modules from CPAN:
    https://metacpan.org/
      Required:
        List::Util
        MIME::Base64
        Parse::RecDescent
      Optional:
        Authen::NTLM
        Authen::SASL
        Compress::Zlib
        Digest::HMAC_MD5
        Digest::MD5
        IO::Socket::SSL
- RFC 3501 (IMAP4REV1) compatible IMAP server
    https://tools.ietf.org/html/rfc3501
- Mail::IMAPClient (this package)

INSTALLATION
============
1. Download Mail::IMAPClient module
    https://metacpan.org/release/Mail-IMAPClient

2. Read this README

3. This module has a number of dependencies on other Perl modules
   available from CPAN.  If any modules are missing, appropriate
   warnings will be generated in the following step.

4. Prepare to build this module and install any prerequisite modules:

    perl Makefile.PL

5. (OPTIONAL) For extended tests during 'make test', create a file
   'test.txt' in the top level directory of this distribution (the
   same directory as the Makefile.PL, etc.).  This file must contain
   an IMAP server name or IP (server=...), a user account (user=...),
   and password a (passed=...).  A port (port=....) and an
   authentication mechanism to be used (authmechanism=...) can also be
   specified.

Example:

--- BEGIN: test.txt ---
server=localhost
user=mytestuser
passed=mypassword
port=143
--- END: test.txt ---

   NOTE: When testing is completed, be sure to remove test.txt (either
   by hand or by 'make clean').

6. Build, test and install this module:

    make
    make test
    (sudo) make install

7. Read the documentation to become familiar with this module.

Project Links
=============
- Bugs/tickets:
    https://github.com/plobbes/mail-imapclient/issues
- Source code repository (git):
    https://github.com/plobbes/mail-imapclient/
    https://sourceforge.net/p/mail-imapclient/git/
- CPAN releases:
    https://metacpan.org/release/Mail-IMAPClient

TESTING
=======
Ubuntu under WSL 2.0

$ sudo apt install dovecot-imapd  # imap server
$ sudo adduser imaptest           # test user
# dependencies
$ sudo apt install make libio-socket-ssl-perl libtest-pod-perl libparse-recdescent-perl
$ sudo /etc/init.d/rsyslog start
$ sudo /etc/init.d/dovecot start

COPYRIGHT AND LICENSE
=====================
Copyright (C) 1999-2003 The Kernen Group, Inc.
Copyright (C) 2007-2009 Mark Overmeer
Copyright (C) 2010-2021 Phil Pearl (Lobbes)
All rights reserved.

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.0 or,
at your option, any later version of Perl 5 you may have available.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See either the
GNU General Public License or the Artistic License for more details.

About

Mail::IMAPClient is a Perl module that provides an interface for communicating with an IMAP server as an IMAP client.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages