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
/*
* vSMTP mail transfer agent
* Copyright (C) 2022 viridIT SAS
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see https://www.gnu.org/licenses/.
*
*/
use crate::api::SharedObject;
use rhai::plugin::{
Dynamic, FnAccess, FnNamespace, Module, NativeCallContext, PluginFunction, RhaiResult, TypeId,
};
pub use code::*;
/// Predefined codes for SMTP responses.
#[rhai::plugin::export_module]
mod code {
use vsmtp_plugin_vsl::objects::constructors::code_enhanced;
/// Return a relay access denied code.
///
/// # Example
///
/// ```
/// # // Returning a access denied code in mail stage is stupid, but it works as an example.
/// # // Could not make it work at the rcpt stage.
/// # let states = vsmtp_test::vsl::run(
/// # |builder| Ok(builder.add_root_filter_rules(r#"
/// #{
/// mail: [
/// // Will send "554 5.7.1 Relay access denied" to the client.
/// rule "anti relay" || { state::deny(code::c554_7_1()) }
/// ]
/// }
/// # "#)?.build()));
/// # use vsmtp_common::{status::Status, Reply, ReplyCode::Enhanced};
/// # assert_eq!(states[&vsmtp_rule_engine::ExecutionStage::MailFrom].2,
/// # Status::Deny(
/// # "554 5.7.1 Relay access denied\r\n".parse().unwrap(),
/// # )
/// # );
/// ```
///
/// # rhai-autodocs:index:1
#[must_use]
#[rhai_fn(name = "c554_7_1")]
pub fn c554_7_1() -> SharedObject {
code_enhanced(554, "5.7.1", "Relay access denied").expect("valid code")
}
/// Return a DKIM Failure code. (RFC 6376)
/// DKIM signature not found.
///
/// # Example
///
/// ```
/// # let states = vsmtp_test::vsl::run(
/// # |builder| Ok(builder.add_root_filter_rules(r#"
/// #{
/// mail: [
/// // Will send "550 5.7.20 No passing DKIM signature found" to the client.
/// rule "deny with code" || { state::deny(code::c550_7_20()) }
/// ]
/// }
/// # "#)?.build()));
/// # use vsmtp_common::{status::Status, Reply, ReplyCode::Enhanced};
/// # assert_eq!(states[&vsmtp_rule_engine::ExecutionStage::MailFrom].2,
/// # Status::Deny(
/// # "550 5.7.20 No passing DKIM signature found\r\n".parse().unwrap(),
/// # )
/// # );
/// ```
///
/// # rhai-autodocs:index:2
#[must_use]
#[rhai_fn(name = "c550_7_20")]
pub fn c550_7_20() -> SharedObject {
code_enhanced(550, "5.7.20", "No passing DKIM signature found").expect("valid code")
}
/// Return a DKIM Failure code. (RFC 6376)
/// No acceptable DKIM signature found.
///
/// # Example
///
/// ```
/// # let states = vsmtp_test::vsl::run(
/// # |builder| Ok(builder.add_root_filter_rules(r#"
/// #{
/// mail: [
/// // Will send "550 5.7.21 No acceptable DKIM signature found" to the client.
/// rule "deny with code" || { state::deny(code::c550_7_21()) }
/// ]
/// }
/// # "#)?.build()));
/// # use vsmtp_common::{status::Status, Reply, ReplyCode::Enhanced};
/// # assert_eq!(states[&vsmtp_rule_engine::ExecutionStage::MailFrom].2,
/// # Status::Deny(
/// # "550 5.7.21 No acceptable DKIM signature found\r\n".parse().unwrap(),
/// # )
/// # );
/// ```
///
/// # rhai-autodocs:index:3
#[must_use]
#[rhai_fn(name = "c550_7_21")]
pub fn c550_7_21() -> SharedObject {
code_enhanced(550, "5.7.21", "No acceptable DKIM signature found").expect("valid code")
}
/// Return a DKIM Failure code. (RFC 6376)
/// No valid author matched DKIM signature found.
///
/// # Example
///
/// ```
/// # let states = vsmtp_test::vsl::run(
/// # |builder| Ok(builder.add_root_filter_rules(r#"
/// #{
/// mail: [
/// // Will send "550 5.7.22 No valid author-matched DKIM signature found" to the client.
/// rule "deny with code" || { state::deny(code::c550_7_22()) }
/// ]
/// }
/// # "#)?.build()));
/// # use vsmtp_common::{status::Status, Reply, ReplyCode::Enhanced};
/// # assert_eq!(states[&vsmtp_rule_engine::ExecutionStage::MailFrom].2,
/// # Status::Deny(
/// # "550 5.7.22 No valid author-matched DKIM signature found\r\n".parse().unwrap(),
/// # )
/// # );
/// ```
///
/// # rhai-autodocs:index:4
#[must_use]
#[rhai_fn(name = "c550_7_22")]
pub fn c550_7_22() -> SharedObject {
code_enhanced(
550,
"5.7.22",
"No valid author-matched DKIM signature found",
)
.expect("valid code")
}
/// Return a SPF Failure code. (RFC 7208)
/// Validation failed.
///
/// # Example
///
/// ```
/// # let states = vsmtp_test::vsl::run(
/// # |builder| Ok(builder.add_root_filter_rules(r#"
/// #{
/// mail: [
/// // Will send "550 5.7.23 SPF validation failed" to the client.
/// rule "deny with code" || { state::deny(code::c550_7_23()) }
/// ]
/// }
/// # "#)?.build()));
/// # use vsmtp_common::{status::Status, Reply, ReplyCode::Enhanced};
/// # assert_eq!(states[&vsmtp_rule_engine::ExecutionStage::MailFrom].2,
/// # Status::Deny(
/// # "550 5.7.23 SPF validation failed\r\n".parse().unwrap(),
/// # )
/// # );
/// ```
///
/// # rhai-autodocs:index:5
#[must_use]
#[rhai_fn(name = "c550_7_23")]
pub fn c550_7_23() -> SharedObject {
code_enhanced(550, "5.7.23", "SPF validation failed").expect("valid code")
}
/// Return a SPF Failure code. (RFC 7208)
/// Validation error.
///
/// # Example
///
/// ```
/// # let states = vsmtp_test::vsl::run(
/// # |builder| Ok(builder.add_root_filter_rules(r#"
/// #{
/// mail: [
/// // Will send "550 5.7.24 SPF validation error" to the client.
/// rule "deny with code" || { state::deny(code::c550_7_24()) }
/// ]
/// }
/// # "#)?.build()));
/// # use vsmtp_common::{status::Status, Reply, ReplyCode::Enhanced};
/// # assert_eq!(states[&vsmtp_rule_engine::ExecutionStage::MailFrom].2,
/// # Status::Deny(
/// # "550 5.7.24 SPF validation error\r\n".parse().unwrap(),
/// # )
/// # );
/// ```
///
/// # rhai-autodocs:index:6
#[must_use]
#[rhai_fn(name = "c550_7_24")]
pub fn c550_7_24() -> SharedObject {
code_enhanced(550, "5.7.24", "SPF validation error").expect("valid code")
}
/// Return a reverse DNS Failure code.
///
/// # Example
///
/// ```
/// # let states = vsmtp_test::vsl::run(
/// # |builder| Ok(builder.add_root_filter_rules(r#"
/// #{
/// mail: [
/// // Will send "550 5.7.25 Reverse DNS validation failed" to the client.
/// rule "deny with code" || { state::deny(code::c550_7_25()) }
/// ]
/// }
/// # "#)?.build()));
/// # use vsmtp_common::{status::Status, Reply, ReplyCode::Enhanced};
/// # assert_eq!(states[&vsmtp_rule_engine::ExecutionStage::MailFrom].2,
/// # Status::Deny(
/// # "550 5.7.25 Reverse DNS validation failed\r\n".parse().unwrap(),
/// # )
/// # );
/// ```
///
/// # rhai-autodocs:index:7
#[must_use]
#[rhai_fn(name = "c550_7_25")]
pub fn c550_7_25() -> SharedObject {
code_enhanced(550, "5.7.25", "Reverse DNS validation failed").expect("valid code")
}
/// Return a multiple authentication failures code.
///
/// # Example
///
/// ```
/// # let states = vsmtp_test::vsl::run(
/// # |builder| Ok(builder.add_root_filter_rules(r#"
/// #{
/// mail: [
/// // Will send "500 5.7.26 Multiple authentication checks failed" to the client.
/// rule "deny with code" || { state::deny(code::c500_7_26()) }
/// ]
/// }
/// # "#)?.build()));
/// # use vsmtp_common::{status::Status, Reply, ReplyCode::Enhanced};
/// # assert_eq!(states[&vsmtp_rule_engine::ExecutionStage::MailFrom].2,
/// # Status::Deny(
/// # "500 5.7.26 Multiple authentication checks failed\r\n".parse().unwrap(),
/// # )
/// # );
/// ```
///
/// # rhai-autodocs:index:8
#[must_use]
#[rhai_fn(name = "c500_7_26")]
pub fn c550_7_26() -> SharedObject {
code_enhanced(500, "5.7.26", "Multiple authentication checks failed").expect("valid code")
}
/// Return a Null MX cod. (RFC 7505)
/// The sender address has a null MX record.
///
/// # Example
///
/// ```
/// # let states = vsmtp_test::vsl::run(
/// # |builder| Ok(builder.add_root_filter_rules(r#"
/// #{
/// mail: [
/// // Will send "550 5.7.27 Sender address has null MX" to the client.
/// rule "deny with code" || { state::deny(code::c550_7_27()) }
/// ]
/// }
/// # "#)?.build()));
/// # use vsmtp_common::{status::Status, Reply, ReplyCode::Enhanced};
/// # assert_eq!(states[&vsmtp_rule_engine::ExecutionStage::MailFrom].2,
/// # Status::Deny(
/// # "550 5.7.27 Sender address has null MX\r\n".parse().unwrap(),
/// # )
/// # );
/// ```
///
/// # rhai-autodocs:index:9
#[must_use]
#[rhai_fn(name = "c550_7_27")]
pub fn c550_7_27() -> SharedObject {
code_enhanced(550, "5.7.27", "Sender address has null MX").expect("valid code")
}
/// Return a Null MX cod. (RFC 7505)
/// The recipient address has a null MX record.
///
/// # Example
///
/// ```
/// # // Returning a access denied code in mail stage is stupid, but it works as an example.
/// # // Could not make it work at the rcpt stage.
/// # let states = vsmtp_test::vsl::run(
/// # |builder| Ok(builder.add_root_filter_rules(r#"
/// #{
/// mail: [
/// // Will send "556 5.1.10 Recipient address has null MX" to the client.
/// rule "deny with code" || { state::deny(code::c556_1_10()) }
/// ]
/// }
/// # "#)?.build()));
/// # use vsmtp_common::{status::Status, Reply, ReplyCode::Enhanced};
/// # assert_eq!(states[&vsmtp_rule_engine::ExecutionStage::MailFrom].2,
/// # Status::Deny(
/// # "556 5.1.10 Recipient address has null MX\r\n".parse().unwrap(),
/// # )
/// # );
/// ```
///
/// # rhai-autodocs:index:10
#[must_use]
#[rhai_fn(name = "c556_1_10")]
pub fn c556_1_10() -> SharedObject {
code_enhanced(556, "5.1.10", "Recipient address has null MX").expect("valid code")
}
/// Return a greylisting code (<https://www.rfc-editor.org/rfc/rfc6647.html#section-2.1>)
///
/// # Example
///
/// ```
/// # let states = vsmtp_test::vsl::run(
/// # |builder| Ok(builder.add_root_filter_rules(r#"
/// #{
/// mail: [
/// // Will send "451 4.7.1 Sender is not authorized. Please try again." to the client.
/// rule "deny with code" || { state::deny(code::c451_7_1()) }
/// ]
/// }
/// # "#)?.build()));
/// # use vsmtp_common::{status::Status, Reply, ReplyCode::Enhanced};
/// # assert_eq!(states[&vsmtp_rule_engine::ExecutionStage::MailFrom].2,
/// # Status::Deny(
/// # "451 4.7.1 Sender is not authorized. Please try again.\r\n".parse().unwrap(),
/// # )
/// # );
/// ```
///
/// # rhai-autodocs:index:11
#[must_use]
#[rhai_fn(name = "c451_7_1")]
pub fn greylist() -> SharedObject {
code_enhanced(451, "4.7.1", "Sender is not authorized. Please try again.")
.expect("valid code")
}
/// Multiple destination domains per transaction is unsupported code.
///
/// # Example
///
/// ```
/// # // Returning a access denied code in mail stage is stupid, but it works as an example.
/// # // Could not make it work at the rcpt stage.
/// # let states = vsmtp_test::vsl::run(
/// # |builder| Ok(builder.add_root_filter_rules(r#"
/// #{
/// mail: [
/// // Will send "451 4.3.0 Multiple destination domains per transaction is unsupported. Please try again." to the client.
/// rule "deny with code" || { state::deny(code::c451_3_0()) }
/// ]
/// }
/// # "#)?.build()));
/// # use vsmtp_common::{status::Status, Reply, ReplyCode::Enhanced};
/// # assert_eq!(states[&vsmtp_rule_engine::ExecutionStage::MailFrom].2,
/// # Status::Deny(
/// # "451 4.3.0 Multiple destination domains per transaction is unsupported. Please try again.\r\n".parse().unwrap(),
/// # )
/// # );
/// ```
///
/// # rhai-autodocs:index:12
#[must_use]
#[rhai_fn(name = "c451_3_0")]
pub fn multi_destination() -> SharedObject {
code_enhanced(
451,
"4.3.0",
"Multiple destination domains per transaction is unsupported. Please try again.",
)
.expect("valid code")
}
/// Multiple destination domains per transaction is unsupported code.
///
/// # Example
///
/// ```
/// # // Returning a access denied code in mail stage is stupid, but it works as an example.
/// # // Could not make it work at the rcpt stage.
/// # let states = vsmtp_test::vsl::run(
/// # |builder| Ok(builder.add_root_filter_rules(r#"
/// #{
/// mail: [
/// // Will send "550 5.1.1 No passing DKIM signature found" to the client.
/// rule "deny with code" || { state::deny(code::c550_1_1()) }
/// ]
/// }
/// # "#)?.build()));
/// # use vsmtp_common::{status::Status, Reply, ReplyCode::Enhanced};
/// # assert_eq!(states[&vsmtp_rule_engine::ExecutionStage::MailFrom].2,
/// # Status::Deny(
/// # "550 5.1.1 The email account that you tried to reach does not exist. Please try again.\r\n".parse().unwrap(),
/// # )
/// # );
/// ```
///
/// # rhai-autodocs:index:13
#[must_use]
#[rhai_fn(name = "c550_1_1")]
pub fn unknown_account() -> SharedObject {
code_enhanced(
550,
"5.1.1",
"The email account that you tried to reach does not exist. Please try again.",
)
.expect("valid code")
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn codes() {
assert_eq!(
code::c554_7_1().to_string(),
"554 5.7.1 Relay access denied\r\n".to_string()
);
assert_eq!(
code::c550_7_20().to_string(),
"550 5.7.20 No passing DKIM signature found\r\n".to_string()
);
assert_eq!(
code::c550_7_21().to_string(),
"550 5.7.21 No acceptable DKIM signature found\r\n".to_string()
);
assert_eq!(
code::c550_7_22().to_string(),
"550 5.7.22 No valid author-matched DKIM signature found\r\n".to_string()
);
assert_eq!(
code::c550_7_23().to_string(),
"550 5.7.23 SPF validation failed\r\n".to_string()
);
assert_eq!(
code::c550_7_24().to_string(),
"550 5.7.24 SPF validation error\r\n".to_string()
);
assert_eq!(
code::c550_7_25().to_string(),
"550 5.7.25 Reverse DNS validation failed\r\n".to_string()
);
assert_eq!(
code::c550_7_26().to_string(),
"500 5.7.26 Multiple authentication checks failed\r\n".to_string()
);
assert_eq!(
code::c550_7_27().to_string(),
"550 5.7.27 Sender address has null MX\r\n".to_string()
);
assert_eq!(
code::c556_1_10().to_string(),
"556 5.1.10 Recipient address has null MX\r\n".to_string()
);
assert_eq!(
code::greylist().to_string(),
"451 4.7.1 Sender is not authorized. Please try again.\r\n".to_string()
);
assert_eq!(code::multi_destination().to_string(), "451 4.3.0 Multiple destination domains per transaction is unsupported. Please try again.\r\n".to_string());
assert_eq!(
code::unknown_account().to_string(),
"550 5.1.1 The email account that you tried to reach does not exist. Please try again.\r\n"
.to_string()
);
}
}