--- postfix-2.11.5/src/virtual/maildir.c.orig 2015-06-08 08:05:21.064261014 +0000 +++ postfix-2.11.5/src/virtual/maildir.c 2015-06-08 08:07:40.918261014 +0000 @@ -972,19 +972,19 @@ int deliver_maildir(LOCAL_STATE state, U if (*var_virt_maildir_limit_message_maps != 0 && (limit_message = mail_addr_find(virtual_maildir_limit_message_maps, state.msg_attr.user, (char **) NULL)) != 0) { errno = errnored; if (errno == EFBIG) { - dsb_simple(why, "5.2.2", limit_message, NULL); + dsb_simple(why, "5.2.2", "%s", limit_message, NULL); } if (errno == EDQUOT) { - dsb_simple(why, "4.2.2", limit_message, NULL); + dsb_simple(why, "4.2.2", "%s", limit_message, NULL); } } else { errno = errnored; if (errno == EFBIG) { - dsb_simple(why, "5.2.2", var_virt_maildir_limit_message, NULL); + dsb_simple(why, "5.2.2", "%s", var_virt_maildir_limit_message, NULL); } if (errno == EDQUOT) { - dsb_simple(why, "4.2.2", var_virt_maildir_limit_message, NULL); + dsb_simple(why, "4.2.2", "%s", var_virt_maildir_limit_message, NULL); } }