source: perl/lib/BarnOwl/Message/Loopback.pm

Last change on this file was 8cec8f7, checked in by Jason Gross <jasongross9@gmail.com>, 7 years ago
Log loopbacks to loopback file in ~/zlog Not to ~/zlog/loop{sender,recip}. If compatibility logging is on, loopbacks get logged to ~/zlog/people/loopback, which is what happened before this branch.
  • Property mode set to 100644
File size: 323 bytes
Line 
1use strict;
2use warnings;
3
4package BarnOwl::Message::Loopback;
5
6use base qw( BarnOwl::Message );
7
8# all loopback messages are private
9sub is_private {
10  return 1;
11}
12
13sub replycmd {return 'loopwrite';}
14sub replysendercmd {return 'loopwrite';}
15
16sub log_subfolder { return ''; }
17sub log_filenames { return ('loopback'); }
18
191;
Note: See TracBrowser for help on using the repository browser.