1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Fix a bug where non-RFC 2822 compliant mails were generated when a

non-US locale was in use.

PR:		50028
Submitted by:	maintainer
This commit is contained in:
Pete Fritchman 2003-03-27 03:49:51 +00:00
parent 30367412d8
commit 7ba8228af8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=77514
2 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,7 @@
PORTNAME= amavisd-new
PORTVERSION= 20021227.p2
PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= http://www.ijs.si/software/amavisd/
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.p/-p/}

View File

@ -18,6 +18,9 @@ start)
if [ -e $MILTERFLAG ]; then
su %%AMAVISUSER%% -c "${PREFIX}/sbin/amavis-milter -D -p $DIR/amavis-milter.sock"
fi
export LANG="C"
export LC_ALL="C"
export LC_TIME="C"
su %%AMAVISUSER%% -c "${PREFIX}/sbin/amavisd -c ${CONFIGFILE} > /dev/null 2>&1" && echo -n ' amavisd'
fi
;;