1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
|
# -----------------------------------------------------------------------------
# $Id: MesMail.pm 12336 2008-05-25 10:03:57Z topia $
# -----------------------------------------------------------------------------
# copyright (C) 2003 Topia <topia@clovery.jp>. all rights reserved.
package Auto::MesMail;
use strict;
use warnings;
use base qw(Module);
use Module::Use qw(Auto::Utils Auto::AliasDB Tools::DateConvert Tools::MailSend);
use Auto::Utils;
use Auto::AliasDB;
use Tools::DateConvert;
use Tools::MailSend;
use Mask;
# デフォルト設定
my $DATE_FORMAT = '%H:%M';
my $FORMAT = '#(date) << #(from.name|from.nick|from.nick.now) >> #(message)';
my $SUBJECT = 'Message from IRC';
sub new {
my ($class) = shift;
my $this = $class->SUPER::new(@_);
$this->{from_addr} = sub {
my ($user, $host) = split(/\@/, $_[0], 2);
$user = (getpwuid($>))[0] || '' unless $user;
if ($host) {
substr($host, 0, 0) = '@';
} else {
$host = ''
}
return ($user . $host);
}->($this->config->from);
my ($use_pop3) = $this->config->use_pop3;
$use_pop3 = 1 if ($use_pop3 =~ /yes/i) || ($use_pop3 !~ /0/);
$this->{use_pop3} = $use_pop3;
return $this;
}
sub message_arrived {
my ($this,$msg,$sender) = @_;
my @result = ($msg);
# サーバーからのメッセージか?
if ($sender->isa('IrcIO::Server')) {
# PRIVMSGか?
if ($msg->command eq 'PRIVMSG') {
my ($get_ch_name,undef,undef,$reply_anywhere)
= Auto::Utils::generate_reply_closures($msg,$sender,\@result);
my ($str, $who, $text) = split(/\s+/, $msg->param(1), 3);
if (Mask::match_deep([$this->config->send('all')], $str)) {
# 一致していた。
if (Mask::match_deep_chan([$this->config->mask('all')], $msg->prefix(), $get_ch_name->())) {
$this->_send($msg, $sender, $who, $text, $get_ch_name, $reply_anywhere);
} else {
foreach my $reply ($this->config->deny('all')) {
$reply_anywhere->($reply);
}
}
}
}
}
return @result;
}
sub _send {
my ($this, $msg, $sender, $who, $text, $get_ch_name, $reply_anywhere) = @_;
my (@sended_addr, @sended_who);
my ($max_send) = $this->config->max_send_addresses;
foreach my $name (split(/\,/, $who)) {
next if grep{$_ eq $name;} @sended_who;
push(@sended_who, $name);
my ($to) = Auto::AliasDB->shared->find_alias([$this->config->alias_key('all')], [$name]);
my ($alias) = {};
$alias->{'who'} = $name;
if (!defined ($to)) {
foreach my $reply ($this->config->unknown('all')) {
$reply_anywhere->($reply, %$alias);
}
} elsif ($to->{'mail'}) {
next if grep{$_ == $to->{'mail'};} @sended_addr;
push(@sended_addr, $to->{'mail'});
my ($time) = time();
$alias->{'date'} =
Tools::DateConvert::replace(Auto::AliasDB::get_value($to, 'mail_date') ||
$this->config->date || $DATE_FORMAT, $time);
$alias->{'message'} = $text;
$this->_mail_send_reserve($msg, $sender, $alias, $to, $get_ch_name, $reply_anywhere, $time);
if (defined($max_send)) {
last if scalar(@sended_addr) >= $max_send;
}
} else {
foreach my $reply ($this->config->none_address('all')) {
$reply_anywhere->($reply, %$alias);
}
}
}
}
sub _mail_send_reserve {
my ($this, $msg, $sender, $alias, $to, $get_ch_name, $reply_anywhere, $time) = @_;
my ($subject) = Auto::AliasDB::get_value($to, 'mail_subject');
$subject = $this->config->subject || $SUBJECT unless $subject;
return Tools::MailSend->shared->
mail_send(
use_pop3 => $this->{use_pop3},
pop3_host => $this->config->pop3host,
pop3_port => $this->config->pop3port,
pop3_user => $this->config->pop3user,
pop3_pass => $this->config->pop3pass,
pop3_expire => $this->config->pop3_expire,
smtp_host => $this->config->smtphost,
smtp_port => $this->config->smtpport,
smtp_user => $this->config->smtpuser,
smtp_pass => $this->config->smtppass,
smtp_fqdn => $this->config->smtp_fqdn,
sender => 'Auto::MesMail::' . $msg->prefix(),
priority => 0,
env_from => $this->{from_addr},
env_to => [Tools::MailSend::parse_mailaddrs(@{Auto::AliasDB::get_array($to, 'mail')})],
from => $this->config->from_header || $this->config->from || $this->{from_addr},
to => Auto::AliasDB::get_value($to, 'mail'),
subject => $subject,
data_type => Tools::MailSend::DATA_TYPES->{inner_iter},
data => \&_data,
reply_ok => \&_reply_ok,
reply_error => \&_reply_error,
reply_fatal => \&_reply_fatal,
local =>
{
this => $this,
alias => $alias,
from =>
Auto::AliasDB::concat_string_to_key(
Auto::AliasDB->shared->
find_alias_with_stdreplace($msg->nick,
$msg->name,
$msg->host,
$msg->prefix,
1 # public
), 'from.'),
to =>
Auto::AliasDB->shared->
remove_private(
Auto::AliasDB::concat_string_to_key($to, 'to.'),
'to.'),
reply_anywhere => $reply_anywhere,
time => $time,
replacer => sub {
my ($str, %extra_replaces) = @_;
Auto::AliasDB->shared->
stdreplace(
$msg->prefix || $sender->fullname,
$str,
$msg,
$sender,
%extra_replaces,
'channel' => $get_ch_name->());
},
},
);
}
sub _data {
my ($struct, $socksend) = @_;
my $this = $struct->{local}->{this};
my $alias = $struct->{local}->{alias};
my $from = $struct->{local}->{from};
my $to = $struct->{local}->{to};
my $replacer = $struct->{local}->{replacer};
my @format = @{Auto::AliasDB::get_array($to, 'mail_format') || []};
@format = $this->config->format('all') unless @format;
@format = $FORMAT unless @format;
foreach my $send_line (@format) {
$socksend->($replacer->($send_line, %$from, %$to, %$alias));
}
}
sub _reply_error {
my ($struct, $state, $line, $info) = @_;
# 使用者にerrorを返すメソッド。$infoには送信失敗のmail addressが含まれるはずだが、
# channelに向かってmail addressを広報することになるので使用しないことを勧める。
# なお、from/toにはprivate指定されたものは含まれない。
# stateには失敗したときの状態が渡され、'error-mail' や 'fatalerror-connect' のように
# 状態別詳細メッセージを定義することが出来る。
my $this = $struct->{local}->{this};
my $alias = $struct->{local}->{alias};
my $from = $struct->{local}->{from};
my $to = $struct->{local}->{to};
my $reply_anywhere = $struct->{local}->{reply_anywhere};
my @replys = $this->config->get('error-' . lc($state), 'all');
@replys = $this->config->error('all') unless @replys;
foreach my $reply (@replys) {
$reply_anywhere->($reply, %$from, %$to, %$alias,
state => $state,
line => $line,
info => $info
);
}
}
sub _reply_fatal {
my ($struct, $state, $line, $info) = @_;
# 使用者にerrorを返すメソッド。$infoには送信失敗のmail addressが含まれるはずだが、
# channelに向かってmail addressを広報することになるので使用しないことを勧める。
# なお、from/toにはprivate指定されたものは含まれない。
# stateには失敗したときの状態が渡され、'error-mail' や 'fatalerror-connect' のように
# 状態別詳細メッセージを定義することが出来る。
# fatal は1送信者につき1つだけ返される(はず)。
my $this = $struct->{local}->{this};
my $alias = $struct->{local}->{alias};
my $from = $struct->{local}->{from};
my $to = $struct->{local}->{to};
my $reply_anywhere = $struct->{local}->{reply_anywhere};
# user notfound
my @replys = $this->config->get('fatalerror-' . lc($state), 'all');
@replys = $this->config->fatalerror('all') unless @replys;
foreach my $reply (@replys) {
$reply_anywhere->($reply, %$from, %$to, %$alias,
state => $state,
line => $line,
info => $info
);
}
}
sub _reply_ok {
my ($struct) = @_;
# 使用者にacceptを返すメソッド。
# from/toにはprivate指定されたものは含まれない。
my $this = $struct->{local}->{this};
my $alias = $struct->{local}->{alias};
my $from = $struct->{local}->{from};
my $to = $struct->{local}->{to};
my $reply_anywhere = $struct->{local}->{reply_anywhere};
foreach my $reply ($this->config->accept('all')) {
$reply_anywhere->($reply, %$from, %$alias, %$to);
}
}
1;
=pod
info: 伝言をメールとして送信する。
default: off
# メールアドレスはエイリアスの mail を参照します。
# Fromアドレス。[default: OSのユーザ名]
from: example1@example.jp
# 送信用のキーワード [default: mesmail_send]
send: 速達伝言
# 使用を許可する人&チャンネルのマスク。
# 例はTiarraモード時。 [default: なし]
mask: * +*!*@*
# [plum-mode] mask: +*!*@*
# maskで拒否されたときのメッセージ [default: なし]
deny: 伝言したくない。
# 一度に送れる宛先の量 [default: 無制限]
max-send-address: 5
# 宛先を探すエイリアスエントリ [default: なし]
alias-key: name
alias-key: nick
# 宛先の人を判別出来なかったときのメッセージ [default: なし]
unknown: #(who)さんと言うのは誰ですか?
# メールの日付形式
date: %H:%M:%S
# エイリアスは見付かったけれどメールアドレスが登録されていなかったときのメッセージ。 [default: なし]
-none-address: #(who)さんはアドレスを登録していません。
# SMTPのホスト [default: localhost]
-smtphost: localhost
# SMTPのポート [default: smtp(25)]
-smtpport: 25
# SMTPで自ホストのFQDN [default: localhost]
-smtpfqdn: localhost
# SMTPのユーザ。指定されれば SMTP Auth を行う [default: なし]
-smtpuser: example1
# SMTPのパスワード [default: 空パスワード('')]
-smtppass: test-password
# 送信するメールの既定件名(エイリアス使用不可) [default: Message from IRC]
-subject: Message from IRC
# 送信するメールの本文 [default: #(date) << #(from.name|from.nick|from.nick.now) >> #(message)]
-format: #(date)に#(from.name|from.nick|from.nick.now)さんから#(message)という伝言です。
# 送信したときのメッセージ。 [default: なし]
accept: #(who)さんに#(message)と伝言しておきました。
# ---- POP before SMTP の指定 ----
# POP before SMTPを使う。 [default: no]
-use-pop3: yes
# POP before SMTPのタイムアウト時間(分)。分からない場合は指定しなくて良い。 [default: 0]
-pop3-expire: 4
# POPのホスト。 [default: localhost]
-pop3host: localhost
# POPのポート。 [default: pop(110)]
-pop3port: 110
# POPのユーザ [default: OSのユーザ名]
-pop3user: example1
# POPのパスワード [default: 空パスワード('')]
-pop3pass: test-password
# ---- エラーメッセージの設定 ----
# 一般エラー。
# error-[state] と言う形式で詳細エラーメッセージを指定できる。
# [state]は、
# * mailfrom(メールの送信者を指定しようとしてエラー)
# * rcptto(メールの送信先を指定しようとしてエラー)
# * norcptto(メールの送信先が全部無くなった)
# * data(メールの中身を送信しようとしてエラー)
# * finish(メールの中身を送信したらエラー)
# がある。特に欲しくなければerror-[state]は指定しなくても構わない。
# メッセージを出したくないなら中身の無いエントリを指定すれば良い。
# error-[state]が指定されてない場合は代わりに error を使う。 [default: 未定義]
-error-rcptto:
-error-norcptto: #(who)さんには送れませんでした。送信できるメールアドレスがありません。
-error-data: メールが送信できません。DATAコマンドに失敗しました。#(line;サーバ応答:%s|;)
-error: メール送信エラーです。#(line;サーバ応答:%s|;)#(state; on %s|;)
# 致命的なエラー。メールに個別なエラーではないので送信者(のprefix)毎に1メッセージ送られる。
# fatalerror-[state]
# [state]:
# * first(接続エラー)
# * helo(SMTPセッションを開始出来ない)
# がある。特に欲しくなければfatalerror-[state]は指定しなくても構わない。
# メッセージを出したくないなら中身の無いエントリを指定すれば良い。
# fatalerror-[state]が指定されてない場合は代わりに fatalerror を使う。 [default: 未定義]
-fatalerror-first: SMTPサーバに接続できません。
-fatalerror: SMTPセッションで致命的なエラーがありました。#(line; サーバ応答:%s|;)#(state; on %s|;)
=cut
|