blob: 6a8ad1779c6b7d457b35a93253f169baa84a63e5 (
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
|
/*************************************************
* Exim - an Internet mail transport agent *
*************************************************/
/* Copyright (c) University of Cambridge 1995 - 2009 */
/* See the file NOTICE for conditions of use and distribution. */
#include "../exim.h"
#include "rf_functions.h"
/*************************************************
* Expand data string and handle errors *
*************************************************/
/* This little function is used by a couple of routers for expanding things. It
just saves repeating this code too many times. It does an expansion, and
chooses a suitable return code on error.
Arguments:
addr the address that's being routed
s the string to be expanded
prc pointer to where to put the return code on failure
Returns: the expanded string, or NULL (with prc set) on failure
*/
uschar *
rf_expand_data(address_item *addr, uschar *s, int *prc)
{
uschar *yield = expand_string(s);
if (yield != NULL) return yield;
if (f.expand_string_forcedfail)
{
DEBUG(D_route) debug_printf("forced failure for expansion of \"%s\"\n", s);
*prc = DECLINE;
}
else
{
addr->message = string_sprintf("failed to expand \"%s\": %s", s,
expand_string_message);
*prc = DEFER;
}
return NULL;
}
/* End of routers/rf_expand_data.c */
|