Lines Matching defs:Charset
89 static char Charset[MAXLINE]; /* for use in reply message */
215 Charset[0] = '\0';
543 if (decode_rfc2047(Subject, decoded_subject, Charset))
546 Charset[0] = '\0';
860 * If we haven't seen a funky Subject with Charset, use the default.
864 if (Charset[0] == '\0')
865 (void) strlcpy(Charset, (seen8bitchars) ? "iso-8859-1" :
866 "us-ascii", sizeof (Charset));
867 else if ((strcasecmp(Charset, "us-ascii") == 0) && seen8bitchars)
868 (void) strlcpy(Charset, "iso-8859-1", sizeof (Charset));
870 printf("Charset is %s\n", Charset);
871 fprintf(fpipe, "Content-Type: text/plain; charset=%s\n", Charset);