File: ext_prop.c

package info (click to toggle)
postfix 0.0.19991231pl11-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 5,044 kB
  • ctags: 4,401
  • sloc: ansic: 33,767; makefile: 5,099; sh: 1,790; awk: 19
file content (72 lines) | stat: -rw-r--r-- 1,897 bytes parent folder | download
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
/*++
/* NAME
/*	exp_prop 3
/* SUMMARY
/*	address extension propagation control
/* SYNOPSIS
/*	#include <exp_prop.h>
/*
/*	int	ext_prop_mask(pattern)
/*	const char *pattern;
/* DESCRIPTION
/*	This module controld address extension propagation.
/*
/*	ext_prop_mask() takes a comma-separated list of names and
/*	computes the corresponding mask. The following names are
/*	recognized in \fBpattern\fR, with the corresponding bit mask
/*	given in parentheses:
/* .IP "canonical (EXP_PROP_CANONICAL)"
/*	Propagate unmatched address extensions to the right-hand side
/*	of canonical table entries (not: regular expressions).
/* .IP "virtual (EXP_PROP_VIRTUAL)
/*	Propagate unmatched address extensions to the right-hand side
/*	of virtual table entries (not: regular expressions).
/* .IP "alias (EXP_PROP_ALIAS)
/*	Propagate unmatched address extensions to the right-hand side
/*	of alias database entries.
/* .IP "forward (EXP_PROP_FORWARD)"
/*	Propagate unmatched address extensions to the right-hand side
/*	of .forward file entries.
/* .IP "include (EXP_PROP_INCLUDE)"
/*	Propagate unmatched address extensions to the right-hand side
/*	of :include: file entries.
/* DIAGNOSTICS
/*	Panic: inappropriate use.
/* LICENSE
/* .ad
/* .fi
/*	The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/*	Wietse Venema
/*	IBM T.J. Watson Research
/*	P.O. Box 704
/*	Yorktown Heights, NY 10598, USA
/*--*/

/* System library. */

#include <sys_defs.h>

/* Utility library. */

#include <name_mask.h>

/* Global library. */

#include <ext_prop.h>

/* ext_prop_mask - compute extension propagation mask */

int     ext_prop_mask(const char *pattern)
{
    static NAME_MASK table[] = {
	"canonical", EXT_PROP_CANONICAL,
	"virtual", EXT_PROP_VIRTUAL,
	"alias", EXT_PROP_ALIAS,
	"forward", EXT_PROP_FORWARD,
	"include", EXT_PROP_INCLUDE,
	0,
    };

    return (name_mask(table, pattern));
}