X-Git-Url: http://git.jankratochvil.net/?p=PerlMail.git;a=blobdiff_plain;f=contacts-n9k2mutt;h=6136f45b5dafb0bde280ffd06fcdbb97aeda01c9;hp=bba3b461af2c679c42022c806439148e14d2100a;hb=cf20a52ff7cc7b56a0fce9526739a40d21544d16;hpb=0c848de6fd9c35f1ec9640b3adbab036ce0a5a91 diff --git a/contacts-n9k2mutt b/contacts-n9k2mutt index bba3b46..6136f45 100755 --- a/contacts-n9k2mutt +++ b/contacts-n9k2mutt @@ -17,6 +17,9 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Name: Lastname Firstname "nick1" "nick2", dropped text +# Company: same as Name to indicate company record + use vars qw($VERSION); $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; @@ -24,7 +27,6 @@ use strict; use warnings; require Getopt::Long; -require PerlMail::Contacts::9000; require Mail::Address; @@ -80,7 +82,11 @@ while (<>) { "obj"=>Mail::Address->new(($name_force || $name),$mail), },@nicks); } @data); + my %dupe; for (@nicked) { - print "alias ".$_->{"nick"}." ".$_->{"obj"}->format()."\n"; + my $nick=$_->{"nick"}; + my $dupe=$dupe{$nick}++; + $nick.=".$dupe" if $dupe; + print "alias $nick ".$_->{"obj"}->format()."\n"; } }