blob: 7663244cef622f37feac6ea84c58c0019c0547d2 (
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
|
/*
* Copyright (c) 2001-2002 Proofpoint, Inc. and its suppliers.
* All rights reserved.
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the sendmail distribution.
*
* $Id: mbdb.h,v 1.7 2013-11-22 20:51:31 ca Exp $
*/
#ifndef SM_MBDB_H
# define SM_MBDB_H
#include <pwd.h>
#include <sm/types.h>
#include <sm/limits.h>
/*
** This is an abstract interface for looking up local mail recipients.
*/
#define MBDB_MAXNAME 256
#define SM_NO_UID ((uid_t)(-1))
#define SM_NO_GID ((gid_t)(-1))
typedef struct
{
uid_t mbdb_uid;
gid_t mbdb_gid;
char mbdb_name[MBDB_MAXNAME];
char mbdb_fullname[MBDB_MAXNAME];
char mbdb_homedir[PATH_MAX];
char mbdb_shell[PATH_MAX];
} SM_MBDB_T;
extern int sm_mbdb_initialize __P((char *));
extern void sm_mbdb_terminate __P((void));
extern int sm_mbdb_lookup __P((char *, SM_MBDB_T *));
extern void sm_mbdb_frompw __P((SM_MBDB_T *, struct passwd *));
extern void sm_pwfullname __P((char *, char *, char *, size_t));
#endif /* ! SM_MBDB_H */
|