File: Message.pm

package info (click to toggle)
courier-filter-perl 0.200%2Bds-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 412 kB
  • sloc: perl: 1,484; sh: 75; makefile: 9
file content (608 lines) | stat: -rw-r--r-- 15,829 bytes parent folder | download | duplicates (5)
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
#
# Courier::Message class
#
# (C) 2003-2008 Julian Mehnle <julian@mehnle.net>
# $Id: Message.pm 210 2008-03-21 19:30:31Z julian $
#
###############################################################################

=head1 NAME

Courier::Message - Class implementing an interface to a mail message in the
Courier MTA's message queue.

=cut

package Courier::Message;

=head1 VERSION

0.200

=cut

use version; our $VERSION = qv('0.200');

use warnings;
use strict;

use overload
    '""' => \&text;

use Encode;
use IO::File;
#use MIME::Words::Better;

use Error ':try';

use constant TRUE   => (0 == 0);
use constant FALSE  => not TRUE;

use constant fallback_8bit_char_encoding => 'windows-1252';

=head1 SYNOPSIS

    use Courier::Message;
    
    my $message = Courier::Message->new(
        file_name           => $message_file_name,
        control_file_names  => \@control_file_names,
    );
    
    # File names:
    my $message_file_name   = $message->file_name;
    my @control_file_names  = $message->control_file_names;
    
    # Message data properties:
    my $raw_message_text    = $message->text;
    my $header_hash         = $message->header;
    my $header_field        = $message->header($field);
    my $raw_body            = $message->body;
    
    # Control properties:
    my $control_hash        = $message->control;
    my $is_authenticated    = $message->authenticated;
    my $authenticated_user  = $message->authenticated_user;
    my $is_trusted          = $message->trusted;
    my $sender              = $message->sender;
    my @recipients          = $message->recipients;
    my $remote_host         = $message->remote_host;
    my $remote_host_name    = $message->remote_host_name;

=head1 DESCRIPTION

B<Courier::Message> encapsulates a mail message that is stored in the Courier
MTA's message queue, including the belonging control file(s), and provides an
easy to use, read-only interface through its message data and control
properties.  For light-weight calling of library functions or external
commands, the message and control file names may be retrieved without causing
the files to be parsed by B<Courier::Message>.

=cut

# Implementation:
###############################################################################

=head2 Constructor

The following constructor is provided:

=over

=item B<new(%options)>: returns I<Courier::Message>

Creates a new C<Courier::Message> object from the given message file name and
zero or more control file names.

%options is a list of key/value pairs representing any of the following
options:

=over

=item B<file_name>

I<Required>.  The absolute file name of the message file.

=item B<control_file_names>

I<Required>.  An array-ref containing the absolute file name(s) of zero or more
control files belonging to the message.

=back

=cut

sub new {
    my ($class, %options) = @_;
    my $self = { %options };
    return bless($self, $class);
}

=back

=head2 Instance methods

=head3 File names

The following file name accessors are provided:

=over

=item B<file_name>: returns I<string>

Returns the absolute file name of the message file.

=cut

sub file_name {
    my ($self) = @_;
    return $self->{file_name};
}

=item B<control_file_names>: returns I<list> of I<string>

Returns the absolute file names of the control files belonging to the message.

=cut

sub control_file_names {
    my ($self) = @_;
    return @{$self->{control_file_names}};
}

=back

=head3 Message data properties

=over

=item B<text>: returns I<string>; throws Perl exceptions

Reads the message text from the message file into memory once.  Returns the raw
message text as bytes (see L<bytes>, and L<PerlIO/"bytes">).  Throws a Perl
exception if the message file cannot be read.

=cut

sub text {
    my ($self) = @_;
    
    if (not defined($self->{text})) {
        # Read message text from file:
        local $/;
        my $message_file = IO::File->new($self->{file_name}, '<:bytes');
        $self->{text} = <$message_file>;
    }
    
    return $self->{text};
}

=begin comment

=item B<parse>: returns I<Courier::Message>

Parses the message text once by doing the following: splits the message text
into header and body; tries to interpret the header as UTF-8, falling back to
a legacy 8-bit character encoding; parses header fields from the header;
decodes any MIME encoded words in field values.  Saves the parsed header fields
and the message text in the message object.  Returns the message object.

=end comment

=cut

sub parse {
    my ($self) = @_;
    
    if (
        not defined($self->{header}) or
        not defined($self->{body})
    ) {
        # Parse header and body from message text:
        my $text = $self->text;
        my ($header_text, $body_text) = ($text =~ /^(.*?\n)\n(.*)$/s);
        
        my $header = {};
        if (defined($header_text)) {
            # UTF-8-ify the header text,
            # trying to interpret it as UTF-8 first,
            # falling back to the preset 8-bit character encoding if unsuccessful:
            my $header_text_utf8 = eval {
                Encode::decode('UTF-8', $header_text, Encode::FB_CROAK)
                # We explicitly use the strict form of UTF-8 introduced in Perl 5.8.7
                # in order to sanitize input data and prevent invalid UTF-8 code.
            };
            $header_text =
                (not $@) ?
                    $header_text_utf8
                :   Encode::decode($self->fallback_8bit_char_encoding, $header_text);
            
            # Unfold header lines:
            $header_text =~ s/\n(?=\s)//g;
            
            # Parse header lines into a hash of arrays:
            while ($header_text =~ /^([\w-]+):[ \t]*(.*)$/mg) {
                my ($field, $value) = (lc($1), $2);
                try {
                    $value = MIME::Words::Better::decode($value, $self->fallback_8bit_char_encoding);
                };
                push(@{$header->{$field}}, $value);
            }
        }
        
        $self->{header} = $header;
        $self->{body} = $body_text;
    }
    
    return $self;
}

