Lines Matching refs:Charset
84 static char Charset[MAXLINE]; /* for use in reply message */ variable
210 Charset[0] = '\0';
538 if (decode_rfc2047(Subject, decoded_subject, Charset))
541 Charset[0] = '\0';
860 if (Charset[0] == '\0')
861 (void) strlcpy(Charset, (seen8bitchars) ? "iso-8859-1" :
862 "us-ascii", sizeof (Charset));
863 else if ((strcasecmp(Charset, "us-ascii") == 0) && seen8bitchars)
864 (void) strlcpy(Charset, "iso-8859-1", sizeof (Charset));
866 printf("Charset is %s\n", Charset);
867 fprintf(fpipe, "Content-Type: text/plain; charset=%s\n", Charset);