2012-12-06 [mones] 3.9.0cvs43
[claws.git] / tools / outlook2claws-mail.pl
index 9248e27e541e6b892f61dc61f86e3dc3f56a97f7..67bc3ebebe6a557a5e96f79d3c9202ee52ad2812 100644 (file)
@@ -1,27 +1,27 @@
 #!/usr/bin/perl -w
 
-#  * Copyright 2002-2003 Ricardo Mones Lastra <mones@aic.uniovi.es>
-#  *
-#  * This file 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.
+# Copyright 2002-2003 Ricardo Mones <ricardo@mones.org>
+# 
+# This file 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 3 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.
 #
-# outlook2sylpheed.pl -- perl script to convert an Outlook generated 
-#                       contact list into a Claws Mail XML address book.
+# outlook2claws-mail.pl -- perl script to convert an Outlook generated 
+#                         contact list into a Claws Mail XML address book.
 # 
 # This script is based on:
 #      out2syl.sh by Rafael Lossurdo <mugas@via-rs.net>
-#      kmail2claws-mail.pl by Paul Mangan <claws@thewildbeast.co.uk>
+#      kmail2claws-mail.pl by Paul Mangan <paul@claws-mail.org>
 #
 # See README file for details and usage.
 #
@@ -103,9 +103,9 @@ sub write_address {
        my($al, $em, $re) = @_;
        if ($em eq "") {
                $em = "No e-mail address"; 
-               # email is a must -> no address breaks sylpheed display
-               # (sylpheed says file is ok but no name is shown) 
-               # maybe this is a bug on sylpheed?
+               # email is a must -> no address breaks claws-mail display
+               # (claws-mail says file is ok but no name is shown) 
+               # maybe this is a bug on claws-mail?
        }
        print NEWB "      <address uid=\"", $time++, "\" ";
        print NEWB "alias=\"", $al, "\" email=\"", $em, "\" remarks=\"", $re, "\" />\n";