404 Blog Not Found:perl - mail to twitter gateway をみて触発されて(?)、メールの本文にクエリを書いてメールするとWikipediaの内容が返信されてくるメールゲートウェイをPerlで書いてみた。ほぼ生まれて初めてCPANを駆使したから内容的にはかなり適当。まだ文字化けが残ってるけど一応ちょこっと調べたいときとかには使えそう。 ソースを公開しておく。 #!/usr/bin/perl -w use warnings; use strict; use Net::POP3; use Net::SMTP; use WWW::Wikipedia; use utf8; use Encode qw(from_to); use Encode; use MIME::Base64; my $smtp_server = 'SMTPサーバ'; my $pop_se
