3 * mts.c -- definitions for the mail transport system
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
10 #include <h/mh.h> /* for snprintf() */
14 #define nmhetcdir(file) NMHETCDIR#file
20 #include <sys/socket.h>
26 static char *tailor_value (unsigned char *);
27 static void getuserinfo (void);
28 static const char *get_mtsconf_pathname(void);
29 static const char *get_mtsuserconf_pathname(void);
30 static void mts_read_conf_file (FILE *fp);
33 * *mmdfldir and *uucpldir are the maildrop directories. If maildrops
34 * are kept in the user's home directory, then these should be empty
35 * strings. In this case, the appropriate ...lfil array should contain
36 * the name of the file in the user's home directory. Usually, this is
37 * something like ".mail".
41 * nmh mail transport interface customization file
43 static char *mtsconf = nmhetcdir(/mts.conf);
45 static char *localname = "";
46 static char *localdomain = "";
47 static char *systemname = "";
49 char *mmdfldir = MAILSPOOL;
51 char *uucpldir = "/usr/spool/mail";
54 char *mmdlm1 = "\001\001\001\001\n";
55 char *mmdlm2 = "\001\001\001\001\n";
57 /* Cache the username, fullname, and mailbox of the user */
58 static char username[BUFSIZ];
59 static char fullname[BUFSIZ];
60 static char localmbox[BUFSIZ];
63 * MTS specific variables
65 static char *sm_method = "smtp";
66 int sm_mts = MTS_SMTP;
67 char *sendmail = SENDMAILPATH;
72 char *clientname = NULL;
73 char *servers = "localhost";
77 * Global MailDelivery file
79 char *maildelivery = nmhetcdir(/maildelivery);
83 * Aliasing Facility (doesn't belong here)
86 static char *everyone = "-1";
90 * Customize the MTS settings for nmh by adjusting
91 * the file mts.conf in the nmh etc directory.
99 static struct bind binds[] = {
100 { "localname", &localname },
101 { "localdomain", &localdomain },
102 { "systemname", &systemname },
103 { "mmdfldir", &mmdfldir },
104 { "mmdflfil", &mmdflfil },
105 { "uucpldir", &uucpldir },
106 { "uucplfil", &uucplfil },
107 { "mmdelim1", &mmdlm1 },
108 { "mmdelim2", &mmdlm2 },
109 { "mts", &sm_method },
110 { "sendmail", &sendmail },
111 { "clientname", &clientname },
112 { "servers", &servers },
113 { "pophost", &pophost },
115 { "maildelivery", &maildelivery },
116 { "everyone", &everyone },
117 { "noshell", &NoShell },
123 * Read the configuration file for the nmh interface
124 * to the mail transport system (MTS).
128 mts_init (char *name)
134 static int inited = 0;
136 if (inited++ || (fp = fopen (get_mtsconf_pathname(), "r")) == NULL)
138 mts_read_conf_file(fp);
141 cp = get_mtsuserconf_pathname();
143 ((fp = fopen (get_mtsuserconf_pathname(), "r")) != NULL)) {
144 mts_read_conf_file(fp);
148 Everyone = atoi (everyone);
150 if (strcmp(sm_method, "smtp") == 0)
152 else if (strcmp(sm_method, "sendmail") == 0)
153 sm_mts = MTS_SENDMAIL;
155 advise(NULL, "unsupported \"mts\" value in mts.conf: %s", sm_method);
164 * Convert escaped values, malloc some new space,
165 * and copy string to malloc'ed memory.
169 tailor_value (unsigned char *s)
176 for (bp = buffer; *s; bp++, s++) {
181 case 'b': *bp = '\b'; break;
182 case 'f': *bp = '\f'; break;
183 case 'n': *bp = '\n'; break;
184 case 't': *bp = '\t'; break;
196 r = *s != '0' ? 10 : 8;
197 for (i = 0; isdigit (*s); s++)
198 i = i * r + *s - '0';
207 len = strlen (buffer) + 1;
208 bp = mh_xmalloc (len);
209 memcpy (bp, buffer, len);
215 * Get the fully qualified name of the local host.
217 * If flag is 0, then use anything out of mts.conf (like localname).
218 * If flag is 1, then only use the "proper" local hostname.
224 static char buffer0[BUFSIZ] = "";
225 static char buffer1[BUFSIZ] = "";
226 static char *buffer[] = { buffer0, buffer1 };
228 struct addrinfo hints, *res;
230 if (flag < 0 || flag > 1)
235 /* check if we have cached the local name */
241 /* check if the mts.conf file specifies a "localname" */
242 if (*localname && flag == 0) {
243 strncpy (buf, localname, sizeof(buffer0));
245 memset(buf, 0, sizeof(buffer0));
246 /* first get our local name */
247 gethostname (buf, sizeof(buffer0) - 1);
248 /* now fully qualify our name */
250 memset(&hints, 0, sizeof(hints));
251 hints.ai_flags = AI_CANONNAME;
252 hints.ai_family = PF_UNSPEC;
253 if (getaddrinfo(buf, NULL, &hints, &res) == 0) {
254 strncpy(buf, res->ai_canonname, sizeof(buffer0) - 1);
260 * If the mts.conf file specifies a "localdomain",
261 * we append that now. This should rarely be needed.
265 strcat (buf, localdomain);
273 * This is only for UUCP mail. It gets the hostname
274 * as part of the UUCP "domain".
280 static char buffer[BUFSIZ] = "";
282 /* check if we have cached the system name */
288 /* check if mts.conf file specifies a "systemname" */
290 strncpy (buffer, systemname, sizeof(buffer));
294 gethostname (buffer, sizeof(buffer));
301 * Get the username of current user
307 if (username[0] == '\0')
315 * Get full name of current user (typically from GECOS
316 * field of password file).
322 if (username[0] == '\0')
330 * Get the full local mailbox name. This is in the form:
332 * User Name <user@name.com>
338 if (username[0] == '\0')
341 if (localmbox[0] == '\0') {
344 if ((cp = context_find("Local-Mailbox")) != NULL) {
345 strncpy(localmbox, cp, sizeof(localmbox));
347 snprintf(localmbox, sizeof(localmbox), "%s <%s@%s>", fullname,
348 username, LocalName(0));
351 localmbox[sizeof(localmbox) - 1] = '\0';
358 * Find the user's username and full name, and cache them.
364 register unsigned char *cp;
366 register struct passwd *pw;
368 if ((pw = getpwuid (getuid ())) == NULL
369 || pw->pw_name == NULL
370 || *pw->pw_name == '\0') {
371 strncpy (username, "unknown", sizeof(username));
372 snprintf (fullname, sizeof(fullname), "The Unknown User-ID (%d)",
379 /* Get the user's real name from the GECOS field. Stop once we hit a ',',
380 which some OSes use to separate other 'finger' information in the GECOS
381 field, like phone number. */
382 for (cp = fullname; *np != '\0' && *np != ','; *cp++ = *np++)
386 strncpy (username, pw->pw_name, sizeof(username));
388 /* The $SIGNATURE environment variable overrides the GECOS field's idea of
389 your real name. If SIGNATURE isn't set, use the Signature profile
390 setting if it exists. */
391 if ((cp = getenv ("SIGNATURE")) && *cp)
392 strncpy (fullname, cp, sizeof(fullname));
393 else if ((cp = context_find("Signature")))
394 strncpy (fullname, cp, sizeof(fullname));
396 fullname[sizeof(fullname) - 1] = '\0';
398 escape_display_name(fullname, sizeof(fullname));
406 get_mtsconf_pathname (void)
408 const char *cp = getenv ( "MHMTSCONF" );
409 if (cp != NULL && *cp != '\0') {
416 get_mtsuserconf_pathname (void)
418 const char *cp = getenv ( "MHMTSUSERCONF" );
419 if (cp != NULL && *cp != '\0') {
426 mts_read_conf_file (FILE *fp)
429 char *cp, buffer[BUFSIZ];
432 while (fgets (buffer, sizeof(buffer), fp)) {
433 if (!(cp = strchr(buffer, '\n')))
436 if (*buffer == '#' || *buffer == '\0')
438 if (!(bp = strchr(buffer, ':')))
441 while (isspace (*bp))
444 for (b = binds; b->keyword; b++)
445 if (!strcmp (buffer, b->keyword))
447 if (b->keyword && (cp = tailor_value (bp)))