summaryrefslogtreecommitdiffstats
path: root/sqwebmail/sqwebmail.c
diff options
context:
space:
mode:
authorSam Varshavchik2018-07-16 22:29:27 -0400
committerSam Varshavchik2018-07-16 22:29:27 -0400
commit9fcb48cc2119cceac2e5815e86a3514f09d253f0 (patch)
tree6348ba5a4c7b4f5b1862657addd449ebd5fc24ec /sqwebmail/sqwebmail.c
parente4f98ec36e9e4f6bec532a3b0b93bef6bbd6374a (diff)
downloadcourier-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.c4
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);