[1127] in BarnOwl Developers
[D-O-H] r1080 - in trunk/owl: . perl/modules/IRC/lib/BarnOwl/Message
daemon@ATHENA.MIT.EDU (chmrr@MIT.EDU)
Thu Oct 29 18:13:18 2009
Resent-From: nelhage@mit.edu
Resent-To: barnowl-dev-mtg@charon.mit.edu
X-Original-To: nelhage@nelhage.com
To: dirty-owl-hackers@mit.edu
From: chmrr@MIT.EDU
Reply-To: dirty-owl-hackers@MIT.EDU
Date: Mon, 09 Jun 2008 19:31:26 -0400
Author: chmrr
Date: 2008-06-09 19:31:26 -0400 (Mon, 09 Jun 2008)
New Revision: 1080
Modified:
trunk/owl/
trunk/owl/perl/modules/IRC/lib/BarnOwl/Message/IRC.pm
Log:
r2144@utwig: chmrr | 2008-06-09 19:28:01 -0400
* Narrowing on a /msg from a user should be personals-only
Property changes on: trunk/owl
___________________________________________________________________
Name: svk:merge
- 06e3988a-d725-0410-af47-c5dd11e74598:/local/barnowl:2142
8baf6839-b125-0410-9df9-922793c80423:/local/barnowl:29300
8baf6839-b125-0410-9df9-922793c80423:/local/owl:15641
bb873fd7-8e23-0410-944a-99ec44c633eb:/local/d-o-h/branches/par:19594
fe09232e-8620-0410-8e36-e6b4839e121d:/branches/par:688
+ 06e3988a-d725-0410-af47-c5dd11e74598:/local/barnowl:2144
8baf6839-b125-0410-9df9-922793c80423:/local/barnowl:29300
8baf6839-b125-0410-9df9-922793c80423:/local/owl:15641
bb873fd7-8e23-0410-944a-99ec44c633eb:/local/d-o-h/branches/par:19594
fe09232e-8620-0410-8e36-e6b4839e121d:/branches/par:688
Modified: trunk/owl/perl/modules/IRC/lib/BarnOwl/Message/IRC.pm
===================================================================
--- trunk/owl/perl/modules/IRC/lib/BarnOwl/Message/IRC.pm 2008-06-09 22:32:38 UTC (rev 1079)
+++ trunk/owl/perl/modules/IRC/lib/BarnOwl/Message/IRC.pm 2008-06-09 23:31:26 UTC (rev 1080)
@@ -30,8 +30,8 @@
}
$filter = "irc-user-$who";
my $ftext =
- qq{type ^irc\$ and ( ( direction ^in\$ and sender ^$who\$ ) }
- . qq{or ( direction ^out\$ and recipient ^$who\$ ) ) };
+ qq{( type ^irc\$ and filter personal and }
+ . qq{( ( direction ^in\$ and sender ^$who\$ ) or ( direction ^out\$ and recipient ^$who\$ ) ) ) };
BarnOwl::filter("$filter $ftext");
return $filter;
} else {