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
|
use strict;
use warnings;
use RT::Test::SMIME tests => undef, actual_server => 1;
my $test = 'RT::Test::SMIME';
use IPC::Run3 'run3';
use String::ShellQuote 'shell_quote';
use RT::Tickets;
use Test::Warn;
my ($url, $m) = RT::Test->started_ok;
ok $m->login, "logged in";
# configure key for General queue
RT::Test::SMIME->import_key('sender@example.com');
my $queue = RT::Test->load_or_create_queue(
Name => 'General',
CorrespondAddress => 'sender@example.com',
CommentAddress => 'sender@example.com',
);
ok $queue && $queue->id, 'loaded or created queue';
my $user = RT::Test->load_or_create_user(
Name => 'root@example.com',
EmailAddress => 'root@example.com',
);
RT::Test::SMIME->import_key('root@example.com.crt', $user);
RT::Test->add_rights( Principal => $user, Right => 'SuperUser', Object => RT->System );
my $mail = RT::Test->open_mailgate_ok($url);
print $mail <<EOF;
From: root\@localhost
To: rt\@$RT::rtname
Subject: This is a test of new ticket creation as root
Blah!
Foob!
EOF
RT::Test->close_mailgate_ok($mail);
{
my $tick = RT::Test->last_ticket;
is( $tick->Subject,
'This is a test of new ticket creation as root',
"Created the ticket"
);
my $txn = $tick->Transactions->First;
like(
$txn->Attachments->First->Headers,
qr/^X-RT-Incoming-Encryption: Not encrypted/m,
'recorded incoming mail that is not encrypted'
);
like( $txn->Attachments->First->Content, qr'Blah');
}
{
# test for encrypted mail
my $buf = '';
run3(
shell_quote(
qw(openssl smime -encrypt -des3),
-from => 'root@example.com',
-to => 'sender@example.com',
-subject => "Encrypted message for queue",
$test->key_path('sender@example.com.crt'),
),
\"Subject: test\n\norzzzzzz",
\$buf,
\*STDERR
);
my ($status, $tid) = RT::Test->send_via_mailgate( $buf );
is ($status >> 8, 0, "The mail gateway exited normally");
my $tick = RT::Ticket->new( $RT::SystemUser );
$tick->Load( $tid );
is( $tick->Subject, 'Encrypted message for queue',
"Created the ticket"
);
my $txn = $tick->Transactions->First;
my ($msg, $attach, $orig) = @{$txn->Attachments->ItemsArrayRef};
is( $msg->GetHeader('X-RT-Incoming-Encryption'),
'Success',
'recorded incoming mail that is encrypted'
);
is( $msg->GetHeader('X-RT-Privacy'),
'SMIME',
'recorded incoming mail that is encrypted'
);
like( $attach->Content, qr'orz');
is( $orig->GetHeader('Content-Type'), 'application/x-rt-original-message');
}
{
my $buf = '';
run3(
join(
' ',
shell_quote(
RT->Config->Get('SMIME')->{'OpenSSL'},
qw( smime -sign -nodetach -passin pass:123456),
-signer => $test->key_path('root@example.com.crt'),
-inkey => $test->key_path('root@example.com.key'),
),
'|',
shell_quote(
qw(openssl smime -encrypt -des3),
-from => 'root@example.com',
-to => 'sender@example.com',
-subject => "Encrypted and signed message for queue",
$test->key_path('sender@example.com.crt'),
)),
\"Subject: test\n\norzzzzzz",
\$buf,
\*STDERR
);
my ($status, $tid) = RT::Test->send_via_mailgate( $buf );
my $tick = RT::Ticket->new( $RT::SystemUser );
$tick->Load( $tid );
ok( $tick->Id, "found ticket " . $tick->Id );
is( $tick->Subject, 'Encrypted and signed message for queue',
"Created the ticket"
);
my $txn = $tick->Transactions->First;
my ($msg, $attach, $orig) = @{$txn->Attachments->ItemsArrayRef};
is( $msg->GetHeader('X-RT-Incoming-Encryption'),
'Success',
'recorded incoming mail that is encrypted'
);
like( $attach->Content, qr'orzzzz');
}
{
my $buf = '';
run3(
shell_quote(
RT->Config->Get('SMIME')->{'OpenSSL'},
qw( smime -sign -passin pass:123456),
-signer => $test->key_path('root@example.com.crt'),
-inkey => $test->key_path('root@example.com.key'),
),
\"Content-type: text/plain\n\nThis is the body",
\$buf,
\*STDERR
);
$buf = "Subject: Signed email\n"
. "From: root\@example.com\n"
. $buf;
{
my ($status, $tid) = RT::Test->send_via_mailgate( $buf );
my $tick = RT::Ticket->new( $RT::SystemUser );
$tick->Load( $tid );
ok( $tick->Id, "found ticket " . $tick->Id );
is( $tick->Subject, 'Signed email',
"Created the ticket"
);
my $txn = $tick->Transactions->First;
my ($msg, $attach, $orig) = @{$txn->Attachments->ItemsArrayRef};
is( $msg->GetHeader('X-RT-Incoming-Signature'),
'"Enoch Root" <root@example.com>',
"Message was signed"
);
like( $attach->Content, qr/This is the body/ );
}
# Make the signature not match
$buf =~ s/This is the body/This is not the body/;
warning_like {
my ($status, $tid) = RT::Test->send_via_mailgate( $buf );
my $tick = RT::Ticket->new( $RT::SystemUser );
$tick->Load( $tid );
ok( $tick->Id, "found ticket " . $tick->Id );
is( $tick->Subject, 'Signed email',
"Created the ticket"
);
my $txn = $tick->Transactions->First;
my ($msg, $attach, $orig) = @{$txn->Attachments->ItemsArrayRef};
isnt( $msg->GetHeader('X-RT-Incoming-Signature'),
'"Enoch Root" <root@example.com>',
"Message was not marked signed"
);
like( $attach->Content, qr/This is not the body/ );
} qr/Failure during SMIME verify: The signature did not verify/;
}
undef $m;
done_testing;
|