summaryrefslogtreecommitdiff
path: root/fml/lib/FML
diff options
context:
space:
mode:
authorfukachan <fukachan>2006-11-19 05:12:12 +0000
committerfukachan <fukachan>2006-11-19 05:12:12 +0000
commit040c868148ae8a483b866bf6c1fb196760d76037 (patch)
treea13eba077b4d5b5cc98422087cb6a4cc8a66830d /fml/lib/FML
parent86acfe41dfe97d3b73675de80016f6f9e8c9e89c (diff)
downloadfml8-040c868148ae8a483b866bf6c1fb196760d76037.tar.gz
fml8-040c868148ae8a483b866bf6c1fb196760d76037.tar.bz2
fml8-040c868148ae8a483b866bf6c1fb196760d76037.zip
fix comments.
ensure initial value.
Diffstat (limited to 'fml/lib/FML')
-rw-r--r--fml/lib/FML/Header/MessageID.pm18
1 files changed, 10 insertions, 8 deletions
diff --git a/fml/lib/FML/Header/MessageID.pm b/fml/lib/FML/Header/MessageID.pm
index 80833160..dfb891d3 100644
--- a/fml/lib/FML/Header/MessageID.pm
+++ b/fml/lib/FML/Header/MessageID.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: MessageID.pm,v 1.25 2006/04/17 23:58:58 fukachan Exp $
+# $FML: MessageID.pm,v 1.26 2006/04/18 11:14:06 fukachan Exp $
#
package FML::Header::MessageID;
@@ -14,7 +14,7 @@ use Carp;
=head1 NAME
-FML::Header::MessageID - manupulate message-id.
+FML::Header::MessageID - manipulate message-id.
=head1 SYNOPSIS
@@ -59,17 +59,19 @@ sub new
=head2 db_open($db_args)
-open db and return HASH_REF for the db access.
+open message-id database and return HASH_REF for the db access.
=head2 db_close()
+close message-id database (dummy).
+
=cut
# Descriptions: open message-id database.
# Arguments: OBJ($self) HASH_REF($db_args)
# Side Effects: open database.
-# Return Value: HASH_ERF
+# Return Value: HASH_REF
sub db_open
{
my ($self, $db_args) = @_;
@@ -147,7 +149,7 @@ sub set
my $db = $self->{ _db };
if (defined $db) {
- $db->{ $key } = $value;
+ $db->{ $key } = $value || '';
return $value;
}
@@ -157,12 +159,12 @@ sub set
=head2 gen_id($config)
-generate and return a new message-id.
+generate a new message-id and return it.
=cut
-# Descriptions: generate new message-id used in reply message.
+# Descriptions: generate a new message-id used in reply message.
# Arguments: OBJ($self) OBJ($config)
# Side Effects: counter increment
# Return Value: STR
@@ -171,7 +173,7 @@ sub gen_id
my ($self, $config) = @_;
my $post_addr = $config->{ article_post_address };
my $maintainer = $config->{ maintainer };
- my $addr = $post_addr || $maintainer;
+ my $addr = $post_addr || $maintainer;
$global_counter++;
return sprintf("<%d.%d.%s.%s>", time, $$, $global_counter, $addr);