blob: 28b431e90e014c2ef59aaf8d6b04e1cf4c48a0d3 (
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
|
#ifndef _DATA_REDIRECT_H_INCLUDED_
#define _DATA_REDIRECT_H_INCLUDED_
/*++
/* NAME
/* data_redirect 3h
/* SUMMARY
/* redirect writes from legacy pathname to Postfix-owned data directory
/* SYNOPSIS
/* #include "data_redirect.h"
/* DESCRIPTION
/* .nf
/*
* External interface.
*/
char *data_redirect_file(VSTRING *, const char *);
char *data_redirect_map(VSTRING *, const char *);
/* 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
/*--*/
#endif
|