]> Pileus Git - ~andy/fetchmail/blob - env.c
Gunther Leber's fix.
[~andy/fetchmail] / env.c
1 /*
2  * env.c -- small service routines
3  *
4  * For license terms, see the file COPYING in this directory.
5  */
6
7 #include "config.h"
8 #include "fetchmail.h"
9 #include <stdio.h>
10 #include <ctype.h>
11 #if defined(STDC_HEADERS)
12 #include <stdlib.h>
13 #endif
14 #if defined(HAVE_UNISTD_H)
15 #include <unistd.h>
16 #endif
17 #include <pwd.h>
18 #include <string.h>
19 #include <ctype.h>
20 #ifdef HAVE_GETHOSTBYNAME
21 #include <netdb.h>
22 #endif /* HAVE_GETHOSTBYNAME */
23
24 extern char *getenv();  /* needed on sysV68 R3V7.1. */
25
26 extern char *program_name;
27
28 void envquery(int argc, char **argv)
29 /* set up basic stuff from the environment (including the rc file name) */
30 {
31     char tmpbuf[BUFSIZ]; 
32     struct passwd *pw;
33
34     if ((program_name = strrchr(argv[0], '/')) != NULL)
35         ++program_name;
36     else
37         program_name = argv[0];
38
39     if ((user = getenv("USER")) == (char *)NULL)
40         user = getenv("LOGNAME");
41
42     if ((user == (char *)NULL) || (home = getenv("HOME")) == (char *)NULL)
43     {
44         if ((pw = getpwuid(getuid())) != NULL)
45         {
46             user = pw->pw_name;
47             home = pw->pw_dir;
48         }
49         else
50         {
51             fprintf(stderr,
52                     "%s: can't find your name and home directory!\n",
53                     program_name);
54             exit(PS_UNDEFINED);
55         }
56     }
57
58     /* we'll need this for the SMTP forwarding target and error messages */
59     if (gethostname(tmpbuf, sizeof(tmpbuf)))
60     {
61         fprintf(stderr, "%s: can't determine your host!", program_name);
62         exit(PS_IOERR);
63     }
64 #ifdef HAVE_GETHOSTBYNAME
65     /* if we got a . in the hostname assume it is a FQDN */
66     if (strchr(tmpbuf, '.') == NULL)
67     {
68         struct hostent *hp;
69
70         /* in case we got a basename (as we do in Linux) make a FQDN of it */
71         hp = gethostbyname(tmpbuf);
72         if (hp == (struct hostent *) NULL)
73         {
74             /* exit with error message */
75             fprintf(stderr, "gethostbyname failed for %s\n", tmpbuf);
76             exit(PS_DNS);
77         }
78         fetchmailhost = xstrdup(hp->h_name);
79     }
80     else
81 #endif /* HAVE_GETHOSTBYNAME */
82         fetchmailhost = xstrdup(tmpbuf);
83
84 #define RCFILE_NAME     ".fetchmailrc"
85     rcfile = (char *) xmalloc(strlen(home)+strlen(RCFILE_NAME)+2);
86     /* avoid //.fetchmailrc */
87     if (strcmp(home, "/") != 0) {
88         strcpy(rcfile, home);
89     } else {
90         *rcfile = '\0';
91     }
92     strcat(rcfile, "/");
93     strcat(rcfile, RCFILE_NAME);
94 }
95
96 char *showproto(int proto)
97 /* protocol index to protocol name mapping */
98 {
99     switch (proto)
100     {
101     case P_AUTO: return("auto"); break;
102 #ifdef POP2_ENABLE
103     case P_POP2: return("POP2"); break;
104 #endif /* POP2_ENABLE */
105     case P_POP3: return("POP3"); break;
106     case P_IMAP: return("IMAP"); break;
107     case P_IMAP_K4: return("IMAP-K4"); break;
108 #ifdef GSSAPI
109     case P_IMAP_GSS: return("IMAP-GSS"); break;
110 #endif /* GSSAPI */
111     case P_APOP: return("APOP"); break;
112     case P_RPOP: return("RPOP"); break;
113     case P_ETRN: return("ETRN"); break;
114     default: return("unknown?!?"); break;
115     }
116 }
117
118 char *visbuf(const char *buf)
119 /* visibilize a given string */
120 {
121     static char vbuf[BUFSIZ];
122     char *tp = vbuf;
123
124     while (*buf)
125     {
126         if (isprint(*buf) || *buf == ' ')
127             *tp++ = *buf++;
128         else if (*buf == '\n')
129         {
130             *tp++ = '\\'; *tp++ = 'n';
131             buf++;
132         }
133         else if (*buf == '\r')
134         {
135             *tp++ = '\\'; *tp++ = 'r';
136             buf++;
137         }
138         else if (*buf == '\b')
139         {
140             *tp++ = '\\'; *tp++ = 'b';
141             buf++;
142         }
143         else if (*buf < ' ')
144         {
145             *tp++ = '\\'; *tp++ = '^'; *tp++ = '@' + *buf;
146             buf++;
147         }
148         else
149         {
150             (void) sprintf(tp, "\\0x%02x", *buf++);
151             tp += strlen(tp);
152         }
153     }
154     *tp++ = '\0';
155     return(vbuf);
156 }
157
158 /* env.c ends here */