vsmtp-rule-engine 2.2.1

Next-gen MTA. Secured, Faster and Greener
Documentation
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
/*
 * 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::{EngineResult, SharedObject};
use rhai::plugin::{
    mem, Dynamic, EvalAltResult, FnAccess, FnNamespace, ImmutableString, Module, NativeCallContext,
    PluginFunction, RhaiResult, TypeId,
};
use vsmtp_common::{status::Status, Reply};
use vsmtp_plugin_vsl::objects::Object;

fn reply_or_code_id_from_object(code: &SharedObject) -> EngineResult<Reply> {
    match &**code {
        Object::Code(reply) => Ok(reply.clone()),
        object => Err(format!("parameter must be a code, not {}", object.as_ref()).into()),
    }
}

fn reply_or_code_id_from_string(code: &str) -> EngineResult<Reply> {
    <Reply as std::str::FromStr>::from_str(code).map_err::<Box<EvalAltResult>, _>(|_| {
        format!("parameter must be a code, not {code:?}").into()
    })
}

pub use state::*;

/// Functions used to interact with the rule engine.
/// Use `states` in `rules` to deny, accept, or quarantine emails.
#[rhai::plugin::export_module]
mod state {
    /// Tell the rule engine to force accept the incoming transaction.
    /// This means that all rules following the one `faccept` is called
    /// will be ignored.
    ///
    /// Use this return status when you are sure that
    /// the incoming client can be trusted.
    ///
    /// # Args
    ///
    /// * code - A customized code as a string or code object. (default: "250 Ok")
    ///
    /// # Errors
    ///
    /// * The object passed as parameter was not a code object.
    /// * The string passed as parameter failed to be parsed into a valid code.
    ///
    /// # Effective smtp stage
    ///
    /// all of them.
    ///
    /// # Example
    ///
    /// ```ignore
    /// #{
    ///     connect: [
    ///         // Here we imagine that "192.168.1.10" is a trusted source, so we can force accept
    ///         // any other rules that don't need to be run.
    ///         rule "check for trusted source" || if ctx::client_ip() == "192.168.1.10" { faccept() } else { state::next() },
    ///     ],
    ///
    ///     // The following rules will not be evaluated if `ctx::client_ip() == "192.168.1.10"` is true.
    ///     mail: [
    ///         rule "another rule" || {
    ///             // ... doing stuff
    ///         }
    ///     ],
    /// }
    ///
    /// #{
    ///     mail: [
    ///         rule "send a custom code with a code object" || {
    ///             faccept(code(220, "Ok"))
    ///         }
    ///     ],
    /// }
    ///
    /// #{
    ///     mail: [
    ///         rule "send a custom code with a string" || {
    ///             faccept("220 Ok")
    ///         }
    ///     ],
    /// }
    /// ```
    ///
    /// # rhai-autodocs:index:1
    #[must_use]
    pub fn faccept() -> Status {
        Status::Faccept("250 Ok\r\n".parse::<Reply>().unwrap())
    }

    #[doc(hidden)]
    #[rhai_fn(name = "faccept", return_raw, pure)]
    pub fn faccept_with_code(code: &mut SharedObject) -> EngineResult<Status> {
        reply_or_code_id_from_object(code).map(Status::Faccept)
    }

    #[doc(hidden)]
    #[rhai_fn(name = "faccept", return_raw)]
    pub fn faccept_with_string(code: &str) -> EngineResult<Status> {
        reply_or_code_id_from_string(code).map(Status::Faccept)
    }

    /// Tell the rule engine to accept the incoming transaction for the current stage.
    /// This means that all rules following the one `accept` is called in the current stage
    /// will be ignored.
    ///
    /// # Args
    ///
    /// * code - A customized code as a string or code object. (default: "250 Ok")
    ///
    /// # Errors
    ///
    /// * The object passed as parameter was not a code object.
    /// * The string passed as parameter failed to be parsed into a valid code.
    ///
    /// # Effective smtp stage
    ///
    /// all of them.
    ///
    /// # Example
    ///
    /// ```ignore
    /// #{
    ///     connect: [
    ///         // "ignored checks" will be ignored because the previous rule returned accept.
    ///         rule "accept" || state::accept(),
    ///         action "ignore checks" || print("this will be ignored because the previous rule used state::accept()."),
    ///     ],
    ///
    ///     mail: [
    ///         // rule evaluation is resumed in the next stage.
    ///         rule "resume rules" || print("evaluation resumed!");
    ///     ]
    /// }
    ///
    /// #{
    ///     mail: [
    ///         rule "send a custom code with a code object" || {
    ///             accept(code(220, "Ok"))
    ///         }
    ///     ],
    /// }
    ///
    /// #{
    ///     mail: [
    ///         rule "send a custom code with a string" || {
    ///             accept("220 Ok")
    ///         }
    ///     ],
    /// }
    /// ```
    ///
    /// # rhai-autodocs:index:2
    #[must_use]
    pub fn accept() -> Status {
        Status::Accept("250 Ok\r\n".parse::<Reply>().unwrap())
    }

    #[doc(hidden)]
    #[rhai_fn(name = "accept", return_raw, pure)]
    pub fn accept_with_code(code: &mut SharedObject) -> EngineResult<Status> {
        reply_or_code_id_from_object(code).map(Status::Accept)
    }

    #[doc(hidden)]
    #[rhai_fn(name = "accept", return_raw)]
    pub fn accept_with_string(code: &str) -> EngineResult<Status> {
        reply_or_code_id_from_string(code).map(Status::Accept)
    }

    /// Tell the rule engine that a rule succeeded. Following rules
    /// in the current stage will be executed.
    ///
    /// # Effective smtp stage
    ///
    /// all of them.
    ///
    /// # Example
    ///
    /// ```ignore
    /// #{
    ///     connect: [
    ///         // once "go to the next rule" is evaluated, the rule engine execute "another rule".
    ///         rule "go to the next rule" || state::next(),
    ///         action "another rule" || print("checking stuff ..."),
    ///     ],
    /// }
    /// ```
    ///
    /// # rhai-autodocs:index:3
    #[must_use]
    pub const fn next() -> Status {
        Status::Next
    }

    /// Stop rules evaluation and send an error code to the client.
    ///
    /// # Args
    ///
    /// * code - A customized code as a string or code object. (default: "554 permanent problems with the remote server")
    ///
    /// # Errors
    ///
    /// * The object passed as parameter was not a code object.
    /// * The string passed as parameter failed to be parsed into a valid code.
    ///
    /// # Effective smtp stage
    ///
    /// all of them.
    ///
    /// # Example
    ///
    /// ```ignore
    /// #{
    ///     rcpt: [
    ///         rule "check for satan" || {
    ///            // The client is denied if a recipient's domain matches satan.org,
    ///            // this is a blacklist, sort-of.
    ///            if ctx::rcpt().domain == "satan.org" {
    ///                state::deny()
    ///            } else {
    ///                state::next()
    ///            }
    ///        },
    ///     ],
    /// }
    ///
    /// #{
    ///     mail: [
    ///         rule "send a custom code with a code object" || {
    ///             deny(code(421, "Service not available"))
    ///         }
    ///     ],
    /// }
    ///
    /// #{
    ///     mail: [
    ///         rule "send a custom code with a string" || {
    ///             deny("450 mailbox unavailable")
    ///         }
    ///     ],
    /// }
    /// ```
    ///
    /// # rhai-autodocs:index:4
    #[must_use]
    #[rhai_fn(global)]
    pub fn deny() -> Status {
        Status::Deny(
            "554 permanent problems with the remote server\r\n"
                .parse::<Reply>()
                .unwrap(),
        )
    }

    #[doc(hidden)]
    #[rhai_fn(name = "deny", return_raw, pure)]
    pub fn deny_with_code(code: &mut SharedObject) -> EngineResult<Status> {
        reply_or_code_id_from_object(code).map(Status::Deny)
    }

    #[doc(hidden)]
    #[rhai_fn(name = "deny", return_raw)]
    pub fn deny_with_string(code: &str) -> EngineResult<Status> {
        reply_or_code_id_from_string(code).map(Status::Deny)
    }

    /// Skip all rules until the email is received and place the email in a
    /// quarantine queue. The email will never be sent to the recipients and
    /// will stop being processed after the `PreQ` stage.
    ///
    /// # Args
    ///
    /// * `queue` - the relative path to the queue where the email will be quarantined as a string.
    ///             This path will be concatenated to the `config.app.dirpath` field in
    ///             your root configuration.
    ///
    /// # Effective smtp stage
    ///
    /// all of them.
    ///
    /// # Example
    ///
    /// ```ignore
    /// import "services" as svc;
    ///
    /// #{
    ///     postq: [
    ///           delegate svc::clamsmtpd "check email for virus" || {
    ///               // the email is placed in quarantined if a virus is detected by
    ///               // a service.
    ///               if has_header("X-Virus-Infected") {
    ///                 state::quarantine("virus_queue")
    ///               } else {
    ///                 state::next()
    ///               }
    ///           }
    ///     ],
    /// }
    /// ```
    ///
    /// # rhai-autodocs:index:5
    #[must_use]
    #[rhai_fn(name = "quarantine")]
    pub fn quarantine_str(queue: &str) -> Status {
        Status::Quarantine(queue.to_string())
    }

    /// Check if two statuses are equal.
    ///
    /// # Effective smtp stage
    ///
    /// all of them.
    ///
    /// # Example
    ///
    /// ```ignore
    /// #{
    ///     connect: [
    ///         action "check status equality" || {
    ///             deny() == deny(); // returns true.
    ///             faccept() == next(); // returns false.
    ///         }
    ///     ],
    /// }
    /// ```
    ///
    /// # rhai-autodocs:index:6
    #[rhai_fn(global, name = "==", pure)]
    pub fn eq_status_operator(status_1: &mut Status, status_2: Status) -> bool {
        *status_1 == status_2
    }

    /// Check if two statuses are not equal.
    ///
    /// # Effective smtp stage
    ///
    /// all of them.
    ///
    /// # Example
    ///
    /// ```ignore
    /// #{
    ///     connect: [
    ///         action "check status not equal" || {
    ///             deny() != deny(); // returns false.
    ///             faccept() != next(); // returns true.
    ///         }
    ///     ],
    /// }
    /// ```
    ///
    /// # rhai-autodocs:index:7
    #[rhai_fn(global, name = "!=", pure)]
    pub fn neq_status_operator(status_1: &mut Status, status_2: Status) -> bool {
        !(*status_1 == status_2)
    }

    /// Convert a status to a string.
    /// Enables string interpolation.
    ///
    /// # Effective smtp stage
    ///
    /// all of them.
    ///
    /// # Example
    ///
    /// ```text,ignore
    /// #{
    ///     connect: [
    ///         rule "status to string" || {
    ///             let status = next();
    ///             // `.to_string` is called automatically here.
    ///             log("info", `converting my status to a string: ${status}`);
    ///             status
    ///         }
    ///     ],
    /// }
    /// ```
    ///
    /// # rhai-autodocs:index:8
    #[rhai_fn(global, pure)]
    pub fn to_string(status: &mut Status) -> String {
        status.as_ref().to_string()
    }

    /// Convert a status to a debug string
    /// Enables string interpolation.
    ///
    /// # Effective smtp stage
    ///
    /// all of them.
    ///
    /// # Example
    ///
    /// ```text,ignore
    /// #{
    ///     connect: [
    ///         rule "status to string" || {
    ///             let status = next();
    ///             log("info", `converting my status to a string: ${status.to_debug()}`);
    ///             status
    ///         }
    ///     ],
    /// }
    /// ```
    ///
    /// # rhai-autodocs:index:9
    #[rhai_fn(global, pure)]
    pub fn to_debug(status: &mut Status) -> String {
        status.as_ref().to_string()
    }
}