]> ruin.nu Git - ndwebbie.git/blobdiff - scripts/ndmail.pl
Adding the perl and sql scripts
[ndwebbie.git] / scripts / ndmail.pl
diff --git a/scripts/ndmail.pl b/scripts/ndmail.pl
new file mode 100755 (executable)
index 0000000..a47a33c
--- /dev/null
@@ -0,0 +1,69 @@
+#!/usr/bin/perl
+q{
+/***************************************************************************
+ *   Copyright (C) 2006 by Michael Andreen <harvATruinDOTnu>               *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
+ ***************************************************************************/
+};
+
+use strict;
+use warnings;
+use DBI;
+use DBD::Pg qw(:pg_types);
+use CGI qw/:standard/;
+
+use Email::Simple;
+use Email::StripMIME;
+use Encode::Encoder qw(encoder);
+use MIME::QuotedPrint;
+
+our $dbh;
+for my $file ("/home/whale/nddb.pl")
+{
+       unless (my $return = do $file){
+               warn "couldn't parse $file: $@" if $@;
+               warn "couldn't do $file: $!"    unless defined $return;
+               warn "couldn't run $file"       unless $return;
+       }
+}
+
+my @text = <>;
+my $text = join '',@text;
+
+my $email = Email::Simple->new(Email::StripMIME::strip_mime($text));;
+
+my $subject = encoder(decode_qp($email->header('Subject')))->utf8;
+my $body = 'FROM:'.encoder(decode_qp($email->header('From')))->utf8 . "\n\n" . encoder($email->body)->utf8;
+
+
+$dbh->begin_work;
+
+my $new_thread = $dbh->prepare(q{INSERT INTO forum_threads (fbid,subject,uid) VALUES(25,$1,-4)});
+
+if ($new_thread->execute(escapeHTML($subject))){
+       my $id = $dbh->last_insert_id(undef,undef,undef,undef,"forum_threads_ftid_seq");
+       my $insert = $dbh->prepare(q{INSERT INTO forum_posts (ftid,message,uid) VALUES($1,$2,-4)});
+       if ($insert->execute($id,escapeHTML($body))){
+               $dbh->commit;
+       }else{
+               print $dbh->errstr;
+       }
+}else{
+       print $dbh->errstr;
+}
+
+$dbh->disconnect;