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
|
#!/usr/bin/perl
use strict;
use warnings;
use RT::Test tests => 11;
plan skip_all => 'GnuPG required.'
unless eval 'use GnuPG::Interface; 1';
plan skip_all => 'gpg executable is required.'
unless RT::Test->find_executable('gpg');
use File::Temp qw(tempdir);
my $homedir = tempdir( CLEANUP => 1 );
# catch any outgoing emails
RT::Test->set_mail_catcher;
RT->Config->Set( 'GnuPG',
Enable => 1,
OutgoingMessagesFormat => 'RFC' );
RT->Config->Set( 'GnuPGOptions',
homedir => $homedir,
'no-permission-warning' => undef);
RT->Config->Set( 'MailPlugins' => 'Auth::MailFrom', 'Auth::GnuPG' );
RT::Test->import_gnupg_key('rt-recipient@example.com');
RT::Test->import_gnupg_key('rt-test@example.com', 'public');
my ($baseurl, $m) = RT::Test->started_ok;
ok( $m->login, 'we did log in' );
# configure key for General queue
{
$m->get( $baseurl.'/Admin/Queues/');
$m->follow_link_ok( {text => 'General'} );
$m->submit_form(
form_number => 3,
fields => { CorrespondAddress => 'rt-recipient@example.com' },
);
$m->content_like(qr/rt-recipient\@example.com.* - never/, 'has key info.');
}
ok(my $user = RT::User->new($RT::SystemUser));
ok($user->Load('root'), "Loaded user 'root'");
$user->SetEmailAddress('recipient@example.com');
RT::Test->set_rights(
Principal => 'Everyone',
Right => ['CreateTicket'],
);
{
my $id = send_via_mailgate('quoted_inline_signature.txt');
my $tick = RT::Ticket->new( $RT::SystemUser );
$tick->Load( $id );
ok ($tick->id, "loaded ticket #$id");
my $txn = $tick->Transactions->First;
my ($msg, @attachments) = @{$txn->Attachments->ItemsArrayRef};
is( $msg->GetHeader('X-RT-Privacy'),
undef,
"no privacy is set as this ticket is not encrypted"
);
my @mail = RT::Test->fetch_caught_mails;
is(scalar @mail, 1, "autoreply only");
}
sub send_via_mailgate {
my $fname = shift;
my $emaildatadir = RT::Test::get_relocatable_dir(File::Spec->updir(),
qw(data gnupg emails special));
my $file = File::Spec->catfile( $emaildatadir, $fname );
my $mail = RT::Test->file_content($file);
my ($status, $id) = RT::Test->send_via_mailgate($mail);
is ($status >> 8, 0, "the mail gateway exited normally");
ok ($id, "got id of a newly created ticket - $id");
return $id;
}
|