Lines Matching refs:host
197 char* host; /* IMAP server host */
1511 if (!imap->host || !imap->user || !imap->meth)
1513 register char* host;
1519 * get the host and authentication info from the imap file
1521 * <host> [ <user> [ <meth> [ <arg> ... ] ] ]
1526 while (host = sfgetr(fp, '\n', 1))
1528 for (; isspace(*host); host++);
1529 if (!*host || *host == '#')
1531 for (user = host; *user && !isspace(*user); user++);
1534 if (!imap->host || streq(imap->host, host))
1547 host = 0;
1553 host = imap->host;
1558 if (host && (!*host || streq(host, "*")))
1559 host = 0;
1560 if (!imap->host || host && !streq(host, imap->host))
1561 imap->host = host ? vmstrdup(imap->gm, host) : "local";
1592 sfprintf(imap->tp, "/dev/tcp/%s/inet.imap", imap->host);
1786 if (!imap->host || !streq(imap->host, s))
1788 imap->host = vmstrdup(imap->gm, s);
1982 sfprintf(sfstdout, " host %s\n", imap->host);