Skip site navigation (1)Skip section navigation (2)
Date:      Sat,  5 Jul 2003 13:33:28 +0200 (CEST)
From:      Matthias Andree <matthias.andree@web.de>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/54124: new port: mail/cone 
Message-ID:  <20030705113328.B7A721B203@merlin.emma.line.org>
Resent-Message-ID: <200307051140.h65BeAfZ097862@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         54124
>Category:       ports
>Synopsis:       new port: mail/cone
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jul 05 04:40:09 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     Matthias Andree
>Release:        FreeBSD 5.1-CURRENT i386
>Organization:
>Environment:
System: FreeBSD merlin.emma.line.org 5.1-CURRENT FreeBSD 5.1-CURRENT #2: Mon Jun 30 21:42:12 CEST 2003 toor@merlin.emma.line.org:/usr/src/sys/i386/compile/MA5 i386


	
>Description:
This shar adds the "mail/cone" port. Cone is a curses-based mailer and
newsreader that supports local mbox, Maildir formats, and remote POP3,
IMAP, SMAP and NNTP servers and SSL/TLS. It comes with integrated editor.

I tagged it NO_PACKAGE because it still has some minor quirks that need to
be resolved upstream, it is under the GNU General Public License.

	
>How-To-Repeat:
	
>Fix:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	cone
#	cone/Makefile
#	cone/distinfo
#	cone/scripts
#	cone/scripts/c_rehash
#	cone/pkg-deinstall
#	cone/pkg-message
#	cone/pkg-descr
#	cone/pkg-install
#	cone/pkg-plist
#
echo c - cone
mkdir -p cone > /dev/null 2>&1
echo x - cone/Makefile
sed 's/^X//' >cone/Makefile << 'END-of-cone/Makefile'
X# ports collection Makefile for: cone
X# Whom:		Matthias Andree <matthias.andree@gmx.de>
X# Date created:	2003-06-19
X#
X# $FreeBSD$
X#
X
XPORTNAME=	cone
XPORTVERSION=	0.51.20030702
XCATEGORIES=	mail
XMASTER_SITES=	http://www.courier-mta.org/beta/${PORTNAME}/
X
XMAINTAINER=	matthias.andree@gmx.de
XCOMMENT=	"Console based mail client with POP3/IMAP/SMAP support"
X
XLIB_DEPENDS=	xml2.5:${PORTSDIR}/textproc/libxml2 \
X		aspell.15:${PORTSDIR}/textproc/aspell
XBUILD_DEPENDS=	gpg:${PORTSDIR}/security/gnupg \
X		${LOCALBASE}/lib/libncurses.so.5.3:${PORTSDIR}/devel/ncurses
XRUN_DEPENDS=	gpg:${PORTSDIR}/security/gnupg \
X		${LOCALBASE}/lib/libncurses.so.5.3:${PORTSDIR}/devel/ncurses
X
XNO_PACKAGE=	"not fully mature software"
X
XUSE_BZIP2=	yes
XUSE_PERL5=	yes
XGNU_CONFIGURE=	yes
XCONFIGURE_ARGS=	-C --without-db --prefix=${PREFIX} --exec-prefix=${PREFIX}
X
XCONFIGURE_ENV=	REHASH=${SCRIPTDIR}/c_rehash LDFLAGS=-L${LOCALBASE}/lib \
X		CPPFLAGS=-I${LOCALBASE}/include
XCONFIGURE_TARGET=       --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
XMAN1=		cone.1 leaf.1 mailtool.1
X
Xdo-install:
X		cd ${WRKSRC} && make install-strip
X
Xpost-install:
X		${INSTALL_SCRIPT} ${WRKSRC}/sysconftool ${PREFIX}/sbin/cone-sysconftool
X		PKG_PREFIX=${PREFIX} ${SH} pkg-install ${PORTNAME} POST-INSTALL
X		${RM} -f ${PREFIX}/share/cone/rootcerts/.0
X		${CAT} ${PKGMESSAGE}
X
X.include <bsd.port.pre.mk>
X
X.if ${OSVERSION} < 500000
XIGNORE=		"does not build on FreeBSD versions before FreeBSD 5"
X.endif
X
X.include <bsd.port.post.mk>
END-of-cone/Makefile
echo x - cone/distinfo
sed 's/^X//' >cone/distinfo << 'END-of-cone/distinfo'
XMD5 (cone-0.51.20030702.tar.bz2) = cbb8faf8cb2dd3beccaf355a3f4ec4f1
END-of-cone/distinfo
echo c - cone/scripts
mkdir -p cone/scripts > /dev/null 2>&1
echo x - cone/scripts/c_rehash
sed 's/^X//' >cone/scripts/c_rehash << 'END-of-cone/scripts/c_rehash'
X#!/usr/bin/perl
X
X
X# Perl c_rehash script, scan all files in a directory
X# and add symbolic links to their hash values.
X
Xmy $openssl;
X
Xmy $dir = "/etc/ssl";
X
Xif(defined $ENV{OPENSSL}) {
X	$openssl = $ENV{OPENSSL};
X} else {
X	$openssl = "openssl";
X	$ENV{OPENSSL} = $openssl;
X}
X
Xif(! -f $openssl) {
X	my $found = 0;
X	foreach (split /:/, $ENV{PATH}) {
X		if(-f "$_/$openssl") {
X			$found = 1;
X			last;
X		}	
X	}
X	if($found == 0) {
X		print STDERR "c_rehash: rehashing skipped ('openssl' program not available)\n";
X		exit 0;
X	}
X}
X
Xif(@ARGV) {
X	@dirlist = @ARGV;
X} elsif($ENV{SSL_CERT_DIR}) {
X	@dirlist = split /:/, $ENV{SSL_CERT_DIR};
X} else {
X	$dirlist[0] = "$dir/certs";
X}
X
X
Xforeach (@dirlist) {
X	if(-d $_ and -w $_) {
X		hash_dir($_);
X	}
X}
X
Xsub hash_dir {
X	my %hashlist;
X	print "Doing $_[0]\n";
X	chdir $_[0];
X	opendir(DIR, ".");
X	my @flist = readdir(DIR);
X	# Delete any existing symbolic links
X	foreach (grep {/^[\da-f]+\.r{0,1}\d+$/} @flist) {
X		if(-l $_) {
X			unlink $_;
X		}
X	}
X	closedir DIR;
X	FILE: foreach $fname (grep {/\.pem$/} @flist) {
X		# Check to see if certificates and/or CRLs present.
X		my ($cert, $crl) = check_file($fname);
X		if(!$cert && !$crl) {
X			print STDERR "WARNING: $fname does not contain a certificate or CRL: skipping\n";
X			next;
X		}
X		link_hash_cert($fname) if($cert);
X		link_hash_crl($fname) if($crl);
X	}
X}
X
Xsub check_file {
X	my ($is_cert, $is_crl) = (0,0);
X	my $fname = $_[0];
X	open IN, $fname;
X	while(<IN>) {
X		if(/^-----BEGIN (.*)-----/) {
X			my $hdr = $1;
X			if($hdr =~ /^(X509 |TRUSTED |)CERTIFICATE$/) {
X				$is_cert = 1;
X				last if($is_crl);
X			} elsif($hdr eq "X509 CRL") {
X				$is_crl = 1;
X				last if($is_cert);
X			}
X		}
X	}
X	close IN;
X	return ($is_cert, $is_crl);
X}
X
X
X# Link a certificate to its subject name hash value, each hash is of
X# the form <hash>.<n> where n is an integer. If the hash value already exists
X# then we need to up the value of n, unless its a duplicate in which
X# case we skip the link. We check for duplicates by comparing the
X# certificate fingerprints
X
Xsub link_hash_cert {
X		my $fname = $_[0];
X		my ($hash, $fprint) = `$openssl x509 -hash -fingerprint -noout -in $fname`;
X		chomp $hash;
X		chomp $fprint;
X		$fprint =~ s/^.*=//;
X		$fprint =~ tr/://d;
X		my $suffix = 0;
X		# Search for an unused hash filename
X		while(exists $hashlist{"$hash.$suffix"}) {
X			# Hash matches: if fingerprint matches its a duplicate cert
X			if($hashlist{"$hash.$suffix"} eq $fprint) {
X				print STDERR "WARNING: Skipping duplicate certificate $fname\n";
X				return;
X			}
X			$suffix++;
X		}
X		$hash .= ".$suffix";
X		print "$fname => $hash\n";
X		$symlink_exists=eval {symlink("",""); 1};
X		if ($symlink_exists) {
X			symlink $fname, $hash;
X		} else {
X			system ("cp", $fname, $hash);
X		}
X		$hashlist{$hash} = $fprint;
X}
X
X# Same as above except for a CRL. CRL links are of the form <hash>.r<n>
X
Xsub link_hash_crl {
X		my $fname = $_[0];
X		my ($hash, $fprint) = `$openssl crl -hash -fingerprint -noout -in $fname`;
X		chomp $hash;
X		chomp $fprint;
X		$fprint =~ s/^.*=//;
X		$fprint =~ tr/://d;
X		my $suffix = 0;
X		# Search for an unused hash filename
X		while(exists $hashlist{"$hash.r$suffix"}) {
X			# Hash matches: if fingerprint matches its a duplicate cert
X			if($hashlist{"$hash.r$suffix"} eq $fprint) {
X				print STDERR "WARNING: Skipping duplicate CRL $fname\n";
X				return;
X			}
X			$suffix++;
X		}
X		$hash .= ".r$suffix";
X		print "$fname => $hash\n";
X		$symlink_exists=eval {symlink("",""); 1};
X		if ($symlink_exists) {
X			symlink $fname, $hash;
X		} else {
X			system ("cp", $fname, $hash);
X		}
X		$hashlist{$hash} = $fprint;
X}
END-of-cone/scripts/c_rehash
echo x - cone/pkg-deinstall
sed 's/^X//' >cone/pkg-deinstall << 'END-of-cone/pkg-deinstall'
X#! /bin/sh
Xcase "$2" in DEINSTALL)
X	if cmp -s "$PKG_PREFIX/etc/cone" "$PKG_PREFIX/etc/cone.dist" ; then
X		rm -f "$PKG_PREFIX/etc/cone"
X	else
X		echo "Modified $PKG_PREFIX/etc/cone left in place."
X	fi
Xesac
END-of-cone/pkg-deinstall
echo x - cone/pkg-message
sed 's/^X//' >cone/pkg-message << 'END-of-cone/pkg-message'
X
X--------------------------------------------------------------------------
XNote that Cone's CHARSET interpretation is different from FreeBSD's, so if
Xyou're using Cone with ISO8859* character sets, Cone may not start.
XExport a shell variable like this:
X
Xsetenv CHARSET ISO-8859-1		(for csh)
X
XCHARSET=ISO-8859-1		
Xexport CHARSET				(for sh/ksh/bash)
X
XAdjust the charset according to your locale, and mind the first dash.
X--------------------------------------------------------------------------
X
END-of-cone/pkg-message
echo x - cone/pkg-descr
sed 's/^X//' >cone/pkg-descr << 'END-of-cone/pkg-descr'
XCone is a text-based mail client. Cone seamlessly handles multiple POP3,
XIMAP accounts, and local mail folders. Cone is also a simple newsreader.
XCone is designed to be foolproof enough to be used by inexperienced users,
Xbut also offers advanced features for power users.
END-of-cone/pkg-descr
echo x - cone/pkg-install
sed 's/^X//' >cone/pkg-install << 'END-of-cone/pkg-install'
X#! /bin/sh
Xcase "$2" in POST-INSTALL)
X	"$PKG_PREFIX/sbin/cone-sysconftool" "$PKG_PREFIX/etc/cone.dist" ;;
Xesac
END-of-cone/pkg-install
echo x - cone/pkg-plist
sed 's/^X//' >cone/pkg-plist << 'END-of-cone/pkg-plist'
Xbin/cone
Xbin/leaf
Xbin/mailtool
Xsbin/cone-sysconftool
Xetc/cone.dist
Xlibexec/cone
Xshare/cone/APPLICATION.PDF.filter
Xshare/cone/IMAGE.GIF.filter
Xshare/cone/IMAGE.JPEG.filter
Xshare/cone/IMAGE.PNG.filter
Xshare/cone/account-checknewmail.html
Xshare/cone/account-copymessagesto.html
Xshare/cone/account-createfolder.html
Xshare/cone/account-deletefolder.html
Xshare/cone/account-getfolderfrompath.html
Xshare/cone/account-getfolderfromstring.html
Xshare/cone/account-getfolderindexinfo.html
Xshare/cone/account-getfolderindexsize.html
Xshare/cone/account-getmessagecontent.html
Xshare/cone/account-getmessagecontentdecoded.html
Xshare/cone/account-getmessageenvelope.html
Xshare/cone/account-getmessagestructure.html
Xshare/cone/account-getparentfolder.html
Xshare/cone/account-getsubfolders.html
Xshare/cone/account-gettoplevelfolders.html
Xshare/cone/account-libmail-addmessage.html
Xshare/cone/account-login.html
Xshare/cone/account-logout.html
Xshare/cone/account-openfolder.html
Xshare/cone/account-readfolderinfo.html
Xshare/cone/account-removemessages.html
Xshare/cone/account-renamefolder.html
Xshare/cone/account-savefolderindexinfo.html
Xshare/cone/account-searchmessages.html
Xshare/cone/account-send.html
Xshare/cone/account-translatepath.html
Xshare/cone/account-updatefolderindexflags.html
Xshare/cone/account-updatefolderindexinfo.html
Xshare/cone/add.html
Xshare/cone/address.html
Xshare/cone/attributes.html
Xshare/cone/book.html
Xshare/cone/c1844.html
Xshare/cone/c1882.html
Xshare/cone/cone.hlp
Xshare/cone/cone.html
Xshare/cone/cone00index.html
Xshare/cone/cone01folderlist.html
Xshare/cone/cone02folderindex.html
Xshare/cone/cone03messageview.html
Xshare/cone/cone04writemessage.html
Xshare/cone/cone05setup.html
Xshare/cone/cone06newaccount.html
Xshare/cone/cone07remoteconfig.html
Xshare/cone/cone08gpg.html
Xshare/cone/cone09masterpassword.html
Xshare/cone/cone10encryption.html
Xshare/cone/envelope.html
Xshare/cone/faq.html
Xshare/cone/folder-addmessage.html
Xshare/cone/folder-clone.html
Xshare/cone/folder-create.html
Xshare/cone/folder-createsubfolder.html
Xshare/cone/folder-destroy.html
Xshare/cone/folder-getname.html
Xshare/cone/folder-getparentfolder.html
Xshare/cone/folder-getpath.html
Xshare/cone/folder-hasmessages.html
Xshare/cone/folder-hassubfolders.html
Xshare/cone/folder-isparentof.html
Xshare/cone/folder-open.html
Xshare/cone/folder-readfolderinfo.html
Xshare/cone/folder-readsubfolders.html
Xshare/cone/folder-renamefolder.html
Xshare/cone/folder-tostring.html
Xshare/cone/index.html
Xshare/cone/install.html
Xshare/cone/leaf.html
Xshare/cone/libmail.html
Xshare/cone/mail-checknewmail.html
Xshare/cone/mail-copymessagesto.html
Xshare/cone/mail-findfolder.html
Xshare/cone/mail-folderfromstring.html
Xshare/cone/mail-getfolderindexinfo.html
Xshare/cone/mail-getfolderindexsize.html
Xshare/cone/mail-getsendfolder.html
Xshare/cone/mail-hascapability.html
Xshare/cone/mail-homedir.html
Xshare/cone/mail-hostname.html
Xshare/cone/mail-isremoteurl.html
Xshare/cone/mail-loginurldecode.html
Xshare/cone/mail-loginurlencode.html
Xshare/cone/mail-logout.html
Xshare/cone/mail-open.html
Xshare/cone/mail-process.html
Xshare/cone/mail-readmsgattr.html
Xshare/cone/mail-readmsgcontent.html
Xshare/cone/mail-readmsgcontentdecoded.html
Xshare/cone/mail-readtoplevel.html
Xshare/cone/mail-removemessages.html
Xshare/cone/mail-resume.html
Xshare/cone/mail-savefolderindexinfo.html
Xshare/cone/mail-searchmessages.html
Xshare/cone/mail-setappcharset.html
Xshare/cone/mail-translatepath.html
Xshare/cone/mail-updatefolderindexflags.html
Xshare/cone/mail-updatefolderindexinfo.html
Xshare/cone/mail-updatenotify.html
Xshare/cone/mail-upper.html
Xshare/cone/mailtool.html
Xshare/cone/manpage.css
Xshare/cone/mimestruct.html
Xshare/cone/native.html
Xshare/cone/r6325.html
Xshare/cone/r6545.html
Xshare/cone/r7951.html
Xshare/cone/readme.html
Xshare/cone/rootcerts/052e396b.0
Xshare/cone/rootcerts/0bb21872.0
Xshare/cone/rootcerts/0c364b2d.0
Xshare/cone/rootcerts/0e82f83a.0
Xshare/cone/rootcerts/11f154d6.0
Xshare/cone/rootcerts/128b9c8d.0
Xshare/cone/rootcerts/19899da5.0
Xshare/cone/rootcerts/1a147d5b.0
Xshare/cone/rootcerts/1bb6c7e0.0
Xshare/cone/rootcerts/256fd83b.0
Xshare/cone/rootcerts/2d047263.0
Xshare/cone/rootcerts/2edf7016.0
Xshare/cone/rootcerts/31044350.0
Xshare/cone/rootcerts/3ad48a91.0
Xshare/cone/rootcerts/3c58f906.0
Xshare/cone/rootcerts/3e7271e8.0
Xshare/cone/rootcerts/412bea73.0
Xshare/cone/rootcerts/418882ac.0
Xshare/cone/rootcerts/43d4bde2.0
Xshare/cone/rootcerts/4643210f.0
Xshare/cone/rootcerts/4d654d1d.0
Xshare/cone/rootcerts/5480ace1.0
Xshare/cone/rootcerts/54edfa5d.0
Xshare/cone/rootcerts/594f1775.0
Xshare/cone/rootcerts/5ee07a24.0
Xshare/cone/rootcerts/5f5e5caa.0
Xshare/cone/rootcerts/6166cb50.0
Xshare/cone/rootcerts/61f6c934.0
Xshare/cone/rootcerts/66eb5c17.0
Xshare/cone/rootcerts/66ec64da.0
Xshare/cone/rootcerts/6981fb07.0
Xshare/cone/rootcerts/6a15001a.0
Xshare/cone/rootcerts/6c55cf77.0
Xshare/cone/rootcerts/6d6ec79c.0
Xshare/cone/rootcerts/700b8679.0
Xshare/cone/rootcerts/709afd2b.0
Xshare/cone/rootcerts/72fa7371.0
Xshare/cone/rootcerts/73451336.0
Xshare/cone/rootcerts/739b7930.0
Xshare/cone/rootcerts/74c26bd0.0
Xshare/cone/rootcerts/7651b327.0
Xshare/cone/rootcerts/76d6205a.0
Xshare/cone/rootcerts/788c9bfc.0
Xshare/cone/rootcerts/7a9820c1.0
Xshare/cone/rootcerts/7d3cd826.0
Xshare/cone/rootcerts/7d453d8f.0
Xshare/cone/rootcerts/7e74191f.0
Xshare/cone/rootcerts/81447c6e.0
Xshare/cone/rootcerts/843b6c51.0
Xshare/cone/rootcerts/878cf4c6.0
Xshare/cone/rootcerts/8e6e2991.0
Xshare/cone/rootcerts/8efac7d4.0
Xshare/cone/rootcerts/8f7b96c4.0
Xshare/cone/rootcerts/95750816.0
Xshare/cone/rootcerts/97b4211c.0
Xshare/cone/rootcerts/a15b3b6b.0
Xshare/cone/rootcerts/a2be0f54.0
Xshare/cone/rootcerts/a2df7ad7.0
Xshare/cone/rootcerts/a38484ce.0
Xshare/cone/rootcerts/a3c60019.0
Xshare/cone/rootcerts/aaa45464.0
Xshare/cone/rootcerts/aba-ecom-root-ca.pem
Xshare/cone/rootcerts/addtrust-class-1-ca-root.pem
Xshare/cone/rootcerts/addtrust-external-ca-root.pem
Xshare/cone/rootcerts/addtrust-public-ca-root.pem
Xshare/cone/rootcerts/addtrust-qualified-ca-root.pem
Xshare/cone/rootcerts/american-express-certificate-authority.pem
Xshare/cone/rootcerts/american-express-global-certificate.pem
Xshare/cone/rootcerts/b0f3e76e.0
Xshare/cone/rootcerts/b5f329fa.0
Xshare/cone/rootcerts/ba386118.0
Xshare/cone/rootcerts/baltimore-cybertrust-code-signing.pem
Xshare/cone/rootcerts/baltimore-cybertrust-mobile-root.pem
Xshare/cone/rootcerts/baltimore-cybertrust-root.pem
Xshare/cone/rootcerts/bankengine.pem
Xshare/cone/rootcerts/bb0a889c.0
Xshare/cone/rootcerts/bcdd5959.0
Xshare/cone/rootcerts/belsign-object-publishing-ca.pem
Xshare/cone/rootcerts/belsign-secure-server-ca.pem
Xshare/cone/rootcerts/betrusted-root-ca.pem
Xshare/cone/rootcerts/bffe8b5d.0
Xshare/cone/rootcerts/c19d42c7.0
Xshare/cone/rootcerts/c215bc69.0
Xshare/cone/rootcerts/c33a80d4.0
Xshare/cone/rootcerts/c527e4ab.0
Xshare/cone/rootcerts/c9bc75ba.0
Xshare/cone/rootcerts/ccf7ff0e.0
Xshare/cone/rootcerts/certengine.pem
Xshare/cone/rootcerts/class-2-public-primary-ocsp-responder.pem
Xshare/cone/rootcerts/class-3-public-primary-ocsp-responder.pem
Xshare/cone/rootcerts/cybertrust-japan-root-ca.pem
Xshare/cone/rootcerts/cybertrust-japan-secure-server.pem
Xshare/cone/rootcerts/d2adc77d.0
Xshare/cone/rootcerts/d593166d.0
Xshare/cone/rootcerts/d78a75c7.0
Xshare/cone/rootcerts/db65db21.0
Xshare/cone/rootcerts/ddc328ff.0
Xshare/cone/rootcerts/deutsche-telekom-root-ca.pem
Xshare/cone/rootcerts/dfd0b044.0
Xshare/cone/rootcerts/digital-signature-trust-co-dstca-00.pem
Xshare/cone/rootcerts/digital-signature-trust-co-dstca-01.pem
Xshare/cone/rootcerts/dst-rootca-x1.pem
Xshare/cone/rootcerts/dst-rootca-x2.pem
Xshare/cone/rootcerts/e-certify-ca.pem
Xshare/cone/rootcerts/e-certify-ra.pem
Xshare/cone/rootcerts/e268a4c5.0
Xshare/cone/rootcerts/e7b8d656.0
Xshare/cone/rootcerts/e9aaa9de.0
Xshare/cone/rootcerts/ed049835.0
Xshare/cone/rootcerts/ed524cf5.0
Xshare/cone/rootcerts/ed62f4e3.0
Xshare/cone/rootcerts/entrust-net-certification-authority.pem
Xshare/cone/rootcerts/entrust-net-client-certification-00.pem
Xshare/cone/rootcerts/entrust-net-client-certification-01.pem
Xshare/cone/rootcerts/entrust-net-secure-server-certification-00.pem
Xshare/cone/rootcerts/entrust-net-secure-server-certification-01.pem
Xshare/cone/rootcerts/equifax-equifax-premium-certificate.pem
Xshare/cone/rootcerts/equifax-equifax-secure-certificate.pem
Xshare/cone/rootcerts/equifax-secure-ebusiness-ca-1.pem
Xshare/cone/rootcerts/equifax-secure-equifax-secure-ebusiness.pem
Xshare/cone/rootcerts/equifax-secure-global-ebusiness.pem
Xshare/cone/rootcerts/f10dd942.0
Xshare/cone/rootcerts/f4996e82.0
Xshare/cone/rootcerts/f73e89fd.0
Xshare/cone/rootcerts/fortengine.pem
Xshare/cone/rootcerts/globalsign-partners-ca.pem
Xshare/cone/rootcerts/globalsign-primary-class-1-ca.pem
Xshare/cone/rootcerts/globalsign-primary-class-2-ca.pem
Xshare/cone/rootcerts/globalsign-primary-class-3-ca.pem
Xshare/cone/rootcerts/globalsign-root-ca.pem
Xshare/cone/rootcerts/gp-root-2.pem
Xshare/cone/rootcerts/gp-root-3.pem
Xshare/cone/rootcerts/gp-root-4.pem
Xshare/cone/rootcerts/gp-root-5.pem
Xshare/cone/rootcerts/gte-cybertrust-global-root.pem
Xshare/cone/rootcerts/gte-cybertrust-root-5.pem
Xshare/cone/rootcerts/gte-cybertrust-root.pem
Xshare/cone/rootcerts/http-www-valicert-com-00.pem
Xshare/cone/rootcerts/http-www-valicert-com-01.pem
Xshare/cone/rootcerts/http-www-valicert-com-02.pem
Xshare/cone/rootcerts/http-www-valicert-net.pem
Xshare/cone/rootcerts/mailengine.pem
Xshare/cone/rootcerts/rsa-data-security-inc-secure-server.pem
Xshare/cone/rootcerts/secure-server-ocsp-responder.pem
Xshare/cone/rootcerts/tc-trustcenter-for-security-in-00.pem
Xshare/cone/rootcerts/tc-trustcenter-for-security-in-01.pem
Xshare/cone/rootcerts/tc-trustcenter-for-security-in-02.pem
Xshare/cone/rootcerts/tc-trustcenter-for-security-in-03.pem
Xshare/cone/rootcerts/tc-trustcenter-for-security-in-04.pem
Xshare/cone/rootcerts/thawte-personal-basic-ca.pem
Xshare/cone/rootcerts/thawte-personal-freemail-ca.pem
Xshare/cone/rootcerts/thawte-personal-premium-ca.pem
Xshare/cone/rootcerts/thawte-premium-server-ca.pem
Xshare/cone/rootcerts/thawte-server-ca.pem
Xshare/cone/rootcerts/thawte-timestamping-ca.pem
Xshare/cone/rootcerts/thawte-universal-ca-root.pem
Xshare/cone/rootcerts/traderengine.pem
Xshare/cone/rootcerts/usps-production-ca-1.pem
Xshare/cone/rootcerts/usps-root-ca.pem
Xshare/cone/rootcerts/verisign-class-1-public-primary.pem
Xshare/cone/rootcerts/verisign-class-2-public-primary.pem
Xshare/cone/rootcerts/verisign-class-3-public-primary.pem
Xshare/cone/rootcerts/verisign-class-4-public-primary.pem
Xshare/cone/rootcerts/verisign-inc-class-1-public-primary.pem
Xshare/cone/rootcerts/verisign-inc-class-2-public-primary.pem
Xshare/cone/rootcerts/verisign-inc-class-3-public-primary.pem
Xshare/cone/rootcerts/verisign-inc-verisign-trust-network-00.pem
Xshare/cone/rootcerts/verisign-inc-verisign-trust-network-01.pem
Xshare/cone/rootcerts/verisign-inc-verisign-trust-network-02.pem
Xshare/cone/rootcerts/verisign-inc-verisign-trust-network-03.pem
Xshare/cone/rootcerts/verisign-time-stamping-authority.pem
Xshare/cone/rootcerts/visa-visa-international-service.pem
Xshare/cone/rootcerts/xcert-ez-by-dst.pem
Xshare/cone/rootcerts/xcert-international-inc-xcert-root-00.pem
Xshare/cone/rootcerts/xcert-international-inc-xcert-root-01.pem
Xshare/cone/rootcerts/xcert-international-inc-xcert-root-02.pem
Xshare/cone/rootcerts/xcert-international-inc-xcert-root-03.pem
Xshare/cone/search.html
Xshare/cone/smap1.html
Xshare/cone/store.html
Xshare/cone/synchronous.html
Xshare/cone/x8356.html
Xshare/cone/x8441.html
Xshare/cone/x8553.html
Xshare/cone/x8689.html
Xshare/cone/x8944.html
Xshare/cone/x9164.html
Xshare/cone/x9267.html
Xshare/cone/x9490.html
Xshare/cone/x9814.html
Xshare/cone/x9825.html
X@dirrm share/cone/rootcerts
X@dirrm share/cone
END-of-cone/pkg-plist
exit

	


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030705113328.B7A721B203>