6 changed files with 113 additions and 4 deletions
@ -1,12 +1,15 @@ |
|||||||
# mb.conf - milkbone global configuration file |
# mb.conf - milkbone global configuration file |
||||||
|
|
||||||
Goodbye sorry, gotta, go |
Goodbye sorry, gotta, go |
||||||
Modules Tk-PluginsConf, Net-OSCAR, Tk-GUI, Tk-Logon, Tk-BList, Tk-Profile, Tk-File, Tk-About, Tk-Convo |
Modules Tk-PluginsConf, Net-OSCAR, Tk-GUI, Tk-Logon, Tk-BList, Tk-Profile, Tk-File, Tk-About, Tk-Convo, Tk-Conf |
||||||
Plugins Sound, XAMP, Templog, Monitor, Counterstrike |
Plugins XAMP, Monitor, Counterstrike, Win32X |
||||||
Port 5190 |
Port 5190 |
||||||
HeavyLogging 0 |
HeavyLogging 0 |
||||||
SoundsWhileAway 0 |
SoundsWhileAway 0 |
||||||
AwayTimeout 60 |
AwayTimeout 60 |
||||||
TrayIcon 1 |
TrayIcon 1 |
||||||
HideBListLogo 0 |
HideBListLogo 0 |
||||||
ThemeColor lightblue |
ThemeColor lightblue |
||||||
|
# MonitorServer smptauth.earthlink.net |
||||||
|
# MonitorUser batkins86@earthlink.net |
||||||
|
# MonitorPass superfly |
@ -0,0 +1,37 @@ |
|||||||
|
use Milkbone; |
||||||
|
use Net::SMTP; |
||||||
|
|
||||||
|
use strict; |
||||||
|
use warnings; |
||||||
|
|
||||||
|
sub sendmail |
||||||
|
{ |
||||||
|
print "sending message";; |
||||||
|
my ($sub, $text, $user) = @_; |
||||||
|
$user =~ s/ /_/g; |
||||||
|
my $smtp = Net::SMTP->new(option('MonitorServer'), |
||||||
|
Hello => 'milkbone.org', Debug => 1); |
||||||
|
|
||||||
|
$smtp->auth(option("MonitorUser"), option("MonitorPass")) if option("MonitorUser"); |
||||||
|
$smtp->mail("$user\@milkbone.org"); |
||||||
|
$smtp->to('savannah@batkins.com'); |
||||||
|
|
||||||
|
$text =~ s/<.*?>//g; |
||||||
|
|
||||||
|
$smtp->data(); |
||||||
|
$smtp->datasend("To: \n"); |
||||||
|
$smtp->datasend("From: Milkbone Monitor <$user\@milkbone.org>\n"); |
||||||
|
$smtp->datasend("Subject: $user - $sub \n"); |
||||||
|
$smtp->datasend("\n"); |
||||||
|
$smtp->datasend("$user - $text"); |
||||||
|
$smtp->dataend(); |
||||||
|
|
||||||
|
$smtp->quit; |
||||||
|
} |
||||||
|
|
||||||
|
register_hook("msg_in", sub { |
||||||
|
return unless hook("protocol_away_status"); |
||||||
|
sendmail('Message Received', "Received the following message from $ARGS{-user}:\n\n$ARGS{-msg}", $ARGS{-user}); |
||||||
|
}); |
||||||
|
|
||||||
|
1; |
@ -0,0 +1,48 @@ |
|||||||
|
package Milkbone::Conf; |
||||||
|
|
||||||
|
use Milkbone; |
||||||
|
|
||||||
|
our $VERSION = '1.0'; |
||||||
|
|
||||||
|
use Tk::widgets qw(Frame); |
||||||
|
use base qw(Tk::Toplevel); |
||||||
|
use strict; |
||||||
|
use warnings; |
||||||
|
|
||||||
|
Construct Tk::Widget 'MBConf'; |
||||||
|
|
||||||
|
sub ClassInit |
||||||
|
{ |
||||||
|
my ($class, $mw) = @_; |
||||||
|
$class->SUPER::ClassInit($mw); |
||||||
|
} |
||||||
|
|
||||||
|
sub init |
||||||
|
{ |
||||||
|
my ($self) = @_; |
||||||
|
|
||||||
|
$self->{text} = $self->Frame->pack(-expand => 1, -fill => 'both')->Scrolled( |
||||||
|
"TextUndo", -scrollbars => 'oe', -background => 'white', -wrap => 'word', -font => "times 12")-> |
||||||
|
pack(-expand => 1, -fill => 'both'); |
||||||
|
|
||||||
|
$self->Button(-text => "Close", -command => [$self, "destroy"])->pack(-side => 'right'); |
||||||
|
$self->Button(-text => "Save", -command => [$self, "on_save"])->pack(-side => 'right'); |
||||||
|
|
||||||
|
$self->{text}->bind('<MouseWheel>', |
||||||
|
[ sub { $_[0]->yview('scroll', -($_[1] / 120), 'units') }, Tk::Ev('D')]); |
||||||
|
|
||||||
|
$self->{text}->Load('mb.conf') |
||||||
|
|
||||||
|
$self->{text}->focus; |
||||||
|
hook("tk_seticon", -wnd => $self); |
||||||
|
} |
||||||
|
|
||||||
|
sub on_save |
||||||
|
{ |
||||||
|
my ($self) = @_; |
||||||
|
|
||||||
|
$self->{text}->Save; |
||||||
|
hook("load_options"); |
||||||
|
|
||||||
|
$self->destroy; |
||||||
|
} |
Loading…
Reference in new issue