diff options
author | Eduardo Chappa <chappa@washington.edu> | 2020-06-29 14:23:13 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2020-06-29 14:23:13 -0600 |
commit | 8657ba4f3d3b83e9c854f0cd5792d3d88592bfc6 (patch) | |
tree | 14e560df10122ee4f5cd496fd91522c28ba0a876 /web | |
parent | c6a938d3f92a03764408db0fe3526a781002913e (diff) | |
download | alpine-8657ba4f3d3b83e9c854f0cd5792d3d88592bfc6.tar.xz |
* Extension of the privacy changes to the generation of message-id when replying,
forwarding and bouncing.
Diffstat (limited to 'web')
-rw-r--r-- | web/src/alpined.d/alpined.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/src/alpined.d/alpined.c b/web/src/alpined.d/alpined.c index 305f9d1f..7865863f 100644 --- a/web/src/alpined.d/alpined.c +++ b/web/src/alpined.d/alpined.c @@ -11116,7 +11116,7 @@ peMessageBounce(Tcl_Interp *interp, imapuid_t uid, int objc, Tcl_Obj **objv) outgoing->return_path = rfc822_cpy_adr(outgoing->from); if(!outgoing->message_id) - outgoing->message_id = generate_message_id(); + outgoing->message_id = generate_message_id(NULL); /* NO FCC */ @@ -11229,7 +11229,7 @@ peSendSpamReport(long rawno, char *to, char *subj, char *errbuf) outgoing->from = generate_from(); outgoing->subject = cpystr(subj); outgoing->return_path = rfc822_cpy_adr(outgoing->from); - outgoing->message_id = generate_message_id(); + outgoing->message_id = generate_message_id(NULL); rfc822_date(wtmp_20k_buf); outgoing->date = (unsigned char *) cpystr(wtmp_20k_buf); @@ -12570,7 +12570,7 @@ peMsgCollected(Tcl_Interp *interp, MSG_COL_S *md, char *err, long flags) rfc822_date(wtmp_20k_buf); md->outgoing->date = (unsigned char *) cpystr(wtmp_20k_buf); md->outgoing->return_path = rfc822_cpy_adr(md->outgoing->from); - md->outgoing->message_id = generate_message_id(); + md->outgoing->message_id = generate_message_id(NULL); body = mail_newbody(); @@ -12596,7 +12596,7 @@ peMsgCollected(Tcl_Interp *interp, MSG_COL_S *md, char *err, long flags) *np = mail_newbody_part(); if(a->file){ - (*np)->body.id = generate_message_id(); + (*np)->body.id = generate_message_id(NULL); (*np)->body.description = cpystr(a->l.f.description); /* set name parameter */ |