summaryrefslogtreecommitdiff
path: root/Echolot/Fromlines.pm
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2003-02-18 10:30:35 +0000
committerPeter Palfrader <peter@palfrader.org>2003-02-18 10:30:35 +0000
commit088b41a8360ace17f2bc41d1a3b325ab54fe669c (patch)
tree044700a496fe0d61710c4b721745f1303d212cc3 /Echolot/Fromlines.pm
parent5f6efb229eb2ef2fef0f6a1e3a7c0fa4d685f760 (diff)
Only have showit remailers in From lines
Diffstat (limited to 'Echolot/Fromlines.pm')
-rw-r--r--Echolot/Fromlines.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Echolot/Fromlines.pm b/Echolot/Fromlines.pm
index da414e5..d092f21 100644
--- a/Echolot/Fromlines.pm
+++ b/Echolot/Fromlines.pm
@@ -1,7 +1,7 @@
package Echolot::Fromlines;
# (c) 2002 Peter Palfrader <peter@palfrader.org>
-# $Id: Fromlines.pm,v 1.2 2003/02/18 06:57:07 weasel Exp $
+# $Id: Fromlines.pm,v 1.3 2003/02/18 10:30:35 weasel Exp $
#
=pod
@@ -29,6 +29,7 @@ sub build_fromlines() {
my @remailers = Echolot::Globals::get()->{'storage'}->get_remailers();
for my $remailer (@remailers) {
+ next unless $remailer->{'showit'};
my $addr = $remailer->{'address'};
my $nick = Echolot::Globals::get()->{'storage'}->get_nick($addr);
next unless defined $nick;