Skip to content

Commit

Permalink
lib-lda: Add back subject sanitization to mail sending.
Browse files Browse the repository at this point in the history
Broken by acfda38
  • Loading branch information
sirainen committed Oct 25, 2016
1 parent 9954af4 commit b1d5d68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib-lda/mail-send.c
Expand Up @@ -31,7 +31,7 @@ get_var_expand_table(struct mail *mail, const char *reason,
const struct var_expand_table stack_tab[] = {
{ 'n', "\r\n", "crlf" },
{ 'r', reason, "reason" },
{ 's', subject, "subject" },
{ 's', str_sanitize(subject, 80), "subject" },
{ 't', recipient, "to" },
{ '\0', NULL, NULL }
};
Expand Down

0 comments on commit b1d5d68

Please sign in to comment.