Gentoo Archives: gentoo-doc-cvs

From: "Joshua Saddler (nightmorph)" <nightmorph@g.o>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en: mailfilter-guide.xml
Date: Fri, 04 Mar 2011 18:18:12
Message-Id: 20110304181255.7EE502004F@flycatcher.gentoo.org
1 nightmorph 11/03/04 18:12:55
2
3 Modified: mailfilter-guide.xml
4 Log:
5 fix smtpclient flag, bug 357329
6
7 Revision Changes Path
8 1.23 xml/htdocs/doc/en/mailfilter-guide.xml
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/mailfilter-guide.xml?rev=1.23&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/mailfilter-guide.xml?rev=1.23&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/mailfilter-guide.xml?r1=1.22&r2=1.23
13
14 Index: mailfilter-guide.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/mailfilter-guide.xml,v
17 retrieving revision 1.22
18 retrieving revision 1.23
19 diff -u -r1.22 -r1.23
20 --- mailfilter-guide.xml 2 Mar 2011 09:16:17 -0000 1.22
21 +++ mailfilter-guide.xml 4 Mar 2011 18:12:55 -0000 1.23
22 @@ -1,6 +1,6 @@
23 <?xml version='1.0' encoding='utf-8'?>
24 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
25 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/mailfilter-guide.xml,v 1.22 2011/03/02 09:16:17 nightmorph Exp $ -->
26 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/mailfilter-guide.xml,v 1.23 2011/03/04 18:12:55 nightmorph Exp $ -->
27
28 <guide>
29 <title>Gentoo mailfiltering gateway guide</title>
30 @@ -25,8 +25,8 @@
31 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
32 <license/>
33
34 -<version>1</version>
35 -<date>2011-03-02</date>
36 +<version>2</version>
37 +<date>2011-03-04</date>
38
39 <chapter>
40 <title>Introduction</title>
41 @@ -1170,7 +1170,7 @@
42 if($to eq "") {
43 prunefile($ARGV[0]); # Just nuke it if to is empty
44 } else {
45 - my $redelivercmd = "cat $ARGV[0] | smtpclient -F -S 127.0.0.1 -P 10025 -f $from $to";
46 + my $redelivercmd = "cat $ARGV[0] | smtpclient -w -S 127.0.0.1 -P 10025 -f $from $to";
47 unless (system($redelivercmd) == 0 ) {
48 die "Unable to redeliver: $?";
49 }