Home | History | Annotate | Download | only in mail

Lines Matching defs:charset

82 	(void)fprintf(fp, "** charset: %s\n",  XX(mip->mi_charset));
249 mip->mi_charset = cparam("charset", mime_type_field, 1);
786 run_mime_ficonv(struct mime_info *mip, const char *charset)
793 if (charset == NULL ||
795 strcasecmp(mip->mi_charset, charset) == 0 ||
799 cd = iconv_open(charset, mip->mi_charset);
810 mip->mi_charset, charset);
823 char *charset;
825 charset = value(ENAME_MIME_CHARSET);
826 if (charset && mip->mi_type && strcasecmp(mip->mi_type, "text") == 0)
827 run_mime_ficonv(mip, charset);