]>
diplodocus.org Git - nmh/blob - sbr/context_read.c
1 /* context_read.c -- find and read profile and context files
3 * This code is Copyright (c) 2002, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
7 * This function must be called early on in any nmh utility, and
8 * may only be called once. It does the following:
10 * o Sets the global variable "mypath" to the home directory path.
12 * o Sets the global variable "defpath" to the absolute path of
15 * o Reads in the profile file. Bails out if it can't.
17 * o Makes sure that the mail directory exists, prompting for
18 * creation if it doesn't.
20 * o Reads the context file either as set by the MHCONTEXT
21 * environment variable or by the profile.
24 #include <h/mh.h> /* mh internals */
25 #include "lock_file.h"
26 #include "m_maildir.h"
28 #include <pwd.h> /* structure for getpwuid() results */
34 char buf
[BUFSIZ
]; /* path name buffer */
35 char *cp
; /* miscellaneous pointer */
36 char *nd
; /* nmh directory pointer */
37 struct stat st
; /* stat() results */
38 struct passwd
*pw
; /* getpwuid() results */
39 FILE *ib
; /* profile and context file pointer */
40 int failed_to_lock
= 0;
43 * If this routine _is_ called again (despite the warnings in the
44 * comments above), return immediately.
50 * Find user's home directory. Try the HOME environment variable first,
51 * the home directory field in the password file if that's not found.
54 if ((mypath
= getenv("HOME")) == NULL
) {
55 if ((pw
= getpwuid(getuid())) == NULL
|| *pw
->pw_dir
== '\0')
56 die("cannot determine your home directory");
61 * Find and read user's profile. Check for the existence of an MH environment
62 * variable first with non-empty contents. Convert any relative path name
63 * found there to an absolute one. Look for the profile in the user's home
64 * directory if the MH environment variable isn't set.
67 if ((cp
= getenv("MH")) && *cp
!= '\0') {
68 defpath
= path(cp
, TFILE
);
70 /* defpath is an absolute path; make sure that always MH is, too. */
71 setenv("MH", defpath
, 1);
72 if (stat(defpath
, &st
) != -1 && (st
.st_mode
& S_IFREG
) == 0)
73 die("`%s' specified by your MH environment variable is not a normal file", cp
);
75 if ((ib
= fopen(defpath
, "r")) == NULL
)
76 die("unable to read the `%s' profile specified by your MH environment variable", defpath
);
79 defpath
= concat(mypath
, "/", mh_profile
, NULL
);
81 if ((ib
= fopen(defpath
, "r")) == NULL
)
82 die("Doesn't look like nmh is installed. Run install-mh to do so.");
87 readconfig (&m_defs
, ib
, cp
, 0);
91 * Find the user's nmh directory, which is specified by the "path" profile component.
92 * Convert a relative path name to an absolute one rooted in the home directory.
95 if ((cp
= context_find ("path")) == NULL
)
96 die("Your %s file does not contain a path entry.", defpath
);
99 die("Your `%s' profile file does not contain a valid path entry.", defpath
);
102 (void)snprintf (nd
= buf
, sizeof(buf
), "%s/%s", mypath
, cp
);
106 if (stat(nd
, &st
) == -1) {
108 adios (nd
, "error opening");
110 cp
= concat ("Your MH-directory \"", nd
, "\" doesn't exist; Create it? ", NULL
);
112 if (!read_yes_or_no_if_tty(cp
))
113 die("unable to access MH-directory \"%s\"", nd
);
118 die("unable to create %s", nd
);
121 else if ((st
.st_mode
& S_IFDIR
) == 0)
122 die("`%s' is not a directory", nd
);
125 * Open and read user's context file. The name of the context file comes from the
126 * profile unless overridden by the MHCONTEXT environment variable.
129 if ((cp
= getenv ("MHCONTEXT")) == NULL
|| *cp
== '\0')
132 /* context is NULL if context_foil() was called to disable use of context
133 * We also support users setting explicitly setting MHCONTEXT to /dev/null.
134 * (if this wasn't special-cased then the locking would be liable to fail)
136 if (!cp
|| (strcmp(cp
,"/dev/null") == 0)) {
141 ctxpath
= mh_xstrdup(m_maildir(cp
));
143 if ((ib
= lkfopendata (ctxpath
, "r", &failed_to_lock
))) {
144 readconfig(NULL
, ib
, cp
, 1);
145 lkfclosedata (ib
, ctxpath
);