Skip to content
Snippets Groups Projects
Commit c7882e61 authored by Stephan Bosch's avatar Stephan Bosch
Browse files

lib-sieve: vacation extension: Use mail_get_first_header*() rather than mail_get_headers(*).

Only the first header is ever of interest.
parent 3a1ce369
No related branches found
No related tags found
No related merge requests found
......@@ -896,8 +896,7 @@ static int act_vacation_send
struct sieve_smtp_context *sctx;
struct ostream *output;
string_t *msg;
const char *const *headers;
const char *outmsgid, *subject, *error;
const char *header, *outmsgid, *subject, *error;
int ret;
/* Check smpt functions just to be sure */
......@@ -911,14 +910,14 @@ static int act_vacation_send
/* Make sure we have a subject for our reply */
if ( ctx->subject == NULL || *(ctx->subject) == '\0' ) {
if ( (ret=mail_get_headers_utf8
(msgdata->mail, "subject", &headers)) < 0 ) {
if ( (ret=mail_get_first_header_utf8
(msgdata->mail, "subject", &header)) < 0 ) {
return sieve_result_mail_error(aenv, msgdata->mail,
"vacation action: "
"failed to read header field `subject'");
}
if ( ret > 0 && headers[0] != NULL ) {
subject = t_strconcat("Auto: ", headers[0], NULL);
if ( ret > 0 && header != NULL ) {
subject = t_strconcat("Auto: ", header, NULL);
} else {
subject = "Automated reply";
}
......@@ -960,8 +959,8 @@ static int act_vacation_send
/* Compose proper in-reply-to and references headers */
if ( (ret=mail_get_headers
(msgdata->mail, "references", &headers)) < 0 ) {
if ( (ret=mail_get_first_header
(msgdata->mail, "references", &header)) < 0 ) {
return sieve_result_mail_error(aenv, msgdata->mail,
"vacation action: "
"failed to read header field `references'");
......@@ -970,14 +969,14 @@ static int act_vacation_send
if ( msgdata->id != NULL ) {
rfc2822_header_write(msg, "In-Reply-To", msgdata->id);
if ( ret > 0 && headers[0] != NULL ) {
if ( ret > 0 && header != NULL ) {
rfc2822_header_write(msg, "References",
t_strconcat(headers[0], " ", msgdata->id, NULL));
t_strconcat(header, " ", msgdata->id, NULL));
} else {
rfc2822_header_write(msg, "References", msgdata->id);
}
} else if ( ret > 0 && headers[0] != NULL ) {
rfc2822_header_write(msg, "References", headers[0]);
} else if ( ret > 0 && header != NULL ) {
rfc2822_header_write(msg, "References", header);
}
rfc2822_header_write(msg, "Auto-Submitted", "auto-replied (vacation)");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.