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

(-)b/mail/Makefile (+1 lines)
Lines 499-504 Link Here
499
    SUBDIR += py-fuglu
499
    SUBDIR += py-fuglu
500
    SUBDIR += py-imapclient
500
    SUBDIR += py-imapclient
501
    SUBDIR += py-mail-parser
501
    SUBDIR += py-mail-parser
502
    SUBDIR += py-mail-suite
502
    SUBDIR += py-managesieve3
503
    SUBDIR += py-managesieve3
503
    SUBDIR += py-milter
504
    SUBDIR += py-milter
504
    SUBDIR += py-notmuch
505
    SUBDIR += py-notmuch
(-)b/mail/py-mailsuite/Makefile (+26 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=	mailsuite
4
PORTVERSION=	1.6.0
5
CATEGORIES=	mail python
6
MASTER_SITES=	CHEESESHOP
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
9
MAINTAINER=	meka@tilda.center
10
COMMENT=	Python package to simplify receiving, parsing, and sending email
11
12
LICENSE=	APACHE20
13
#LICENSE_FILE=	${WRKSRC}/LICENSE
14
15
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>=1.13.0:devel/py-six@${PY_FLAVOR} \
16
		${PYTHON_PKGNAMEPREFIX}imapclient>=2.1.0:mail/py-imapclient@${PY_FLAVOR} \
17
		${PYTHON_PKGNAMEPREFIX}mail-parser>=3.11.0:mail/py-mail-parser@${PY_FLAVOR} \
18
		${PYTHON_PKGNAMEPREFIX}dnspython>=1.16.0:dns/py-dnspython@${PY_FLAVOR} \
19
		${PYTHON_PKGNAMEPREFIX}html2text>=2020.1.16:textproc/py-html2text@${PY_FLAVOR}
20
21
USES=		python:3.4+
22
USE_PYTHON=	autoplist concurrent distutils
23
24
NO_ARCH=	yes
25
26
.include <bsd.port.mk>
(-)b/mail/py-mailsuite/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1604324319
2
SHA256 (mailsuite-1.6.0.tar.gz) = 8dd58bc131dd66294fa8d4bf39ac676c88017afef958f1c5ac74c797135c228b
3
SIZE (mailsuite-1.6.0.tar.gz) = 10641
(-)b/mail/py-mailsuite/pkg-descr (+20 lines)
Added Link Here
1
A Python package to simplify receiving, parsing, and sending email
2
Features
3
 * Receive emails via IMAP
4
   * Retrieve email from any folder
5
   * Create new folders
6
   * Move messages to other folders
7
   * Delete messages
8
   * Monitor folders for new messages using the IMAP IDLE command
9
   * Always use / as the folder hierarchy separator, and convert to the server's hierarchy separator in the background
10
   * Always remove folder name characters that conflict with the server's hierarchy separators
11
   * Prepend the namespace to the folder path when required
12
   * Automatically reconnect when needed
13
   * Work around quirks in Gmail/G-suite, Office 365, Exchange, Dovcot, and DavMail
14
 * Consistent email parsing
15
   * SHA256 hashes of attachments
16
 * Simplified email sending via SMTP
17
   * Uses opportunistic encryption (STARTTLS) by default
18
   * Easily add attachments, plain text, and HTML
19
20
WWW: https://github.com/seanthegeek/mailsuite

Return to bug 250808