X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fspost.c;h=de4a6d2863b56f0cef27d52dc3648212f4bffab4;hb=ca0b3e830b86700d9e5e31b1784de2bdcaf58fc5;hp=da02d2798391206f2862149d84b9b1c14d775683;hpb=9fca5fd33b87291cdcb326c7aab6ab9574244289;p=mmh diff --git a/uip/spost.c b/uip/spost.c index da02d27..de4a6d2 100644 --- a/uip/spost.c +++ b/uip/spost.c @@ -625,11 +625,6 @@ process_bccs(char *origmsg) FILE *out = NULL; for (mp=bccs; mp; mp=mp->m_next) { - /* - ** Note: This draft file will be left existing by send(1), - ** although renamed with backup prefix. - ** TODO: We should have it removed eventually. - */ bccdraft = getcpy(m_mktemp2("/tmp/", invo_name, NULL, &out)); fprintf(out, "To: %s\n", mp->m_text); fprintf(out, "Subject: [BCC] %s", subject ? subject : ""); @@ -643,6 +638,5 @@ process_bccs(char *origmsg) mp->m_text); unlink(bccdraft); } - /* TODO: unlink renamed bcc draft after send(1) */ } }