unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob ac5ea9592a13720dc1386b57346d456072c6cbab 3264 bytes (raw)
name: notmuch-compose.c 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
 
/* notmuch - Not much of an email program, (just index and search)
 *
 * Copyright © 2009 Carl Worth
 * Copyright © 2009 Keith Packard
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see http://www.gnu.org/licenses/ .
 *
 * Authors: Carl Worth <cworth@cworth.org>
 *	    Keith Packard <keithp@keithp.com>
 *	    Felipe Contreras <felipe.contreras@gmail.com>
 */

#include "notmuch-client.h"
#include "gmime-filter-headers.h"

static void
show_message_headers (GMimeMessage *message)
{
    GMimeStream *stream_stdout = NULL, *stream_filter = NULL;

    stream_stdout = g_mime_stream_file_new (stdout);
    if (stream_stdout) {
	g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
	stream_filter = g_mime_stream_filter_new(stream_stdout);
	if (stream_filter) {
		g_mime_stream_filter_add(GMIME_STREAM_FILTER(stream_filter),
					 g_mime_filter_headers_new());
		g_mime_object_write_to_stream(GMIME_OBJECT(message), stream_filter);
		g_object_unref(stream_filter);
	}
	g_object_unref(stream_stdout);
    }
}

static int
notmuch_compose (void *ctx, notmuch_config_t *config)
{
    GMimeMessage *msg;
    const char *from_addr = NULL;
    const char *message_id, *user_agent;
    char *simple_from;

    /* The 1 means we want headers in a "pretty" order. */
    msg = g_mime_message_new (1);
    if (msg == NULL) {
	fprintf (stderr, "Out of memory\n");
	return 1;
    }

    g_mime_message_set_subject (msg, "");

    g_mime_object_set_header (GMIME_OBJECT (msg), "To", "");

    if (from_addr == NULL)
	from_addr = notmuch_config_get_user_primary_email (config);

    simple_from = talloc_strdup (ctx, from_addr);

    from_addr = talloc_asprintf (ctx, "%s <%s>",
				 notmuch_config_get_user_name (config),
				 from_addr);
    g_mime_object_set_header (GMIME_OBJECT (msg),
			      "From", from_addr);

    g_mime_object_set_header (GMIME_OBJECT (msg), "Bcc",
			      notmuch_config_get_user_primary_email (config));

    user_agent = talloc_asprintf (ctx, "notmuch %s",
				  STRINGIFY(NOTMUCH_VERSION));
    g_mime_object_set_header (GMIME_OBJECT (msg),
			      "User-Agent", user_agent);

    message_id = talloc_asprintf (ctx, "<%lu-notmuch-%s>",
				  time(NULL),
				  simple_from);
    g_mime_object_set_header (GMIME_OBJECT (msg),
			      "Message-ID", message_id);
    talloc_free (simple_from);

    show_message_headers (msg);

    g_object_unref (G_OBJECT (msg));

    return 0;
}

int
notmuch_compose_command (void *ctx, unused (int argc), unused (char *argv[]))
{
    notmuch_config_t *config;
    int ret = 0;

    config = notmuch_config_open (ctx, NULL, NULL);
    if (config == NULL)
	return 1;

    ret = notmuch_compose (ctx, config);

    return ret;
}

debug log:

solving ac5ea95 ...
found ac5ea95 in https://yhetil.org/notmuch/1334752753-23970-2-git-send-email-felipe.contreras@gmail.com/ ||
	https://yhetil.org/notmuch/1291933972-7186-4-git-send-email-felipe.contreras@gmail.com/

applying [1/1] https://yhetil.org/notmuch/1334752753-23970-2-git-send-email-felipe.contreras@gmail.com/
diff --git a/notmuch-compose.c b/notmuch-compose.c
new file mode 100644
index 0000000..ac5ea95

Checking patch notmuch-compose.c...
Applied patch notmuch-compose.c cleanly.

skipping https://yhetil.org/notmuch/1291933972-7186-4-git-send-email-felipe.contreras@gmail.com/ for ac5ea95
index at:
100644 ac5ea9592a13720dc1386b57346d456072c6cbab	notmuch-compose.c

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).