package Email::MessageID; # $Id: MessageID.pm,v 1.3 2004/12/23 02:01:43 cwest Exp $ use strict; use vars qw[$VERSION]; $VERSION = '1.31'; use Email::Address; =head1 NAME Email::MessageID - Generate world unique message-ids. =head1 SYNOPSIS use Email::MessageID; my $mid = Email::MessageID->new; print "Message-ID: $mid\x0A\x0D"; =head1 DESCRIPTION Message-ids are optional, but highly recommended, headers that identify a message uniquely. This software generates a unique message-id. =head2 Methods =over 4 =item new my $mid = Email::MessageID->new; my $new_mid = Email::MessageID->new( host => $myhost ); This class method constructs an L object containing a unique message-id. You may specify custom C and C parameters. By default, the C is generated from C. By default, the C is generated using C's C and the process ID. Using these values we have the ability to ensure world uniqueness down to a specific process running on a specific host, and the exact time down to six digits of microsecond precision. =cut sub new { my ($class, %args) = @_; $args{user} ||= $class->create_user; $args{host} ||= $class->create_host; my $mid = join '@', @args{qw[user host]}; return Email::Address->new(undef, $mid); } sub create_host { require Sys::Hostname; return Sys::Hostname::hostname(); } my @CHARS = ('A'..'F','a'..'f',0..9); my %USERS; sub purge_users { undef %USERS } sub create_user { my $pseudo_random = $_[0]->_generate_string; my $user = join '.', time, $pseudo_random, $$; &create_user if $USERS{$user}++; return $user; } sub _generate_string { my $length = 3; $length = rand(8) until $length > 3; join '',map $CHARS[rand $#CHARS], 0 .. $length; } 1; __END__ =pod =back =head1 SEE ALSO L, L, L, L. =head1 AUTHOR Casey West, >. =head1 COPYRIGHT Copyright (c) 2004 Casey West. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut