Deleted Added
full compact
vacation.c (168515) vacation.c (173340)
1/*
2 * Copyright (c) 1999-2002 Sendmail, Inc. and its suppliers.
3 * All rights reserved.
4 * Copyright (c) 1983, 1987, 1993
5 * The Regents of the University of California. All rights reserved.
6 * Copyright (c) 1983 Eric P. Allman. All rights reserved.
7 *
8 * By using this file, you agree to the terms and conditions set

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

15
16SM_IDSTR(copyright,
17"@(#) Copyright (c) 1999-2001 Sendmail, Inc. and its suppliers.\n\
18 All rights reserved.\n\
19 Copyright (c) 1983, 1987, 1993\n\
20 The Regents of the University of California. All rights reserved.\n\
21 Copyright (c) 1983 Eric P. Allman. All rights reserved.\n")
22
1/*
2 * Copyright (c) 1999-2002 Sendmail, Inc. and its suppliers.
3 * All rights reserved.
4 * Copyright (c) 1983, 1987, 1993
5 * The Regents of the University of California. All rights reserved.
6 * Copyright (c) 1983 Eric P. Allman. All rights reserved.
7 *
8 * By using this file, you agree to the terms and conditions set

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

15
16SM_IDSTR(copyright,
17"@(#) Copyright (c) 1999-2001 Sendmail, Inc. and its suppliers.\n\
18 All rights reserved.\n\
19 Copyright (c) 1983, 1987, 1993\n\
20 The Regents of the University of California. All rights reserved.\n\
21 Copyright (c) 1983 Eric P. Allman. All rights reserved.\n")
22
23SM_IDSTR(id, "@(#)$Id: vacation.c,v 8.143 2006/12/19 19:00:43 ca Exp $")
23SM_IDSTR(id, "@(#)$Id: vacation.c,v 8.144 2007/05/11 18:50:36 ca Exp $")
24
25
26#include <ctype.h>
27#include <stdlib.h>
28#include <syslog.h>
29#include <time.h>
30#include <unistd.h>
31#ifdef EX_OK

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

41
42#define ONLY_ONCE ((time_t) 0) /* send at most one reply */
43#define INTERVAL_UNDEF ((time_t) (-1)) /* no value given */
44
45uid_t RealUid;
46gid_t RealGid;
47char *RealUserName;
48uid_t RunAsUid;
24
25
26#include <ctype.h>
27#include <stdlib.h>
28#include <syslog.h>
29#include <time.h>
30#include <unistd.h>
31#ifdef EX_OK

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

41
42#define ONLY_ONCE ((time_t) 0) /* send at most one reply */
43#define INTERVAL_UNDEF ((time_t) (-1)) /* no value given */
44
45uid_t RealUid;
46gid_t RealGid;
47char *RealUserName;
48uid_t RunAsUid;
49uid_t RunAsGid;
49gid_t RunAsGid;
50char *RunAsUserName;
51int Verbose = 2;
52bool DontInitGroups = false;
53uid_t TrustedUid = 0;
54BITMAP256 DontBlameSendmail;
55
56static int readheaders __P((bool));
57static bool junkmail __P((char *));

--- 1123 unchanged lines hidden ---
50char *RunAsUserName;
51int Verbose = 2;
52bool DontInitGroups = false;
53uid_t TrustedUid = 0;
54BITMAP256 DontBlameSendmail;
55
56static int readheaders __P((bool));
57static bool junkmail __P((char *));

--- 1123 unchanged lines hidden ---