Last active
August 29, 2015 14:00
-
-
Save waffle2k/c76c58367572a3ff4bc3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
## Put me in ~/.irssi/scripts, and then execute the following in irssi: | |
## | |
## /load perl | |
## /script load notify | |
## | |
use strict; | |
use Irssi; | |
use vars qw($VERSION %IRSSI); | |
use HTML::Entities; | |
$VERSION = "0.5"; | |
%IRSSI = ( | |
authors => 'Luke Macken, Paul W. Frields', | |
contact => '[email protected], [email protected]', | |
name => 'notify.pl', | |
description => 'Use D-Bus to alert user to hilighted messages', | |
license => 'GNU General Public License', | |
url => 'http://code.google.com/p/irssi-libnotify', | |
); | |
Irssi::settings_add_str('notify', 'notify_remote', ''); | |
sub sanitize { | |
my ($text) = @_; | |
encode_entities($text,'\'<>&'); | |
my $apos = "'"; | |
my $aposenc = "\'"; | |
$text =~ s/$apos/$aposenc/g; | |
$text =~ s/"/\\"/g; | |
$text =~ s/\$/\\\$/g; | |
$text =~ s/`/\\"/g; | |
return $text; | |
} | |
sub notify { | |
my ($server, $summary, $message) = @_; | |
# Make the message entity-safe | |
$summary = sanitize($summary); | |
$message = sanitize($message); | |
my $cmd = "EXEC - " . | |
" ~/bin/notify" . | |
" '" . $summary . "'" . | |
" '" . $message . "'"; | |
$server->command($cmd); | |
} | |
sub print_text_notify { | |
my ($dest, $text, $stripped) = @_; | |
my $server = $dest->{server}; | |
return if (!$server || !($dest->{level} & MSGLEVEL_HILIGHT)); | |
my $sender = $stripped; | |
$sender =~ s/^\<.([^\>]+)\>.+/\1/ ; | |
$stripped =~ s/^\<.[^\>]+\>.// ; | |
my $summary = $dest->{target} . ": " . $sender; | |
notify($server, $summary, $stripped); | |
} | |
sub message_private_notify { | |
my ($server, $msg, $nick, $address) = @_; | |
return if (!$server); | |
notify($server, "PM from ".$nick, $msg); | |
} | |
sub dcc_request_notify { | |
my ($dcc, $sendaddr) = @_; | |
my $server = $dcc->{server}; | |
return if (!$dcc); | |
notify($server, "DCC ".$dcc->{type}." request", $dcc->{nick}); | |
} | |
Irssi::signal_add('print text', 'print_text_notify'); | |
Irssi::signal_add('message private', 'message_private_notify'); | |
Irssi::signal_add('dcc request', 'dcc_request_notify'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SUMMARY=$1 | |
MESSAGE=$2 | |
THRESHOLD=900 | |
MAILSERVER=mail.SERVER | |
RECIPIENT="yourTaggedEmail" | |
SENDER="yourEmail" | |
AUTHUSER="yourUserame" | |
PASSWORD="yourPassword" | |
LAST=0 | |
if [ -e "/tmp/notify.last" ]; then | |
LAST=$(egrep '^[0-9]+$' /tmp/notify.last) | |
fi | |
NOW=$(date +%s) | |
DELTA=$((NOW - LAST)) | |
echo $NOW > /tmp/notify.last | |
if [ $DELTA -gt $THRESHOLD ]; then | |
swaks --body "$MESSAGE" \ | |
--header "Subject: $SUMMARY" \ | |
--auth plain \ | |
--auth-user $AUTHUSER \ | |
--auth-password $PASSWORD \ | |
--server ${MAILSERVER}:587 \ | |
--to $RECIPIENT \ | |
--from $SENDER >/dev/null | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment