diff options
| author | Sam Varshavchik | 2018-07-16 22:29:27 -0400 | 
|---|---|---|
| committer | Sam Varshavchik | 2018-07-16 22:29:27 -0400 | 
| commit | 9fcb48cc2119cceac2e5815e86a3514f09d253f0 (patch) | |
| tree | 6348ba5a4c7b4f5b1862657addd449ebd5fc24ec /sqwebmail/sqwebmail.c | |
| parent | e4f98ec36e9e4f6bec532a3b0b93bef6bbd6374a (diff) | |
| download | courier-libs-9fcb48cc2119cceac2e5815e86a3514f09d253f0.tar.bz2 | |
sqwebmail: update folder encoding scheme to be compatible with IMAP UTF8
Diffstat (limited to 'sqwebmail/sqwebmail.c')
| -rw-r--r-- | sqwebmail/sqwebmail.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/sqwebmail/sqwebmail.c b/sqwebmail/sqwebmail.c index 91c1013..9a77bc6 100644 --- a/sqwebmail/sqwebmail.c +++ b/sqwebmail/sqwebmail.c @@ -1080,7 +1080,7 @@ static void do_output_form_loop(FILE *f)  			char *origc, *c;  			const char *sep=""; -			origc=c=folder_fromutf7(f); +			origc=c=folder_fromutf8(f);  			if (*c && strcmp(c, INBOX))  			{ @@ -2096,7 +2096,7 @@ void rename_sent_folder(int really)  	if (strftime (buf, sizeof(buf), "." SENT ".%Y.%m-%b", tm) == 0)  		return; -	pp=folder_toutf7(buf); +	pp=folder_toutf8(buf);  	if (really)  		rename("." SENT, pp); | 
