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

(-)dma/Makefile (-1 / +1 lines)
Lines 7-13 Link Here
7
7
8
PORTNAME=	dma
8
PORTNAME=	dma
9
PORTVERSION=	20090208
9
PORTVERSION=	20090208
10
PORTREVISION=	1
10
PORTREVISION=	2
11
CATEGORIES=	mail ipv6
11
CATEGORIES=	mail ipv6
12
MASTER_SITES=	http://mirror.roe.ch/dist/dma/
12
MASTER_SITES=	http://mirror.roe.ch/dist/dma/
13
13
(-)dma/files/dma.rb (-1 / +1 lines)
Lines 37-43 Link Here
37
	msg = STDIN.read
37
	msg = STDIN.read
38
	head, cr, body = msg.split(/\n(\r?)\n/, 2)
38
	head, cr, body = msg.split(/\n(\r?)\n/, 2)
39
	head = head + "\n"
39
	head = head + "\n"
40
	tmphead = head.gsub(/\n\s+/m, ' ')
40
	tmphead = head.gsub(/\r?\n\s+/m, ' ')
41
	rcpts = []
41
	rcpts = []
42
	tmphead.gsub(/^(?:to|cc|bcc):\s.*$/i) do |match|
42
	tmphead.gsub(/^(?:to|cc|bcc):\s.*$/i) do |match|
43
		match.sub(/^[^:]+:\s*/, '').split(/\s*[,;]\s*/).each do |addr|
43
		match.sub(/^[^:]+:\s*/, '').split(/\s*[,;]\s*/).each do |addr|
(-)dma/pkg-descr (-1 / +5 lines)
Lines 2-8 Link Here
2
designed for home and office use.  It accepts mails from locally
2
designed for home and office use.  It accepts mails from locally
3
installed Mail User Agents (MUA) and delivers the mails either
3
installed Mail User Agents (MUA) and delivers the mails either
4
locally or to a remote destination.  Remote delivery includes
4
locally or to a remote destination.  Remote delivery includes
5
several features like TLS/SSL support and SMTP authentication.
5
several features like TLS/SSL support and SMTP authentication,
6
but not MX record lookups.  Therefore, dma is currently not
7
suitable for direct remote delivery.  However, it works very
8
well for handling local mail plus secure mail submission to a
9
remote smarthost (e.g. for travelling mobile computers).
6
10
7
Since dma is not intended as a replacement for real, big MTAs
11
Since dma is not intended as a replacement for real, big MTAs
8
like sendmail(8) or postfix(1), it does not listen on port 25
12
like sendmail(8) or postfix(1), it does not listen on port 25

Return to bug 132457