=item B<header>: returns I<hash-ref> of I<string>

=item B<header($field)>: returns I<list> of I<string>

Parses the message header once by doing the following: tries to interpret the
header as I<UTF-8>, falling back to the 8-bit legacy encoding I<Windows-1252>
(a superset of I<ISO-8859-1>) and decoding that to I<UTF-8>; parses header
fields from the header; and decodes any MIME encoded words in field values.  If
no field name is specified, returns a hash-ref containing all header fields and
array-refs of their values.  If a (case I<in>sensitive) field name is
specified, in list context returns a list of the values of all header fields of
that name, in the order they occurred in the message header, or in scalar
context returns the value of the first header field of that name (or B<undef>
if no such header field exists).

=cut

sub header {
    my ($self, @field) = @_;
    
    my $header = $self->parse()->{header};
    if (@field) {
        my $field_values = $header->{lc($field[0])} || [];
        return wantarray ? @$field_values : $field_values->[0];
    }
    else {
        return $header;
    }
}

=item B<body>: returns I<string>

Returns the raw message body as bytes (see L<bytes>, and L<PerlIO/"bytes">).

=cut

sub body {
    my ($self) = @_;
    return $self->parse()->{body};
}

=begin comment

=item B<subject>: returns I<string>

Returns the decoded value of the message's "Subject" header field.

=end comment

=cut

sub subject {
    my ($self) = @_;
    return $self->header('subject');
}

=back

=head3 Control properties

=over

=item B<control>: returns I<hash-ref> of I<string>; throws Perl exceptions

=item B<control($field)>: returns I<list> of I<string>; throws Perl exceptions

Reads and parses all of the message's control files once.  If a (case
sensitive) field name (i.e. record type) is specified, returns a list of the
values of all control fields of that name, in the order they occurred in the
control file(s).  If no field name is specified, returns a hash-ref containing
all control fields and array-refs of their values.  Throws a Perl exception if
any of the control files cannot be read.

=cut

sub control {
    my ($self, @field) = @_;
    
    my $control = $self->{control};
    
    if (not defined($control)) {
        # Read control files:
        foreach my $control_file_name (@{$self->{control_file_names}}) {
            my $control_file = IO::File->new($control_file_name);
            while (my $record = <$control_file>) {
                $record =~ /^(\w)(.*)$/;
                my ($field, $value) = ($1, $2);
                push(@{$control->{$field}}, $value);
            }
        }
        
        # Store control information:
        $self->{control} = $control;
    }
    
    if (@field) {
        my $field_values = $control->{$field[0]} || [];
        return wantarray ? @$field_values : $field_values->[0];
    }
    else {
        return $control;
    }
}

=begin comment

=item B<control_f>: returns I<string>

Parses the HELO string, the remote host, and the remote host name from the C<f>
control record and stores them into the message object.

=end comment

=cut

sub control_f {
    my ($self, @field) = @_;
    
    if (
        not defined($self->{remote_host}) or
        not defined($self->{remote_host_name}) or
        not defined($self->{remote_host_helo})
    ) {
        $self->control('f') =~ /^dns; (.*) \((?:(.*?) )?\[(.*?)\]\)$/;
        $self->{remote_host} = $3;
        $self->{remote_host_name} = $2;
        $self->{remote_host_helo} = $1;
    }
    
    return @field ? $self->{$field[0]} : $self->control('f');
}

=item B<authenticated>: returns I<boolean>

Returns the authentication information (guaranteed to be a B<true> value) if
the message has been submitted by an authenticated user.  Returns B<false>
otherwise.

I<Note>:  The authentication status and information is currently determined and
taken from the message's first (i.e. the trustworthy) "Received" header field.
This is guaranteed to work correctly, but is not very elegant, so this is
subject to change.  As soon as Courier supports storing the complete
authentication info (including the authenticated user name) in a control field,
I<that> will be the preferred source.  This mostly just means that the
I<format> of the authentication info will probably change in the future.

=cut

