blob: 3bed7d4654b2ce039f2d569351f4479d7cafe063 (
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
|
#ifndef loginexec_h
#define loginexec_h
/*
** Copyright 2003 Double Precision, Inc.
** See COPYING for distribution information.
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* Check for a 'loginexec' executable in the current directory, if so
run it, then delete it if exit code zero */
void maildir_loginexec(void);
#ifdef __cplusplus
}
#endif
#endif
|