Deleted Added
full compact
mfapi.h (240292) mfapi.h (244833)
1/*
1/*
2 * Copyright (c) 1999-2004, 2006, 2008 Sendmail, Inc. and its suppliers.
2 * Copyright (c) 1999-2004, 2006, 2008, 2012 Sendmail, Inc. and its suppliers.
3 * All rights reserved.
4 *
5 * By using this file, you agree to the terms and conditions set
6 * forth in the LICENSE file which can be found at the top level of
7 * the sendmail distribution.
8 *
9 *
3 * All rights reserved.
4 *
5 * By using this file, you agree to the terms and conditions set
6 * forth in the LICENSE file which can be found at the top level of
7 * the sendmail distribution.
8 *
9 *
10 * $Id: mfapi.h,v 8.80 2009/11/06 00:57:08 ca Exp $
10 * $Id: mfapi.h,v 8.82 2012/11/16 20:25:04 ca Exp $
11 */
12
13/*
14** MFAPI.H -- Global definitions for mail filter library and mail filters.
15*/
16
17#ifndef _LIBMILTER_MFAPI_H
18# define _LIBMILTER_MFAPI_H 1

--- 182 unchanged lines hidden (view full) ---

201** Macro "places";
202** Notes:
203** - must be coordinated with libmilter/engine.c and sendmail/milter.c
204** - the order MUST NOT be changed as it would break compatibility between
205** different versions. It's ok to append new entries however
206** (hence the list is not sorted by the SMT protocol steps).
207*/
208
11 */
12
13/*
14** MFAPI.H -- Global definitions for mail filter library and mail filters.
15*/
16
17#ifndef _LIBMILTER_MFAPI_H
18# define _LIBMILTER_MFAPI_H 1

--- 182 unchanged lines hidden (view full) ---

201** Macro "places";
202** Notes:
203** - must be coordinated with libmilter/engine.c and sendmail/milter.c
204** - the order MUST NOT be changed as it would break compatibility between
205** different versions. It's ok to append new entries however
206** (hence the list is not sorted by the SMT protocol steps).
207*/
208
209#define SMFIM_NOMACROS (-1) /* Do NOT use, internal only */
209#define SMFIM_FIRST 0 /* Do NOT use, internal marker only */
210#define SMFIM_CONNECT 0 /* connect */
211#define SMFIM_HELO 1 /* HELO/EHLO */
212#define SMFIM_ENVFROM 2 /* MAIL From */
213#define SMFIM_ENVRCPT 3 /* RCPT To */
214#define SMFIM_DATA 4 /* DATA */
215#define SMFIM_EOM 5 /* end of message (final dot) */
216#define SMFIM_EOH 6 /* end of header */

--- 386 unchanged lines hidden ---
210#define SMFIM_FIRST 0 /* Do NOT use, internal marker only */
211#define SMFIM_CONNECT 0 /* connect */
212#define SMFIM_HELO 1 /* HELO/EHLO */
213#define SMFIM_ENVFROM 2 /* MAIL From */
214#define SMFIM_ENVRCPT 3 /* RCPT To */
215#define SMFIM_DATA 4 /* DATA */
216#define SMFIM_EOM 5 /* end of message (final dot) */
217#define SMFIM_EOH 6 /* end of header */

--- 386 unchanged lines hidden ---