View | Details | Raw Unified | Return to bug 250806
Collapse All | Expand All

(-)b/mail/Makefile (+1 lines)
Lines 497-502 Link Here
497
    SUBDIR += py-flask-mail
497
    SUBDIR += py-flask-mail
498
    SUBDIR += py-flufl.bounce
498
    SUBDIR += py-flufl.bounce
499
    SUBDIR += py-fuglu
499
    SUBDIR += py-fuglu
500
    SUBDIR += py-imapclient
500
    SUBDIR += py-mail-parser
501
    SUBDIR += py-mail-parser
501
    SUBDIR += py-managesieve3
502
    SUBDIR += py-managesieve3
502
    SUBDIR += py-milter
503
    SUBDIR += py-milter
(-)b/mail/py-imapclient/Makefile (+23 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=	imapclient
4
PORTVERSION=	2.1.0
5
CATEGORIES=	mail python
6
MASTER_SITES=	CHEESESHOP
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
DISTNAME=	IMAPClient-${PORTVERSION}
9
10
MAINTAINER=	meka@tilda.center
11
COMMENT=	Easy to use, Pythonic and complete IMAP client library
12
13
LICENSE=	BSD3CLAUSE
14
LICENSE_FILE=	${WRKSRC}/COPYING
15
16
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
17
18
USES=		python:3.4+ zip
19
USE_PYTHON=	autoplist concurrent distutils
20
21
NO_ARCH=	yes
22
23
.include <bsd.port.mk>
(-)b/mail/py-imapclient/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1604322697
2
SHA256 (IMAPClient-2.1.0.zip) = 60ba79758cc9f13ec910d7a3df9acaaf2bb6c458720d9a02ec33a41352fd1b99
3
SIZE (IMAPClient-2.1.0.zip) = 248423
(-)b/mail/py-imapclient/pkg-descr (+15 lines)
Added Link Here
1
IMAPClient is an easy-to-use, Pythonic and complete IMAP client library.
2
Features
3
 * Arguments and return values are natural Python types.
4
 * IMAP server responses are fully parsed and readily usable.
5
 * IMAP unique message IDs (UIDs) are handled transparently. There is no need
6
   to call different methods to use UIDs.
7
 * Escaping for internationalised mailbox names is transparently handled.
8
   Unicode mailbox names may be passed as input wherever a folder name is
9
   accepted.
10
 * Time zones are transparently handled including when the server and client
11
   are in different zones.
12
 * Convenience methods are provided for commonly used functionality.
13
 * Exceptions are raised when errors occur.
14
15
WWW: https://github.com/mjs/imapclient

Return to bug 250806