aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Fripost/Schema/Domain.pm
blob: 75a525d64cfe049a6e65418c9fbbbde05e8db194 (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
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
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
package Fripost::Schema::Domain;

=head1 NAME

Domain.pm - Domain related methods in the Fripost Schema

=head1 DESCRIPTION

This module abstracts the LDAP schema definition and provides methods to
add, list or delete virtual domains.

=cut

use 5.010_000;
use strict;
use warnings;
use utf8;

use parent 'Fripost::Schema';
use Fripost::Schema::Util qw/must_attrs softdie canonical_dn dn2mail email_valid
                             ldap_explode_dn ldap_error ldap_and_filter/;
use Fripost::Schema::Mail;
use Net::IDN::Encode qw/domain_to_ascii domain_to_unicode email_to_unicode/;
use URI::Escape::XS 'encodeURIComponent';
use Encode;
use Net::Domain::TLD 'tld_exists';
use Net::DNS::Dig;
use Net::Whois::Parser 'parse_whois';
use String::Random;
use Template;

=head1 REPRESENTATION

Domains are imported and exported as hash references, having the
following keys:

=over 4

=item B<name>

A UTF-8 string representing the (internationalized) domain name.

=item B<isActive> => 0|1

Whether or not the domain is active.

=item B<isPending> => 0|1

Whether or not the domain is pending. This is key is ignored when adding
a new domain, unless the user is asking for a confirmation token.

=item B<canAddAlias>

An optional array reference containing the (internationalized) e-mails
addresses of users that have permission to create aliases (other than
domain owner or postmaster) under this domain. The local part may be
left empty to grant permissions to a whole domain.

=item B<canAddList>

An optional array reference containing the (internationalized) e-mails
addresses of users that have permission to create mailing lists (other
than domain owner or postmaster) under this domain. The local part may
be left empty to grant permissions to a whole domain.

=item B<owner>

An optional array reference containing the (internationalized) e-mails
addresses of the domain owners (other than postmasters).

=item B<postmaster>

An optional array reference containing the (internationalized) e-mails
addresses of the domain postmasters.

=item B<catchAlls>

An optional array reference containing the (internationalized)
catch-alls for that domain. Localparts may be left empty for domain
aliases.

=item B<description>

An array reference containing UTF-8 string representing that domain.

=item B<permissions>

An optional string representing the permission of the current user
against this domain. (Note that this key is ignored when inserting a new
domain, since the information is redundent with B<canAddAlias>,
B<canAddList>, B<owner> and B<postmaster>.) The string is a sequence of
characters which meaning is:

=over 4

=item B<a>

The current user can add aliases under that domain (but is not listed
among domain owners or postmasters).

=item B<l>

The current user can add mailing lists under that domain (but is not
listed among domain owners or postmasters).

=item B<o>

The current user owns that domain.

=item B<p>

The current user has postmaster rights on that domain.

=back

=back

Note that when retrieving a domain from the database, only a subset of
these keys may be visible, hence exported.


=head1 METHODS

=over 4

=item B<search> (I<domainname>, I<OPTIONS>)

Search for I<domainname>, or list all the known (and visible) domains
when I<domainname> is not defined. In list context, return a list of
domains represented as hash references, as explained above. In scalar
context, only the first domain found is returned. In void context, no
attributes are returned from the LDAP server, but it may nevertheless be
useful, to ensure that the result set is not empty for instance.

The following options are considered:

=over 4

=item B<-no-escape> => 0|1

By default, I<domainname> - when defined - is safely escaped before
insertion into the LDAP filter. This flag disables escaping. It is
useful if I<domainname> contains wildcards for instance.

=item B<-filter> => locked|unlocked

Limit the search scope to pending / non-pending domains only.

=item B<-keys>

An array reference containing the attributes that are to be retrived
from the LDAP server. Note that Access Control List may prevent the
current user to read or even search anything, though. The default is to
retrieve every visible attribute, unless in void context where B<-keys>
is set to [] that is, no attribute is sent back to the client.

=item B<-assert-exists>

A custom error to be raised on empty result sets. When 0, it makes the
method returns the size of the result set.

=item B<-sort> => 0|1

In list context, sort the results per domain name.

=back

Errors can be caught with options B<-die> and B<-error>, see
B<Fripost::Schema::Util> for details.

=cut

sub search {
    my $self = shift;
    my $domainname = shift;
    my %options = @_;

    # Nothing to do after an error.
    return if $options{'-error'} && ${$options{'-error'}};

    my @filters = ('objectClass=FripostVirtualDomain');

    if ($domainname) {
        $domainname = Net::LDAP::Util::escape_filter_value($domainname)
            unless $options{'-no-escape'};
        push @filters, 'fvd='.$domainname;
    }

    if (defined $options{'-filter'}) {
        push @filters, 'objectClass=FripostPendingEntry'
            if $options{'-filter'} eq 'locked';
        push @filters, '!(objectClass=FripostPendingEntry)'
            if $options{'-filter'} eq 'unlocked';
    }

    my $attrs = [];
    if (not (defined wantarray)) {
        # In void context, we are only interested in whether or not the
        # result set is empty.
        $attrs = [ '1.1' ];
    }
    elsif (defined $options{'-keys'}) {
        $attrs = @{$options{'-keys'}} ? [ &_keys_to_attrs(@{$options{'-keys'}}) ]
                                      : [ '1.1' ];
    }

    my $domains = $self->ldap->search( base => canonical_dn(@{$self->suffix})
                                     , scope => 'one'
                                     , deref => 'never'
                                     , filter => ldap_and_filter(@filters)
                                     , attrs => $attrs
                                     );
    ldap_error($domains, %options) // return;

    softdie ($options{'-assert-exists'}, %options) // return
        unless $domains->count;
    return $domains->count if exists $options{'-assert-exists'};

    &_entries_to_domains( $self->whoami, $options{'-keys'} // [],
        wantarray ? ( $options{'-sort'} ? $domains->sorted('fvd')
                                        : $domains->entries )
                  : $domains->pop_entry
    );
}

# Map a list of LDAP::Entry object into our public representation of
# domains.
sub _entries_to_domains {
    my $user = lc shift;
    my @dn = @{ldap_explode_dn $user};
    shift @dn;
    my $parent = lc (canonical_dn @dn);
    my $keys = shift;

    my @domains;
    foreach my $entry (@_) {

        # Ignore bogus entries.
        return unless defined $entry;
        my %domain;

        foreach my $attr ($entry->attributes) {
            my $val = $entry->get_value($attr, asref => 1);
            if ($attr eq 'fvd') {
                $domain{name} = domain_to_unicode($val->[0])
                    if not @$keys or grep { $_ eq 'name' } @$keys;
            }
            elsif ($attr eq 'fripostIsStatusActive') {
                $domain{isActive} = $val->[0] eq 'TRUE'
                    if not @$keys or grep { $_ eq 'isActive' } @$keys;
            }
            elsif ($attr eq 'objectClass') {
                $domain{isPending} = scalar (grep { lc $_ eq lc 'FripostPendingEntry' }
                                                  @$val )
                    if not @$keys or grep { $_ eq 'isPending' } @$keys;
            }
            elsif ($attr eq 'fripostCanAddAlias') {
                $domain{canAddAlias} = [ map { dn2mail($_) } @$val ]
                    if not @$keys or grep { $_ eq 'canAddAlias' } @$keys;
            }
            elsif ($attr eq 'fripostCanAddList') {
                $domain{canAddList} = [ map { dn2mail($_) } @$val ]
                    if not @$keys or grep { $_ eq 'canAddList' } @$keys;
            }
            elsif ($attr eq 'fripostOwner') {
                $domain{owner} = [ map { dn2mail($_) } @$val ]
                    if not @$keys or grep { $_ eq 'owner' } @$keys;
            }
            elsif ($attr eq 'fripostPostmaster') {
                $domain{postmaster} = [ map { dn2mail($_) } @$val ]
                    if not @$keys or grep { $_ eq 'postmaster' } @$keys;
            }
            elsif ($attr eq 'fripostOptionalMaildrop') {
                $domain{catchAlls} = [ map { &_email_to_unicode($_) } @$val ]
                    if not @$keys or grep { $_ eq 'catchAlls' } @$keys;
            }
            elsif ($attr eq 'description') {
               $domain{description} = [ map { Encode::_utf8_on($_); $_ } @$val ]
                    if not @$keys or grep { $_ eq 'description' } @$keys;
            }
            else {
                die "Missing translation for domain attribute ‘".$attr."’.";
            }
        }

        # Add a 'permissions' key if wanted.
        if ((not @$keys or grep { $_ eq 'permissions' } @$keys) and
            grep { $entry->exists($_) } qw/fripostCanAddAlias fripostCanAddList
                                           fripostOwner fripostPostmaster/) {
            my $perms = '';
            $perms .= 'a' if $entry->exists('fripostCanAddAlias') and
                             grep { $user eq lc $_  or  $parent eq lc $_ }
                                  $entry->get_value('fripostCanAddAlias');
            $perms .= 'l' if $entry->exists('fripostCanAddList') and
                             grep { $user eq lc $_  or  $parent eq lc $_ }
                                  $entry->get_value('fripostCanAddList');
            $perms  = 'o' if $entry->exists('fripostOwner') and
                             grep { $user eq lc $_ }
                                  $entry->get_value('fripostOwner');
            $perms  = 'p' if $entry->exists('fripostPostmaster') and
                             grep { $user eq lc $_ }
                                  $entry->get_value('fripostPostmaster');
            $domain{permissions} = $perms;
        }

        # Stop after the first processed domain in scalar mode.
        return \%domain unless wantarray;
        push @domains, \%domain;
    }
    return @domains;
}


# Map our domain keys into the LDAP attribute(s) that are required to
# fetch this information.
sub _keys_to_attrs {
    my %map = ( name => 'fvd'
              , isActive => 'fripostIsStatusActive'
              , isPending => 'objectClass'
              , canAddAlias => 'fripostCanAddAlias'
              , canAddList => 'fripostCanAddList'
              , owner => 'fripostOwner'
              , postmaster => 'fripostPostmaster'
              , catchAlls => 'fripostOptionalMaildrop'
              , description => 'description'
              , permissions => [ qw/fripostCanAddAlias fripostCanAddList
                                    fripostOwner fripostPostmaster/ ]
              );
    my %attrs;
    foreach my $k (@_) {
        die "Missing translation for key ‘".$k."’."
            unless exists $map{$k};
        if (ref $map{$k} eq 'ARRAY') {
            $attrs{$_} = 1 for @{$map{$k}};
        }
        else {
            $attrs{$map{$k}} = 1;
        }
    }
    return keys %attrs;
}



=item B<canIAdd> (I<username>, I<OPTIONS>)

Returns 0 or 1, depending on whether or not I<username> has permission
to add new domains. If I<username> is undefined, the current user is
considered instead.

Errors can be caught with options B<-die> and B<-error>, see
B<Fripost::Schema::Util> for details.

=cut

sub canIAdd {
    my $self = shift;
    my @dn = @{ldap_explode_dn ($self->mail2dn(shift) // $self->whoami)};
    my $user = lc (canonical_dn @dn);
    shift @dn;
    my $parent = lc (canonical_dn @dn);
    my %options = @_;

    # Nothing to do after an error.
    return if $options{'-error'} && ${$options{'-error'}};

    my $mesg = $self->ldap->search( base => canonical_dn(@{$self->suffix})
                                  , scope => 'base'
                                  , deref => 'never'
                                  , filter => 'objectClass=FripostVirtual'
                                  , attrs => [ 'fripostCanAddDomain' ]
                                  );
    ldap_error($mesg, %options) // return;

    # If these are raised, something is seriously wrong.
    die "Empty virtual directory?" unless $mesg->count;
    die "Multiple virtual directories?" unless $mesg->count == 1;

    my $base = $mesg->pop_entry // die "Empty virtual directory?";
    scalar (grep { lc $_ eq $user  or lc $_ eq $parent }
                 $base->get_value('fripostCanAddDomain'));
}



=item B<list_admin_emails> (I<domainname>, I<OPTIONS>)

Search for postmaster e-mail addresses for I<domainname>. For
I<domainname> itself and each of its parents, this routine searches for
a valid WHOIS containing e-mails, and lists postmaster@hostname (RFC
822, appendix C.6) if hostname has a MX record and does not use ours
yet.

Errors can be caught with options B<-die> and B<-error>, see
B<Fripost::Schema::Util> for details.

=cut

sub list_admin_emails {
    my $self = shift;
    my $domainname = shift;
    my %options = @_;

    # Nothing to do after an error.
    return if $options{'-error'} && ${$options{'-error'}};

    my @postmasters;
    my $tld = domain_to_ascii($domainname);
    my $domain;

    until ( tld_exists($tld) ) {
        softdie ("‘".$domainname."’ has an Invalid TLD.", %options) // return
            unless $tld =~ /\./;
        $domain = $tld;

        # Look for a valid MX record that is not ours.
        my %mx = Net::DNS::Dig->new()->for( $domain, 'MX' )->rdata;
        push @postmasters, 'postmaster@'.$domain  # RFC 822, appendix C.6
        if grep {!/\bfripost\.org$/} (values %mx);

        $tld =~ s/^[^\.]*\.//;
    }

    # Look for e-mail addresses in the WHOIS.
    my $info = parse_whois( domain => $domain );
    if (defined $info) {
        push @postmasters, @{$info->{emails}};
    }
    else {
        softdie ("Cannot WHOIS ‘".$domain."’", %options);
        return;
    }

    # Apply a unique sort on the list.
    my %hash;
    $hash{$_} = 1 for grep {email_valid($_ // '', -nodie => 1 )} @postmasters;
    sort keys %hash;
}



=item B<add> (I<domain>, I<OPTIONS>)

Add the domain I<domain>, represented by a hash reference as explained
above. If no owner is specified in I<domain>, the current user is
automatically promoted owner instead.

The following options are considered:

=over 4

=item B<-append> => 0|1

When I<domain>'s is already present, the default is to raise an error.
This flag appends the attributes in the new I<domain> to the existing
one (or replace the old values in case of single-valued attributes).

=item B<-dry-run> => 0|1

Merely simulate the insertion. I<domain> is still checked to be valid
and, unless B<-append> is set, its name is ensured not to be present in
the directory.

=item B<-send-confirmation-token> => I<email>

When set, this option locks down the domain before inserting it, and
send a message to I<email> with the unlocking token.

=item B<webapp_url>

The URL to send, together with the token, to provide instructions how to
unlock the domain.

=item B<tmpl_path>

Where to find the e-mail template with the instructions how to unlock
the domain.

=back

Errors can be caught with options B<-die> and B<-error>, see
B<Fripost::Schema::Util> for details.

=cut

sub add {
    my $self = shift;
    my $domain = shift;
    my %options = @_;

    # Nothing to do after an error.
    return if $options{'-error'} && ${$options{'-error'}};

    my $domainname = $domain->{name};
    # Check domain validity.
    &_is_valid($domain, %options) // return;
    my $dn = $self->mail2dn( $domain->{name} );

    # Search for an existing domain with the same name.
    my $exists = $self->search($domain->{name}, %options, '-assert-exists' => 0);
    softdie ( "Domain ‘".$domainname."’ already exists.", %options ) // return
        if not $options{'-append'} and $exists;
    # Stop here in dry-run mode.
    return 1 if $options{'-dry-run'};

    # Convert the domain into a LDAP entry, and remove keys to empty values.
    my %attrs = $self->_domain_to_entry (%$domain);
    Fripost::Schema::Util::clean_ldap_entry( \%attrs );

    my ($mesg, $token);
    if ($options{'-append'} and $exists) {
        # Replace single valued attributes; Add other attributes.
        my %unique = ( fripostIsStatusActive => $attrs{fripostIsStatusActive} );
        delete $attrs{$_} for (keys %unique);
        $mesg = $self->ldap->modify( $dn, replace => \%unique, add => \%attrs );
    }
    else {
        if ($options{'-send-confirmation-token'}) {
            # Add the pending class, and generate a random token.
            $attrs{objectClass} = [ qw/FripostVirtualDomain FripostPendingEntry/ ];
            $token = String::Random::->new->randregex('\w{32}');
            $attrs{fripostPendingToken} = $token;
        }
        else {
            $attrs{objectClass} = 'FripostVirtualDomain';
        }
        # The default owner is the current user.
        $attrs{fripostOwner} //= [ $self->whoami ];
        $mesg = $self->ldap->add( $dn, attrs => [ %attrs ] );
    }

    ldap_error($mesg, %options) // return;
    return 1 unless $options{'-send-confirmation-token'};

    # Send token
    email_valid ($options{'-send-confirmation-token'});
    my $tt = Template->new({ INCLUDE_PATH => $options{tmpl_path}
                           , INTERPOLATE  => 1 })
                 or die $Template::ERROR;
    my $vars = { domain => $domainname, token => $token };
    $vars->{unlockurl} = $options{webapp_url}
                          .encodeURIComponent($domainname)
                          .'/?unlock='.$token
        if defined $options{webapp_url};

    my $data;
    $tt->process( 'new-domain.tt', $vars, \$data) or die $tt->error;
    Fripost::Schema::Mail::->new( From    => $options{email_from} //
                                             $ENV{USER}.'@localhost'
                                , To      => $options{'-send-confirmation-token'}
                                , Subject => "Your new domain ".$domain->{name}
                                , Data    => $data
                                )->send;

    1;
}

# Convert our representation of domains into a hash which keys are LDAP
# attributes.
sub _domain_to_entry {
    my $self = shift;
    my %domain = @_;
    my %entry;

    foreach my $key (keys %domain) {
        if ($key eq 'name') {
            # Its value is forced by the DN.
        }
        elsif ($key eq 'isActive') {
            $entry{fripostIsStatusActive} = $domain{isActive} ? 'TRUE' : 'FALSE';
        }
        elsif ($key eq 'description') {
            $entry{description} = $domain{description};
        }
        elsif ($key eq 'catchAlls') {
            $entry{fripostOptionalMaildrop} = $domain{catchAlls};
        }
        elsif ($key eq 'canAddAlias') {
            $entry{fripostCanAddAlias} =
                [ map { $self->mail2dn($_) } @{$domain{canAddAlias}} ];
        }
        elsif ($key eq 'canAddList') {
            $entry{fripostCanAddList} =
                [ map { $self->mail2dn($_) } @{$domain{canAddList}} ];
        }
        elsif ($key eq 'owner') {
            $entry{fripostOwner} =
                [ map { $self->mail2dn($_) } @{$domain{owner}} ];
        }
        elsif ($key eq 'postmaster') {
            $entry{fripostPostmaster} =
                [ map { $self->mail2dn($_) } @{$domain{postmaster}} ];
        }
        else {
            die "Missing translation for domain key ‘".$key."’.";
        }
    }
    return %entry;
}



=item B<unlock> (I<domainname>, I<token>, I<OPTIONS>)

Unlock the pending domain I<domainname>, locked with I<token>.

Errors can be caught with options B<-die> and B<-error>, see
B<Fripost::Schema::Util> for details.

=cut


sub unlock {
    my $self = shift;
    my $domainname = shift;
    my $token = shift;
    my %options = @_;

    # Nothing to do after an error.
    return if $options{'-error'} && ${$options{'-error'}};

    my $dn = $self->mail2dn( $domainname );
    my $mesg = $self->ldap->compare( $dn
                                   , attr => 'fripostPendingToken'
                                   , value => $token );
    my $catch = { Net::LDAP::Constant::LDAP_COMPARE_TRUE => 0
                , Net::LDAP::Constant::LDAP_COMPARE_FALSE =>
                    "Wrong unlock code for ‘".$domainname."’"
                };
    ldap_error($mesg, %options, -die => $catch) // return;

    $mesg = $self->ldap->modify( $dn,
                delete => { 'objectClass' => 'FripostPendingEntry'
                          , 'fripostPendingToken' => []
                          });
    ldap_error($mesg, %options);
}






=item B<replace> (I<domain>, I<OPTIONS>)

Replace an existing domain with the given one.

Errors can be caught with options B<-die> and B<-error>, see
B<Fripost::Schema::Util> for details.

=cut

sub replace {
    my $self = shift;
    my $domain = shift;
    my %options = @_;

    # Nothing to do after an error.
    return if $options{'-error'} && ${$options{'-error'}};

    &_is_valid($domain, %options);
    my %entry = $self->_domain_to_entry (%$domain);
    my $mesg = $self->ldap->modify( $self->mail2dn($domain->{name})
                                  , replace => \%entry );
    ldap_error($mesg, %options);
}



# Ensure that the given domain is valid.
sub _is_valid {
    my $d = shift;
    my %options = @_;
    eval {
        must_attrs( $d, qw/name isActive/ );
        $d->{name} = email_valid( $d->{name}, -prefix => 'fake@',
                                              -error => 'Invalid domain',
                                              -exact => 1 );
        $d->{catchAlls} = [ map { email_valid($_, -prefix => 'fake') }
                                @{$d->{catchAlls}} ]
                if $d->{catchAlls};
        $d->{canAddAlias} = [ map { email_valid($_, -prefix => 'fake') }
                                     @{$d->{canAddAlias}} ]
                if $d->{canAddAlias};
        $d->{canAddList} = [ map { email_valid($_, -prefix => 'fake') }
                                    @{$d->{canAddList}} ]
                if $d->{canAddList};
        $d->{owner} = [ map { email_valid($_, -prefix => 'fake') }
                                    @{$d->{postmaster}} ]
                if $d->{postmaster};
        $d->{postmaster} = [ map { email_valid($_, -prefix => 'fake') }
                                    @{$d->{postmaster}} ]
                if $d->{postmaster};
    };
    softdie ($@, %options);
}


# A variant of email_to_unicode that also takes care of domain aliases.
sub _email_to_unicode {
    my $email = shift;
    return '@'.domain_to_unicode($email) if $email =~ s/^\@//;
    return email_to_unicode($email);
}

=back

=head1 AUTHOR

Guilhem Moulin C<< <guilhem at fripost.org> >>

=head1 COPYRIGHT

Copyright 2012,2013 Guilhem Moulin.

=head1 LICENSE

This program is free software; you can redistribute it and/or modify it
under the same terms as perl itself.

=cut

1;

__END__