summaryrefslogtreecommitdiffstats
path: root/scripts/awayproxy.pl
diff options
context:
space:
mode:
authorTamás Gérczei2016-03-21 23:29:10 +0100
committerTamás Gérczei2016-03-21 23:30:32 +0100
commitc7266ceed50d39ded09be1afd7be3d083853c1f9 (patch)
treed04bb886489b27f2e36927b67a6aef33351e8875 /scripts/awayproxy.pl
parentb31e3907479ef6e85490ab1d346d23b3f437090f (diff)
downloadscripts.irssi.org-c7266ceed50d39ded09be1afd7be3d083853c1f9.tar.bz2
Will no longer default to sending e-mails to 'email@email.org' which actually appears live
Diffstat (limited to 'scripts/awayproxy.pl')
-rw-r--r--scripts/awayproxy.pl10
1 files changed, 6 insertions, 4 deletions
diff --git a/scripts/awayproxy.pl b/scripts/awayproxy.pl
index 628e0f4..8e84833 100644
--- a/scripts/awayproxy.pl
+++ b/scripts/awayproxy.pl
@@ -43,6 +43,8 @@
# * New logging expansion capability, either time or line based.
# 0.2d
# * Micro fix to get back only when needed
+# 0.2e
+# * Changed default values for $config{script_mode} and $config{emailto} for IRC-only and a non-existing placeholder respectively.
#### To come / planned / wanted:
# * Make expansion system log several channels at once.
# * Make this script server based.
@@ -56,7 +58,7 @@ use Irssi;
use Irssi::Irc;
use vars qw($VERSION %IRSSI %config);
-$VERSION = "0.2d";
+$VERSION = "0.2e";
%IRSSI = (
authors => "BCOW",
contact => "anttip\@n0-life.com",
@@ -91,13 +93,13 @@ $config{expansion_timeout} = 90;
# 1 - only email
# 2 - only irc
# 3 - off
-$config{script_mode} = 1;
+$config{script_mode} = 2;
# email address where to send the email
-$config{emailto} = 'email@email.org';
+$config{emailto} = 'recipient@domain.tld';
# sendmail location
$config{sendmail} = '/usr/sbin/sendmail';
# who is the sender of the email
-$config{emailfrom} = 'email@email.org';
+$config{emailfrom} = 'sender@domain.tld';
# Subject of email
$config{emailsubject} = '[irssi-proxy]';
# and the awayreason setting (Thanx Wulf)