View | Details | Raw Unified | Return to bug 223038 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=		opendkim
4
PORTNAME=		opendkim
5
PORTVERSION=		2.10.3
5
PORTVERSION=		2.10.3
6
PORTREVISION=		7
6
PORTREVISION=		8
7
CATEGORIES=		mail security
7
CATEGORIES=		mail security
8
MASTER_SITES=		SF/${PORTNAME} \
8
MASTER_SITES=		SF/${PORTNAME} \
9
			SF/${PORTNAME}/Previous%20Releases \
9
			SF/${PORTNAME}/Previous%20Releases \
(-)files/milter-opendkim.in (-6 / +8 lines)
Lines 176-187 Link Here
176
176
177
dkim_start_postcmd ()
177
dkim_start_postcmd ()
178
{
178
{
179
    # postcmd is executed too fast and socket is not created before checking...
179
    if [ "x${milteropendkim_socket}" != "x" ]; then
180
    sleep 1
180
        # postcmd is executed too fast and socket is not created before checking...
181
    if [ -S ${milteropendkim_socket##local:} ] ; then
181
        sleep 1
182
        chmod ${_piddir_perms} ${milteropendkim_socket##local:}
182
        if [ -S ${milteropendkim_socket##local:} ] ; then
183
    elif [ -S ${milteropendkim_socket##unix:} ] ; then
183
            chmod ${_piddir_perms} ${milteropendkim_socket##local:}
184
        chmod ${_piddir_perms} ${milteropendkim_socket##unix:}
184
        elif [ -S ${milteropendkim_socket##unix:} ] ; then
185
            chmod ${_piddir_perms} ${milteropendkim_socket##unix:}
186
        fi
185
    fi
187
    fi
186
}
188
}
187
189

Return to bug 223038