summaryrefslogtreecommitdiff
path: root/img/dist/IM/imhsync.in
blob: 40ad94ebf9dc71e3b444ebcbeeddc67ce25a559f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#! @im_path_perl@
################################################################
###
###				 imhsync
###
### Author:  Internet Message Group <img@mew.org>
### Created: Jul 02, 1998
### Revised: Feb 28, 2000
###

BEGIN {
    @im_my_siteperl@
    @im_src_siteperl@
};

my $VERSION = "imhsync version 20000228(IM140)";

$Prog = 'imhsync';

##
## Require packages
##

use Fcntl;
use IM::Config;
use IM::History;
use IM::Message;
use IM::Util;
use integer;
use strict;
use vars qw($Prog $EXPLANATION @OptConfig @Hdr %Folder
	    $opt_db $opt_folder $opt_verbose $opt_debug $opt_help);

##
## Environments
##

$EXPLANATION = "
imhsync :: Refile by another DB
$VERSION

Usage: imhsync [options]
";

@OptConfig = (
    'db;s;;'         => 'reference DB.',
    'folder;s;;'     => 'folder to be refiled.',
    'verbose;b;;'    => 'With verbose messages.',
    'debug;d;;'      => "With debug message.",
    'help;b;;'       => "Show this message.",
    );

##
## Profile and option processing
##

init_opt(\@OptConfig);
read_cfg();
read_opt(\@ARGV); # help?
help($EXPLANATION) && exit $EXIT_SUCCESS if $opt_help;

debug_option($opt_debug) if $opt_debug;

##
## Main
##

if (msgdbfile() eq '') {
    im_die("MsgDBFile is not defined.\n");
}
if ($opt_db eq '') {
    im_die("--db option is not specified.\n");
}
if (! -f $opt_db) {
    im_die("$opt_db is not found.\n");
}
if ($opt_folder eq '') {
    im_die("--folder is not specified.\n");
}

{
    my $p = expand_path($opt_folder);
    if (-d $p) {
	# folder
	if (my_history_open($opt_db) < 0) {
	    exit $EXIT_ERROR;
	}
	folder_db_refile($p, $opt_folder);
	my_history_close();
    } else {
	im_warn("no message found to refile.\n");
	exit $EXIT_ERROR;
    }
}

exit $EXIT_SUCCESS;

sub db_refile ($$) {
    my ($msg, $folder) = @_;
    my ($multi_folder);
    local (@Hdr) = ();
    if (im_open(\*MSG, "<$msg")) {
	&read_header(\*MSG, \@Hdr, 0);
	close (MSG);
	my $mid = &header_value(\@Hdr, 'Message-ID');
	my $dest = my_history_lookup($mid, 0);
	my ($f, $df);
	$multi_folder = 0;
	$df = '';
	foreach $f (split(',', $dest)) {
	    $f =~ s|/[^/]*$||;
	    if ($df eq '') {
		$df = $f;
	    } elsif ($df ne $f) {
		$multi_folder = 1;
	    }
	}
	if ($df ne '') {
	    if ($folder ne $df &&  $multi_folder == 0) {
#		system("immv --src=$folder $df $msg");
		$Folder{$df} .= " $msg";
	    } else {
		print "keep $folder/$msg\n";
	    }
	}
	return 0;
    }
    return -1;
}

sub folder_db_refile ($$) {
    my ($dir, $folder) = @_;
    $dir =~ s|/$||;
    im_info("Refiling folder $dir\n");
    chdir ($dir);
    unless (opendir(FOLDER, $dir)) {
	im_warn("can't read $dir\n");
	return -1;
    }
    my @lower = ();
    my $f;
    foreach $f (readdir(FOLDER)) {
	if ($f eq '.' || $f eq '..') {
	} elsif ($f =~ /^\d+$/ && -f $f) {
#	    print(" $f\n");
	    db_refile($f, $folder);
	}
    }
    foreach $f (keys %Folder) {
	my $m = join(' ', sort(split(' ', $Folder{$f})));
	im_info("$f:$Folder{$f}\n");
	system("immv --src=$folder $f $Folder{$f}");
    }
    closedir(FOLDER);
}

use vars qw($DBtype $nodbfile $DB_HASH %History);

sub my_history_open ($$) {
    my ($dbfile) = @_;
    $DBtype = msgdbtype();	# package global
    unless ($DBtype) {
	$DBtype = 'DB';
    }

    if ($dbfile eq '') {
	$nodbfile = 1;
	return -2;
    }

    if ($DBtype eq 'DB') {
	require DB_File && import DB_File;
	$DB_HASH->{'cachesize'} = 100000 ;
    } elsif ($DBtype eq 'NDBM') {
	require NDBM_File && import NDBM_File;
    } elsif ($DBtype eq 'SDBM') {
	require SDBM_File && import SDBM_File;
    } elsif ($DBtype eq '') {
	im_err("no DB type defined.\n");
	return -2;
    } else {
	im_err("DB type $DBtype is not supported.\n");
	return -2;
    }

    im_debug("history database: $dbfile\n") if (&debug('history'));

    my ($db, $fd);
    if ($DBtype eq 'DB') {
	$db = tie %History, 'DB_File', $dbfile, O_RDONLY(), 0444;
    } elsif ($DBtype eq 'NDBM') {
	$db = tie %History, 'NDBM_File', $dbfile, O_RDONLY(), 0444;
    } elsif ($DBtype eq 'SDBM') {
	if (&win95p || &os2p){
	    $db = tie %History, 'SDBM_File', $dbfile, O_RDONLY(), 0444;
	} else {
	    $db = tie %History, 'SDBM_File', $dbfile, O_RDONLY(), 0444;
	}
    }

    unless ($db) {
	im_err "history: can not access $dbfile ($!)\n";
	return -1;
    }
    if ($DBtype eq 'DB') {
	$fd = $db->fd;
	if ($fd < 0) {
	    im_err "history: can not access $dbfile (fd = $fd)\n";
	    return -1;
	}
    }
    return 0;
}


sub my_history_close () {
    if ($nodbfile) {
	im_err("no database specified.\n");
	return;
    }
    untie %History;
}


sub my_history_lookup ($$) {
    if ($nodbfile) {
	im_err("no database specified.\n");
	return ();
    }
    my ($msgid, $field) = @_;
    $msgid =~ s/^<(.*)>$/$1/;
    if (defined($History{$msgid})) {
	if ($field == LookUpAll) {
	    return split("\t", $History{$msgid});
	} else {
	    my @flds = split("\t", $History{$msgid});
	    return $flds[$field];
	}
    } else {
	if ($field == LookUpAll) {
	    return ();
	} else {
	    return '';
	}
    }
}