Hanno Hecker wrote: >> Is there a message ID that is unique to each message? > Not until the sending client has submitted a 'Message-ID' header ;-)
> But it would be easy to add / generate a transaction id after every > reset_transaction() call. This could be logged instead of (or as > addition to) the PID. > + $self->{_transaction_id} = sprintf("%08X", rand(2**32 - 1)); Is this uique enough? what is the chance of getting the same random number again? should it be a combination of the PID + time + rand? -- JT Moree