Mon Nov 2 11:36:08 CET 2003 Jochen Eisinger <jochen@penguin-breeder.org>
authorJochen Eisinger <coffee@silcnet.org>
Mon, 3 Nov 2003 10:37:40 +0000 (10:37 +0000)
committerJochen Eisinger <coffee@silcnet.org>
Mon, 3 Nov 2003 10:37:40 +0000 (10:37 +0000)
* Fixed some bugs and typos related to sending split messages.
          Print notification when sending messages with /MMSG.  Affected
  file irssi/scripts/silc-mime.pl

CHANGES
apps/irssi/scripts/silc-mime.pl

diff --git a/CHANGES b/CHANGES
index 3e70e8f2a1d44eb4080de51e662a9256a0ac20a3..6589d3aeb58848188cf60c5a3c1923b2a20a6b78 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,9 @@
+Mon Nov  2 11:36:08 CET 2003 Jochen Eisinger <jochen@penguin-breeder.org>
+
+       * Fixed some bugs and typos related to sending split messages.
+          Print notification when sending messages with /MMSG.  Affected
+         file irssi/scripts/silc-mime.pl
+
 Fri Oct 31 12:33:59 EET 2003 Pekka Riikonen <priikone@silcnet.org>
 
        * Optimized the socket referencing in packet routines, client
index 2300fd70a1aab1ba14d4c858a267ee22e3bad736..dfe3e521fd2a6c18d6cbf8b795c3cccb3c6a4187 100644 (file)
@@ -3,7 +3,7 @@
 use vars qw($VERSION %IRSSI);
 
 use Irssi 20020704;
-$VERSION = "1.1";
+$VERSION = "1.2";
 %IRSSI = (
     authors    => "Jochen 'c0ffee' Eisinger",
     contact    => "c0ffee\@penguin-breeder.org",
@@ -130,6 +130,8 @@ my %partial;
 sub process_mime_entity {
   my ($witem, $signed, $sender, $entity) = @_;
 
+  my ($mimetype, $fh, $tempfile, $parser, $ret, $io, $mcap, $cmd);  
+
   $mimetype = Mail::Field->new('Content-type', $entity->head->get('Content-Type'));
 
   # check whether this is message/partial
@@ -475,7 +477,7 @@ Irssi::theme_register(['load_mailcap', 'Loading mailcaps from {hilight $0}',
        'mime_data_send', 'sending "{hilight $0}" data message',
        'mime_data_send_signed', 'sending "{hilight $0}" data message (signature {flag_signed})',
        'mime_data_multi', 'sending "{hilight $0}" data message ($1 chunks)',
-       'mime_data_multi_signed', 'sending "{hilight $0}" data message ($1 chunks, signaute {flag_signed})']);
+       'mime_data_multi_signed', 'sending "{hilight $0}" data message ($1 chunks, signature {flag_signed})']);