003 File Manager
Current Path:
/usr/src/contrib/sendmail/src
usr
/
src
/
contrib
/
sendmail
/
src
/
📁
..
📄
Makefile
(347 B)
📄
Makefile.m4
(4.37 KB)
📄
README
(81.76 KB)
📄
SECURITY
(7.5 KB)
📄
TRACEFLAGS
(3.1 KB)
📄
TUNING
(10.22 KB)
📄
alias.c
(22.22 KB)
📄
aliases
(1.43 KB)
📄
aliases.5
(3.15 KB)
📄
arpadate.c
(4.01 KB)
📄
bf.c
(17.58 KB)
📄
bf.h
(1007 B)
📄
collect.c
(24.45 KB)
📄
conf.c
(152.23 KB)
📄
conf.h
(7.13 KB)
📄
control.c
(8.91 KB)
📄
convtime.c
(3.56 KB)
📄
daemon.c
(99.13 KB)
📄
daemon.h
(1.46 KB)
📄
deliver.c
(151.7 KB)
📄
domain.c
(36.74 KB)
📄
envelope.c
(31.71 KB)
📄
err.c
(26.52 KB)
📄
headers.c
(50.32 KB)
📄
helpfile
(5.53 KB)
📄
macro.c
(14.86 KB)
📄
mailq.1
(3.46 KB)
📄
main.c
(108.07 KB)
📄
map.c
(177.38 KB)
📄
map.h
(3.81 KB)
📄
mci.c
(35.37 KB)
📄
milter.c
(103.43 KB)
📄
mime.c
(30.7 KB)
📄
newaliases.1
(1.27 KB)
📄
parseaddr.c
(80.3 KB)
📄
queue.c
(206.08 KB)
📄
ratectrl.c
(13.01 KB)
📄
ratectrl.h
(3.94 KB)
📄
readcf.c
(119.73 KB)
📄
recipient.c
(48.48 KB)
📄
sasl.c
(5.7 KB)
📄
savemail.c
(43.3 KB)
📄
sendmail.8
(17.31 KB)
📄
sendmail.h
(103.76 KB)
📄
sfsasl.c
(21.01 KB)
📄
sfsasl.h
(644 B)
📄
shmticklib.c
(1.51 KB)
📄
sm_resolve.c
(33.24 KB)
📄
sm_resolve.h
(5.25 KB)
📄
srvrsmtp.c
(133.04 KB)
📄
stab.c
(8.73 KB)
📄
stats.c
(4.17 KB)
📄
statusd_shm.h
(945 B)
📄
sysexits.c
(3.61 KB)
📄
timers.c
(4.29 KB)
📄
timers.h
(800 B)
📄
tls.c
(62.13 KB)
📄
tls.h
(8.1 KB)
📄
tlsh.c
(4.73 KB)
📄
trace.c
(4.25 KB)
📄
udb.c
(28.98 KB)
📄
usersmtp.c
(76.98 KB)
📄
util.c
(56.62 KB)
📄
version.c
(539 B)
Editing: map.h
/* * Copyright (c) 2006 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: map.h,v 8.4 2013-11-22 20:51:56 ca Exp $ */ #ifndef _MAP_H # define _MAP_H 1 extern char *arith_map_lookup __P((MAP *, char *, char **, int *)); extern char *arpa_map_lookup __P((MAP *, char *, char **, int *)); extern char *bestmx_map_lookup __P((MAP *, char *, char **, int *)); extern char *bogus_map_lookup __P((MAP *, char *, char **, int *)); #if NEWDB extern bool bt_map_open __P((MAP *, int)); extern char *db_map_lookup __P((MAP *, char *, char **, int *)); extern void db_map_store __P((MAP *, char *, char *)); extern void db_map_close __P((MAP *)); #endif /* NEWDB */ extern bool dequote_init __P((MAP *, char *)); extern char *dequote_map __P((MAP *, char *, char **, int *)); extern bool dns_map_open __P((MAP *, int)); extern bool dns_map_parseargs __P((MAP *, char *)); extern char *dns_map_lookup __P((MAP *, char *, char **, int *)); extern bool dprintf_map_parseargs __P((MAP *, char *)); extern char *dprintf_map_lookup __P((MAP *, char *, char **, int *)); #if NEWDB extern bool hash_map_open __P((MAP *, int)); #endif extern bool host_map_init __P((MAP *, char *)); extern char *host_map_lookup __P((MAP *, char *, char **, int *)); extern char *impl_map_lookup __P((MAP *, char *, char **, int *)); extern void impl_map_store __P((MAP *, char *, char *)); extern bool impl_map_open __P((MAP *, int)); extern void impl_map_close __P((MAP *)); extern char *macro_map_lookup __P((MAP *, char *, char **, int *)); extern bool map_parseargs __P((MAP *, char *)); #if NDBM extern char *ndbm_map_lookup __P((MAP *, char *, char **, int *)); extern void ndbm_map_store __P((MAP *, char *, char *)); extern void ndbm_map_close __P((MAP *)); #endif /* NDBM */ extern bool nis_map_open __P((MAP *, int)); extern char *nis_map_lookup __P((MAP *, char *, char **, int *)); extern bool null_map_open __P((MAP *, int)); extern void null_map_close __P((MAP *)); extern char *null_map_lookup __P((MAP *, char *, char **, int *)); extern void null_map_store __P((MAP *, char *, char *)); extern char *prog_map_lookup __P((MAP *, char *, char **, int *)); extern bool regex_map_init __P((MAP *, char *)); extern char *regex_map_lookup __P((MAP *, char *, char **, int *)); extern char *seq_map_lookup __P((MAP *, char *, char **, int *)); extern void seq_map_store __P((MAP *, char *, char *)); extern bool seq_map_parse __P((MAP *, char *)); #if _FFR_SETDEBUG_MAP extern char *setdebug_map_lookup __P((MAP *, char *, char **, int *)); #endif #if _FFR_SETOPT_MAP extern char *setopt_map_lookup __P((MAP *, char *, char **, int *)); #endif #if SOCKETMAP extern bool socket_map_open __P((MAP *, int)); extern void socket_map_close __P((MAP *)); extern char *socket_map_lookup __P((MAP *, char *, char **, int *)); #endif extern char *stab_map_lookup __P((MAP *, char *, char **, int *)); extern void stab_map_store __P((MAP *, char *, char *)); extern bool stab_map_open __P((MAP *, int)); extern bool switch_map_open __P((MAP *, int)); extern bool syslog_map_parseargs __P((MAP *, char *)); extern char *syslog_map_lookup __P((MAP *, char *, char **, int *)); extern bool text_map_open __P((MAP *, int)); extern char *text_map_lookup __P((MAP *, char *, char **, int *)); extern char *udb_map_lookup __P((MAP *, char *, char **, int *)); extern bool user_map_open __P((MAP *, int)); extern char *user_map_lookup __P((MAP *, char *, char **, int *)); #if CDB extern bool cdb_map_open __P((MAP *, int)); extern char *cdb_map_lookup __P((MAP *, char *, char **, int *)); extern void cdb_map_store __P((MAP *, char *, char *)); extern void cdb_map_close __P((MAP *)); #endif /* CDB */ #endif /* ! _MAP_H */
Upload File
Create Folder