sub authenticated {
    my ($self) = @_;
    
    return $self->{authenticated}
        if defined($self->{authenticated});
    
    # Starting from Courier 0.57.1, the mere authentication status could be
    # determined from the 'u' control field ("smtp" vs. "authsmtp") -- but not
    # the authenticated user name.  So we do not make use of it for now.
    
    TRY: {
        # Get first "Received" header (and only the first!):
        my $received = $self->header('received');
        
        last TRY if not defined($received);
        last TRY if not $received =~ /^from\s+\S+\s+\(.*?\)\s+\((.*?)\)\s+by/i;
                                     # from   HELO  (HOST+IP)  (PARAMS)   by ...
        my %params = map(
            /^([\w-]+):\s*(.*)$/ ? (lc($1) => $2) : (),
            split(/,\s+/, $1)
        );
        
        return $self->{authenticated} = $params{auth}
            # Authenticated!
            if defined($params{auth});
    }
    
    return $self->{authenticated} = '';
        # Not authenticated.
}

=item B<authenticated_user>: returns I<string>

Returns the user name that was used for authentication during submission of the
message.  Returns B<undef> if no authentication took place.

=cut

sub authenticated_user {
    my ($self) = @_;
    
    return $self->{authenticated_user}
        if defined($self->{authenticated_user});
    
    my $authenticated = $self->authenticated;
    
    if (
        defined($self->authenticated) and
        $self->authenticated =~ /^\S+\s+(\S+)$/
                                # METHOD IDENTITY
    ) {
        return $self->{authenticated_user} = $1;
    }
    else {
        return $self->{authenticated_user} = undef;
    }
}

=item B<trusted>: returns I<boolean>

Returns a boolean value indicating whether the message is trusted.  Currently,
trusted messages are defined to be messages directly submitted by an
authenticated user.  For details on how the authenticated status is determined,
see the description of the C<authenticated> property.

=cut

sub trusted {
    my ($self) = @_;
    return $self->authenticated ? TRUE : FALSE;
}

=item B<sender>: returns I<string>

Returns the message's envelope sender (from the "MAIL FROM" SMTP command).

=cut

sub sender {
    my ($self) = @_;
    return $self->control('s');
}

=item B<recipients>: returns I<list> of I<string>

Returns all of the message's envelope recipients (from the "RCPT TO" SMTP
commands).

=cut

sub recipients {
    my ($self) = @_;
    return $self->control('r');
}

=item B<remote_host>: returns I<string>

Returns the IP address of the SMTP client that submitted the message.

=cut

sub remote_host {
    my ($self) = @_;
    return $self->control_f('remote_host');
}

=item B<remote_host_name>: returns I<string>

Returns the host name (gained by Courier through a DNS reverse lookup) of the
SMTP client that submitted the message, if available.

=cut

sub remote_host_name {
    my ($self) = @_;
    return $self->control_f('remote_host_name');
}

=item B<remote_host_helo>: returns I<string>

Returns the HELO string that the SMTP client specified, if available.

=cut

sub remote_host_helo {
    my ($self) = @_;
    return $self->control_f('remote_host_helo');
}

=back

=head1 SEE ALSO

For AVAILABILITY, SUPPORT, and LICENSE information, see
L<Courier::Filter::Overview>.

=head1 AUTHOR

Julian Mehnle <julian@mehnle.net>

=cut


#
# MIME::Words replacement functions
#
# (C) 2004-2008 Julian Mehnle <julian@mehnle.net>
#
###############################################################################

package MIME::Words::Better;

use warnings;
use strict;

use base 'Exporter';

our @EXPORT = qw(decode_mimewords);

use Encode ();
use MIME::Base64 ();
use MIME::QuotedPrint ();

use Error ':try';

use constant TRUE   => (0 == 0);
use constant FALSE  => not TRUE;

use constant fallback_char_encoding => 'utf-8';

# MIME encoded words grammar (RFC 2047, section 2):
use constant encoded_word_pattern   => qr{
    =\? ([\w-]+) (?:\*([\w-]+))? \? ([\w]) \? ([^?]*?) \?=
    #   Charset     Language       Encoding    Chunk
}ox;

sub decode_mimewords {
    my ($text, $fallback_char_encoding) = @_;
    
    # Drop whitespace between two encoded words:
    $text =~ s/(${\encoded_word_pattern})\s+(${\encoded_word_pattern})/$1$6/;
    
    $text =~ s[(${\encoded_word_pattern})] {
        my ($encoded_word, $char_enc, $xfer_enc, $chunk) = ($1, $2, lc($4), $5);
        my $decoded_word;
        
        $char_enc =
            Encode::resolve_alias($char_enc) ||
            $fallback_char_encoding ||
            fallback_char_encoding;
        
        try {
            if ($xfer_enc eq 'b') {
                # Base 64!
                $chunk = MIME::Base64::decode($chunk);
            }
            elsif ($xfer_enc eq 'q') {
                # Quoted Printable!
                $chunk =~ tr/_/\x{20}/;
                $chunk = MIME::QuotedPrint::decode($chunk);
            }
            
            $decoded_word = Encode::decode($char_enc, $chunk);
        }
        otherwise {
            # The chunk contains invalid characters, leave the encoded word as is:
            $decoded_word = $encoded_word;
        };
        
        $decoded_word;
    }eg;
    
    return $text;
}

BEGIN {
    no warnings 'once';
    *decode = \&decode_mimewords;
}

TRUE;