File: mailspool.h

package info (click to toggle)
emacs21 21.2-1woody3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 87,780 kB
  • ctags: 58,919
  • sloc: lisp: 491,843; ansic: 236,968; xml: 4,262; sh: 3,919; makefile: 2,180; perl: 1,085; cs: 775; asm: 254; csh: 9; sed: 4
file content (46 lines) | stat: -rw-r--r-- 1,503 bytes parent folder | download | duplicates (4)
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
44
45
46
/* mailspool.h -- record the location of the mail spool in MAIL_SPOOL_DIRECTORY
   Copyright (C) 1986, 1992, 1993, 1994, 1996 Free Software Foundation, Inc.

This file is part of GNU Emacs.

GNU Emacs is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Emacs is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Emacs; see the file COPYING.  If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.  */

#ifndef _MAILSPOOL_H
#define _MAILSPOOL_H 1

#ifdef	__cplusplus
extern "C" {
#endif

#define NO_SHORTNAMES   /* Tell config not to load remap.h */
#include <../src/config.h>
  
/* Final determination of mail spool location. */
#ifdef USE_MAIL_SPOOL_DIRECTORY
#define MAIL_SPOOL_DIRECTORY USE_MAIL_SPOOL_DIRECTORY
#elif defined(SYSTEM_MAIL_SPOOL_DIRECTORY)
#define MAIL_SPOOL_DIRECTORY SYSTEM_MAIL_SPOOL_DIRECTORY
#elif defined(MAILDIR)
#define MAIL_SPOOL_DIRECTORY MAILDIR
#elif defined(CONF_MAIL_SPOOL_DIRECTORY)
#define MAIL_SPOOL_DIRECTORY CONF_MAIL_SPOOL_DIRECTORY
#endif

#ifdef	__cplusplus
}
#endif

#endif /* mailspool.h */