1997-11-25 06:05:25 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
2003-11-06 23:27:05 +08:00
|
|
|
* Copyright (C) 1997 Daniel Risacher
|
1997-11-25 06:05:25 +08:00
|
|
|
*
|
|
|
|
* 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 2 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, write to the Free Software
|
1998-04-13 13:44:11 +08:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2005-01-07 16:56:10 +08:00
|
|
|
* GUMP - Gimp Useless Mail Plugin (or Gump Useless Mail Plugin if
|
|
|
|
* you prefer) version about .85 I would say... give or take a few
|
|
|
|
* decimal points
|
2000-01-16 23:38:38 +08:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* by Adrian Likins <adrian@gimp.org>
|
|
|
|
* MIME encapsulation by Reagan Blundell <reagan@emails.net>
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Based heavily on gz.c by Daniel Risacher
|
|
|
|
*
|
2005-01-07 16:56:10 +08:00
|
|
|
* Lets you choose to send a image to the mail from the file save
|
|
|
|
* as dialog. images are piped to uuencode and then to mail...
|
2000-01-16 23:38:38 +08:00
|
|
|
*
|
|
|
|
*
|
2004-11-10 23:52:49 +08:00
|
|
|
* This works fine for .99.10. I havent actually tried it in
|
|
|
|
* combination with the gz plugin, but it works with all other file
|
|
|
|
* types. I will eventually get around to making sure it works with
|
|
|
|
* gz.
|
2000-01-16 23:38:38 +08:00
|
|
|
*
|
|
|
|
* To use: 1) image->File->mail image
|
2004-11-10 23:52:49 +08:00
|
|
|
* 2) when the mail dialog popups up, fill it out. Only to:
|
|
|
|
* and filename are required note: the filename needs to a
|
|
|
|
* type that the image can be saved as. otherwise you will
|
|
|
|
* just send an empty message.
|
2000-01-16 23:38:38 +08:00
|
|
|
* 3) click ok and it should be on its way
|
|
|
|
*
|
|
|
|
*
|
2004-11-10 23:52:49 +08:00
|
|
|
* NOTE: You probabaly need sendmail installed. If your sendmail is in
|
|
|
|
* an odd spot you can change the #define below. If you use
|
|
|
|
* qmail or other MTA's, and this works after changing the
|
|
|
|
* MAILER, let me know how well or what changes were needed.
|
2000-01-16 23:38:38 +08:00
|
|
|
*
|
2004-11-10 23:52:49 +08:00
|
|
|
* NOTE: Uuencode is needed. If it is in the path, it should work fine
|
|
|
|
* as is. Other- wise just change the UUENCODE.
|
2000-01-16 23:38:38 +08:00
|
|
|
*
|
|
|
|
*
|
2003-11-06 23:27:05 +08:00
|
|
|
* TODO: 1) the aforementioned abilty to specify the
|
2000-01-16 23:38:38 +08:00
|
|
|
* uuencode filename *done*
|
|
|
|
* 2) someway to do this without tmp files
|
|
|
|
* * wont happen anytime soon*
|
|
|
|
* 3) MIME? *done*
|
|
|
|
* 4) a pointlessly snazzier dialog
|
2003-11-06 23:27:05 +08:00
|
|
|
* 5) make sure it works with gz
|
2000-01-16 23:38:38 +08:00
|
|
|
* * works for .xcfgz but not .xcf.gz *
|
2003-11-06 23:27:05 +08:00
|
|
|
* 6) add an option to choose if mail get
|
2000-01-16 23:38:38 +08:00
|
|
|
* uuencode or not (or MIME'ed for that matter)
|
|
|
|
* 7) realtime preview
|
|
|
|
* 8) better entry for comments *done*
|
2003-11-06 23:27:05 +08:00
|
|
|
* 9) list of frequently used addreses
|
2000-01-16 23:38:38 +08:00
|
|
|
* 10) openGL compliance
|
|
|
|
* 11) better handling of filesave errors
|
2003-11-06 23:27:05 +08:00
|
|
|
*
|
2000-01-16 23:38:38 +08:00
|
|
|
*
|
2005-01-07 16:56:10 +08:00
|
|
|
* As always: The utility of this plugin is left as an exercise for
|
|
|
|
* the reader
|
2000-01-16 23:38:38 +08:00
|
|
|
*
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
|
|
|
|
2000-01-07 18:39:33 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2005-03-04 23:12:29 +08:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
1999-05-17 20:27:10 +08:00
|
|
|
#include <sys/types.h>
|
1997-11-25 06:05:25 +08:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sys/stat.h>
|
2005-03-04 23:12:29 +08:00
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
1997-11-25 06:05:25 +08:00
|
|
|
#include <unistd.h>
|
2005-03-04 23:12:29 +08:00
|
|
|
#endif
|
2000-01-07 18:39:33 +08:00
|
|
|
|
2005-03-04 23:12:29 +08:00
|
|
|
#include <glib/gstdio.h>
|
2000-01-07 18:39:33 +08:00
|
|
|
|
2000-01-09 04:00:10 +08:00
|
|
|
#include <libgimp/gimp.h>
|
|
|
|
#include <libgimp/gimpui.h>
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-05-30 00:35:47 +08:00
|
|
|
#include "libgimp/stdplugins-intl.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-05-02 01:01:18 +08:00
|
|
|
|
2004-11-10 23:52:49 +08:00
|
|
|
/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */
|
|
|
|
|
|
|
|
#ifdef __SUNPRO_C
|
|
|
|
#pragma align 4 (mail_icon)
|
|
|
|
#endif
|
|
|
|
#ifdef __GNUC__
|
|
|
|
static const guint8 mail_icon[] __attribute__ ((__aligned__ (4))) =
|
|
|
|
#else
|
|
|
|
static const guint8 mail_icon[] =
|
|
|
|
#endif
|
|
|
|
{ ""
|
|
|
|
/* Pixbuf magic (0x47646b50) */
|
|
|
|
"GdkP"
|
|
|
|
/* length: header (24) + pixel_data (473) */
|
|
|
|
"\0\0\1\361"
|
|
|
|
/* pixdata_type (0x2010002) */
|
|
|
|
"\2\1\0\2"
|
|
|
|
/* rowstride (64) */
|
|
|
|
"\0\0\0@"
|
|
|
|
/* width (16) */
|
|
|
|
"\0\0\0\20"
|
|
|
|
/* height (16) */
|
|
|
|
"\0\0\0\20"
|
|
|
|
/* pixel_data: */
|
|
|
|
"\261\0\0\0\0\3\0\0\0e\0\0\0\377\40\40\40\377\211\0\0\0\377\1\0\0\0e\203"
|
|
|
|
"\0\0\0\0\2\0\0\0\377ttt\377\211\365\365\365\377\2DDD\377\0\0\0\377\203"
|
|
|
|
"\0\0\0\0\15\0\0\0\377\365\365\365\377ggg\377\361\361\361\377\343\343"
|
|
|
|
"\343\377\365\365\365\377\343\343\343\377\363\363\363\377\343\343\343"
|
|
|
|
"\377\330\330\330\377VVV\377\270\270\270\377\0\0\0\377\203\0\0\0\0\15"
|
|
|
|
"\0\0\0\377\365\365\365\377\343\343\343\377hhh\377\363\363\363\377\345"
|
|
|
|
"\345\345\377\362\362\362\377\343\343\343\377\326\326\326\377YYY\377\326"
|
|
|
|
"\326\326\377\260\260\260\377\0\0\0\377\203\0\0\0\0\2\0\0\0\377\365\365"
|
|
|
|
"\365\377\202\343\343\343\377\11eee\377\363\363\363\377\343\343\343\377"
|
|
|
|
"\333\333\333\377YYY\377\343\343\343\377\323\323\323\377\260\260\260\377"
|
|
|
|
"\0\0\0\377\203\0\0\0\0\15\0\0\0\377\365\365\365\377\343\343\343\377\336"
|
|
|
|
"\336\336\377\177\177\177\377YYY\377\365\365\365\377YYY\377nnn\377\330"
|
|
|
|
"\330\330\377\306\306\306\377\257\257\257\377\0\0\0\377\203\0\0\0\0\4"
|
|
|
|
"\0\0\0\377\365\365\365\377\340\340\340\377yyy\377\202\343\343\343\377"
|
|
|
|
"\1YYY\377\202\333\333\333\377\4eee\377\266\266\266\377\257\257\257\377"
|
|
|
|
"\0\0\0\377\203\0\0\0\0\15\0\0\0\377\365\365\365\377{{{\377\343\343\343"
|
|
|
|
"\377\323\323\323\377\334\334\334\377\325\325\325\377\333\333\333\377"
|
|
|
|
"\324\324\324\377\270\270\270\377JJJ\377\265\265\265\377\0\0\0\377\203"
|
|
|
|
"\0\0\0\0\3\0\0\0\377ZZZ\377\252\252\252\377\203\253\253\253\377\1\252"
|
|
|
|
"\252\252\377\202\254\254\254\377\4\255\255\255\377\262\262\262\377DD"
|
|
|
|
"D\377\0\0\0\377\203\0\0\0\0\1\0\0\0e\213\0\0\0\377\1\0\0\0e\262\0\0\0"
|
|
|
|
"\0"};
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef SENDMAIL
|
|
|
|
#define SENDMAIL "/usr/lib/sendmail"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef UUENCODE
|
|
|
|
#define UUENCODE "uuencode"
|
|
|
|
#endif
|
|
|
|
|
2005-03-02 10:20:02 +08:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
ENCAPSULATION_UUENCODE,
|
|
|
|
ENCAPSULATION_MIME
|
|
|
|
};
|
|
|
|
|
|
|
|
#define BUFFER_SIZE 256
|
|
|
|
|
2004-11-10 23:52:49 +08:00
|
|
|
#define PLUG_IN_NAME "plug_in_mail_image"
|
|
|
|
#define HELP_ID "plug-in-mail-image"
|
|
|
|
|
2005-03-02 10:20:02 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
gchar receipt[BUFFER_SIZE];
|
|
|
|
gchar subject[BUFFER_SIZE];
|
|
|
|
gchar comment[BUFFER_SIZE];
|
|
|
|
gchar from[BUFFER_SIZE];
|
|
|
|
gchar filename[BUFFER_SIZE];
|
|
|
|
gint encapsulation;
|
2005-04-20 08:40:32 +08:00
|
|
|
} m_info;
|
2005-03-02 10:20:02 +08:00
|
|
|
|
2004-11-10 23:52:49 +08:00
|
|
|
|
2000-01-16 23:38:38 +08:00
|
|
|
static void query (void);
|
2003-07-02 20:03:08 +08:00
|
|
|
static void run (const gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
const GimpParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GimpParam **return_vals);
|
|
|
|
|
2005-04-20 08:40:32 +08:00
|
|
|
static GimpPDBStatusType save_image (const gchar *filename,
|
|
|
|
gint32 image_ID,
|
|
|
|
gint32 drawable_ID,
|
|
|
|
gint32 run_mode);
|
2003-07-02 20:03:08 +08:00
|
|
|
|
2005-04-20 08:40:32 +08:00
|
|
|
static gboolean save_dialog (void);
|
|
|
|
static void mail_entry_callback (GtkWidget *widget,
|
|
|
|
gchar *data);
|
|
|
|
static void mesg_body_callback (GtkTextBuffer *buffer,
|
|
|
|
gpointer data);
|
2003-07-02 20:03:08 +08:00
|
|
|
|
2005-03-02 10:20:02 +08:00
|
|
|
static gboolean valid_file (const gchar *filename);
|
|
|
|
static void create_headers (FILE *mailpipe);
|
|
|
|
static gchar *find_extension (const gchar *filename);
|
|
|
|
static gint to64 (FILE *infile,
|
|
|
|
FILE *outfile);
|
|
|
|
static void output64chunk (gint c1,
|
|
|
|
gint c2,
|
|
|
|
gint c3,
|
|
|
|
gint pads,
|
|
|
|
FILE *outfile);
|
|
|
|
|
|
|
|
static gint sane_dup2 (gint fd1,
|
|
|
|
gint fd2);
|
|
|
|
static FILE *sendmail_pipe (gchar **cmd,
|
|
|
|
gint *pid);
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
GimpPlugInInfo PLUG_IN_INFO =
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-01-16 23:38:38 +08:00
|
|
|
NULL, /* init_proc */
|
|
|
|
NULL, /* quit_proc */
|
|
|
|
query, /* query_proc */
|
|
|
|
run, /* run_proc */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
2000-01-16 23:38:38 +08:00
|
|
|
static m_info mail_info =
|
|
|
|
{
|
2005-03-02 10:20:02 +08:00
|
|
|
"", "", "", "", "",
|
1997-11-25 06:05:25 +08:00
|
|
|
ENCAPSULATION_MIME, /* Change this to ENCAPSULATION_UUENCODE
|
|
|
|
if you prefer that as the default */
|
|
|
|
};
|
|
|
|
|
2001-09-17 20:01:27 +08:00
|
|
|
static gchar * mesg_body = NULL;
|
2003-11-06 23:27:05 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
MAIN ()
|
|
|
|
|
|
|
|
static void
|
2000-01-16 23:38:38 +08:00
|
|
|
query (void)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
static GimpParamDef args[] =
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
{ GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive" },
|
|
|
|
{ GIMP_PDB_IMAGE, "image", "Input image" },
|
|
|
|
{ GIMP_PDB_DRAWABLE, "drawable", "Drawable to save" },
|
|
|
|
{ GIMP_PDB_STRING, "filename", "The name of the file to save the image in" },
|
|
|
|
{ GIMP_PDB_STRING, "receipt", "The email address to send to" },
|
|
|
|
{ GIMP_PDB_STRING, "from", "The email address for the From: field" },
|
|
|
|
{ GIMP_PDB_STRING, "subject", "The subject" },
|
|
|
|
{ GIMP_PDB_STRING, "comment", "The Comment" },
|
|
|
|
{ GIMP_PDB_INT32, "encapsulation", "Uuencode, MIME" }
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
1999-05-30 00:35:47 +08:00
|
|
|
|
2004-11-10 23:52:49 +08:00
|
|
|
gimp_install_procedure (PLUG_IN_NAME,
|
2000-01-31 10:32:30 +08:00
|
|
|
"pipe files to uuencode then mail them",
|
|
|
|
"You need to have uuencode and mail installed",
|
1997-11-25 06:05:25 +08:00
|
|
|
"Adrian Likins, Reagan Blundell",
|
2004-10-13 05:48:39 +08:00
|
|
|
"Adrian Likins, Reagan Blundell, Daniel Risacher, "
|
|
|
|
"Spencer Kimball and Peter Mattis",
|
1997-11-25 06:05:25 +08:00
|
|
|
"1995-1997",
|
2004-05-07 21:15:52 +08:00
|
|
|
N_("_Mail Image..."),
|
1997-11-25 06:05:25 +08:00
|
|
|
"RGB*, GRAY*, INDEXED*",
|
2000-08-22 09:26:57 +08:00
|
|
|
GIMP_PLUGIN,
|
2001-12-06 10:28:58 +08:00
|
|
|
G_N_ELEMENTS (args), 0,
|
2000-05-02 01:01:18 +08:00
|
|
|
args, NULL);
|
2004-05-07 21:15:52 +08:00
|
|
|
|
2004-11-10 23:52:49 +08:00
|
|
|
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/File/Send");
|
|
|
|
gimp_plugin_icon_register (PLUG_IN_NAME,
|
|
|
|
GIMP_ICON_TYPE_INLINE_PIXBUF, mail_icon);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-07-02 20:03:08 +08:00
|
|
|
run (const gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
const GimpParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GimpParam **return_vals)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-25 23:38:38 +08:00
|
|
|
static GimpParam values[2];
|
2001-12-29 21:26:29 +08:00
|
|
|
GimpRunMode run_mode;
|
2000-08-25 23:38:38 +08:00
|
|
|
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
|
2001-12-29 21:26:29 +08:00
|
|
|
gint32 image_ID;
|
|
|
|
gint32 drawable_ID;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-03-26 00:38:19 +08:00
|
|
|
INIT_I18N ();
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
run_mode = param[0].data.d_int32;
|
|
|
|
image_ID = param[1].data.d_image;
|
1997-11-25 06:05:25 +08:00
|
|
|
drawable_ID = param[2].data.d_drawable;
|
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
*nreturn_vals = 1;
|
|
|
|
*return_vals = values;
|
2001-12-29 21:26:29 +08:00
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
values[0].type = GIMP_PDB_STATUS;
|
|
|
|
values[0].data.d_status = GIMP_PDB_EXECUTION_ERROR;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2004-11-10 23:52:49 +08:00
|
|
|
if (strcmp (name, PLUG_IN_NAME) == 0)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
switch (run_mode)
|
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
case GIMP_RUN_INTERACTIVE:
|
2004-11-10 23:52:49 +08:00
|
|
|
gimp_get_data (PLUG_IN_NAME, &mail_info);
|
2005-04-20 08:40:32 +08:00
|
|
|
if (! strlen (mail_info.filename))
|
|
|
|
{
|
|
|
|
gchar *filename = gimp_image_get_filename (image_ID);
|
|
|
|
|
|
|
|
if (filename)
|
|
|
|
{
|
|
|
|
gchar *basename = g_path_get_basename (filename);
|
|
|
|
|
|
|
|
g_strlcpy (mail_info.filename, basename, BUFFER_SIZE);
|
|
|
|
g_free (basename);
|
|
|
|
g_free (filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! save_dialog ())
|
2000-08-22 09:26:57 +08:00
|
|
|
status = GIMP_PDB_CANCEL;
|
1997-11-25 06:05:25 +08:00
|
|
|
break;
|
2000-01-26 01:46:56 +08:00
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
case GIMP_RUN_NONINTERACTIVE:
|
1997-11-25 06:05:25 +08:00
|
|
|
/* Make sure all the arguments are there! */
|
1999-03-19 17:12:36 +08:00
|
|
|
if (nparams != 9)
|
2000-01-26 01:46:56 +08:00
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
2000-01-26 01:46:56 +08:00
|
|
|
}
|
|
|
|
else
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2005-03-02 10:20:02 +08:00
|
|
|
g_strlcpy (mail_info.filename, param[3].data.d_string, BUFFER_SIZE);
|
|
|
|
g_strlcpy (mail_info.receipt, param[4].data.d_string, BUFFER_SIZE);
|
|
|
|
g_strlcpy (mail_info.from, param[5].data.d_string, BUFFER_SIZE);
|
|
|
|
g_strlcpy (mail_info.subject, param[6].data.d_string, BUFFER_SIZE);
|
|
|
|
g_strlcpy (mail_info.comment, param[7].data.d_string, BUFFER_SIZE);
|
1999-03-19 17:12:36 +08:00
|
|
|
mail_info.encapsulation = param[8].data.d_int32;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
break;
|
2000-01-26 01:46:56 +08:00
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
case GIMP_RUN_WITH_LAST_VALS:
|
2004-11-10 23:52:49 +08:00
|
|
|
gimp_get_data (PLUG_IN_NAME, &mail_info);
|
1997-11-25 06:05:25 +08:00
|
|
|
break;
|
2003-11-06 23:27:05 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
if (status == GIMP_PDB_SUCCESS)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-01-26 01:46:56 +08:00
|
|
|
status = save_image (mail_info.filename,
|
|
|
|
image_ID,
|
|
|
|
drawable_ID,
|
|
|
|
run_mode);
|
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
if (status == GIMP_PDB_SUCCESS)
|
2005-01-07 16:56:10 +08:00
|
|
|
gimp_set_data (PLUG_IN_NAME, &mail_info, sizeof (m_info));
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2000-01-26 01:46:56 +08:00
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
2000-01-26 01:46:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
values[0].data.d_status = status;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
static GimpPDBStatusType
|
2003-07-02 20:03:08 +08:00
|
|
|
save_image (const gchar *filename,
|
|
|
|
gint32 image_ID,
|
|
|
|
gint32 drawable_ID,
|
|
|
|
gint32 run_mode)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2005-03-02 10:20:02 +08:00
|
|
|
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
|
|
|
|
gchar *ext;
|
|
|
|
gchar *tmpname;
|
|
|
|
gchar *mailcmd[3];
|
|
|
|
GPid mailpid;
|
|
|
|
pid_t uupid;
|
|
|
|
gint wpid;
|
|
|
|
gint process_status;
|
|
|
|
FILE *mailpipe;
|
|
|
|
FILE *infile;
|
|
|
|
|
|
|
|
ext = find_extension (filename);
|
|
|
|
|
|
|
|
if (ext == NULL)
|
2000-08-22 09:26:57 +08:00
|
|
|
return GIMP_PDB_CALLING_ERROR;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* get a temp name with the right extension and save into it. */
|
2000-08-25 23:38:38 +08:00
|
|
|
tmpname = gimp_temp_name (ext + 1);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* construct the "sendmail user@location" line */
|
2005-03-02 10:20:02 +08:00
|
|
|
mailcmd[0] = SENDMAIL;
|
|
|
|
mailcmd[1] = mail_info.receipt;
|
|
|
|
mailcmd[2] = NULL;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* create a pipe to sendmail */
|
2005-03-02 10:20:02 +08:00
|
|
|
mailpipe = sendmail_pipe (mailcmd, &mailpid);
|
|
|
|
|
|
|
|
if (mailpipe == NULL)
|
|
|
|
return GIMP_PDB_EXECUTION_ERROR;
|
2004-01-12 05:25:24 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
create_headers (mailpipe);
|
2003-11-06 23:27:05 +08:00
|
|
|
|
2005-01-07 16:56:10 +08:00
|
|
|
/* This is necessary to make the comments and headers work
|
2005-03-02 10:20:02 +08:00
|
|
|
* correctly. Not real sure why.
|
2005-01-07 16:56:10 +08:00
|
|
|
*/
|
2003-11-06 23:27:05 +08:00
|
|
|
fflush (mailpipe);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-25 23:38:38 +08:00
|
|
|
if (! (gimp_file_save (run_mode,
|
|
|
|
image_ID,
|
|
|
|
drawable_ID,
|
2003-11-06 23:27:05 +08:00
|
|
|
tmpname,
|
2005-05-07 03:36:12 +08:00
|
|
|
tmpname) && valid_file (tmpname)))
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2005-03-02 10:20:02 +08:00
|
|
|
goto error;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
if (mail_info.encapsulation == ENCAPSULATION_UUENCODE)
|
|
|
|
{
|
1997-11-25 06:05:25 +08:00
|
|
|
/* fork off a uuencode process */
|
2005-03-02 10:20:02 +08:00
|
|
|
if ((uupid = fork ()) < 0)
|
2000-01-26 01:46:56 +08:00
|
|
|
{
|
2003-06-13 22:37:00 +08:00
|
|
|
g_message ("fork() failed: %s", g_strerror (errno));
|
2005-03-02 10:20:02 +08:00
|
|
|
goto error;
|
2000-01-26 01:46:56 +08:00
|
|
|
}
|
2005-03-02 10:20:02 +08:00
|
|
|
else if (uupid == 0)
|
2000-01-26 01:46:56 +08:00
|
|
|
{
|
2005-03-02 10:20:02 +08:00
|
|
|
if (sane_dup2 (fileno (mailpipe), fileno (stdout)) == -1)
|
2000-01-26 01:46:56 +08:00
|
|
|
{
|
2003-06-13 22:37:00 +08:00
|
|
|
g_message ("dup2() failed: %s", g_strerror (errno));
|
2000-01-26 01:46:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
execlp (UUENCODE, UUENCODE, tmpname, filename, NULL);
|
2005-03-02 10:20:02 +08:00
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
/* What are we doing here? exec must have failed */
|
2003-06-13 22:37:00 +08:00
|
|
|
g_message ("exec failed: uuencode: %s", g_strerror (errno));
|
2000-01-26 01:46:56 +08:00
|
|
|
_exit (127);
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
else
|
2000-01-26 01:46:56 +08:00
|
|
|
{
|
2005-03-02 10:20:02 +08:00
|
|
|
wpid = waitpid (uupid, &process_status, 0);
|
2000-01-26 01:46:56 +08:00
|
|
|
|
2000-11-09 05:58:22 +08:00
|
|
|
if ((wpid < 0)
|
|
|
|
|| !WIFEXITED (process_status)
|
|
|
|
|| (WEXITSTATUS (process_status) != 0))
|
2000-01-26 01:46:56 +08:00
|
|
|
{
|
2005-03-02 10:20:02 +08:00
|
|
|
g_message ("mail didn't work or something on file '%s'",
|
2004-01-19 11:06:04 +08:00
|
|
|
gimp_filename_to_utf8 (tmpname));
|
2005-03-02 10:20:02 +08:00
|
|
|
goto error;
|
2000-01-26 01:46:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2005-03-02 10:20:02 +08:00
|
|
|
{
|
|
|
|
/* This must be MIME stuff. Base64 away... */
|
2005-03-04 23:12:29 +08:00
|
|
|
infile = g_fopen (tmpname, "r");
|
2005-03-02 10:20:02 +08:00
|
|
|
to64 (infile, mailpipe);
|
2005-01-07 16:56:10 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* close off mime */
|
2005-03-02 10:20:02 +08:00
|
|
|
if (mail_info.encapsulation == ENCAPSULATION_MIME)
|
2005-01-07 16:56:10 +08:00
|
|
|
fprintf (mailpipe, "\n--GUMP-MIME-boundary--\n");
|
2000-01-26 01:46:56 +08:00
|
|
|
}
|
|
|
|
|
2005-03-02 10:20:02 +08:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
error:
|
|
|
|
/* stop sendmail from doing anything */
|
|
|
|
kill (mailpid, SIGINT);
|
|
|
|
status = GIMP_PDB_EXECUTION_ERROR;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
/* close out the sendmail process */
|
|
|
|
fclose (mailpipe);
|
|
|
|
waitpid (mailpid, NULL, 0);
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* delete the tmpfile that was generated */
|
2005-03-04 23:12:29 +08:00
|
|
|
g_unlink (tmpname);
|
1999-10-28 06:16:20 +08:00
|
|
|
g_free (tmpname);
|
|
|
|
|
2005-03-02 10:20:02 +08:00
|
|
|
return status;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-20 08:40:32 +08:00
|
|
|
static gboolean
|
2000-01-07 18:39:33 +08:00
|
|
|
save_dialog (void)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-09-17 20:01:27 +08:00
|
|
|
GtkWidget *dlg;
|
2005-04-20 08:40:32 +08:00
|
|
|
GtkWidget *main_vbox;
|
2001-09-17 20:01:27 +08:00
|
|
|
GtkWidget *entry;
|
|
|
|
GtkWidget *table;
|
|
|
|
GtkWidget *label;
|
|
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *scrolled_window;
|
|
|
|
GtkWidget *text_view;
|
|
|
|
GtkTextBuffer *text_buffer;
|
2003-11-06 23:27:05 +08:00
|
|
|
gchar *gump_from;
|
2005-04-20 08:40:32 +08:00
|
|
|
gint row = 0;
|
2003-11-06 23:27:05 +08:00
|
|
|
gboolean run;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-05-02 01:01:18 +08:00
|
|
|
gimp_ui_init ("mail", FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2004-11-10 23:52:49 +08:00
|
|
|
/* check gimprc for a preferred "From:" address */
|
2003-11-06 23:27:05 +08:00
|
|
|
gump_from = gimp_gimprc_query ("gump-from");
|
1999-03-19 17:12:36 +08:00
|
|
|
|
2000-08-01 08:38:38 +08:00
|
|
|
if (gump_from)
|
|
|
|
{
|
2005-03-02 10:20:02 +08:00
|
|
|
g_strlcpy (mail_info.from, gump_from, BUFFER_SIZE);
|
2000-08-01 08:38:38 +08:00
|
|
|
g_free (gump_from);
|
|
|
|
}
|
2000-01-07 18:39:33 +08:00
|
|
|
|
2004-11-10 23:52:49 +08:00
|
|
|
dlg = gimp_dialog_new (_("Send as Mail"), "mail",
|
2003-11-06 23:27:05 +08:00
|
|
|
NULL, 0,
|
2004-11-10 23:52:49 +08:00
|
|
|
gimp_standard_help_func, HELP_ID,
|
2000-01-07 18:39:33 +08:00
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
|
|
|
GTK_STOCK_OK, GTK_RESPONSE_OK,
|
2000-01-07 18:39:33 +08:00
|
|
|
|
|
|
|
NULL);
|
|
|
|
|
2005-02-09 04:40:33 +08:00
|
|
|
gtk_dialog_set_alternative_button_order (GTK_DIALOG (dlg),
|
2005-03-02 10:20:02 +08:00
|
|
|
GTK_RESPONSE_OK,
|
|
|
|
GTK_RESPONSE_CANCEL,
|
|
|
|
-1);
|
2005-02-09 04:40:33 +08:00
|
|
|
|
2005-04-20 08:40:32 +08:00
|
|
|
main_vbox = gtk_vbox_new (FALSE, 12);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (main_vbox), 12);
|
|
|
|
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dlg)->vbox),
|
|
|
|
main_vbox, TRUE, TRUE, 0);
|
|
|
|
gtk_widget_show (main_vbox);
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* table */
|
2005-04-20 08:40:32 +08:00
|
|
|
table = gtk_table_new (5, 2, FALSE);
|
|
|
|
gtk_box_pack_start (GTK_BOX (main_vbox), table, FALSE, FALSE, 0);
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_widget_show (table);
|
|
|
|
|
2004-05-19 23:58:05 +08:00
|
|
|
gtk_table_set_row_spacings (GTK_TABLE (table), 6);
|
2005-04-20 08:40:32 +08:00
|
|
|
gtk_table_set_row_spacing (GTK_TABLE (table), 2, 12);
|
2004-05-19 23:58:05 +08:00
|
|
|
gtk_table_set_col_spacings (GTK_TABLE (table), 6);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-04-20 08:40:32 +08:00
|
|
|
/* Filename entry */
|
|
|
|
entry = gtk_entry_new ();
|
|
|
|
gtk_widget_set_size_request (entry, 200, -1);
|
|
|
|
gtk_entry_set_max_length (GTK_ENTRY (entry), BUFFER_SIZE - 1);
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (entry), mail_info.filename);
|
|
|
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, row++,
|
|
|
|
_("_Filename:"), 0.0, 0.5,
|
|
|
|
entry, 1, FALSE);
|
|
|
|
g_signal_connect (entry, "changed",
|
|
|
|
G_CALLBACK (mail_entry_callback),
|
|
|
|
mail_info.filename);
|
|
|
|
|
|
|
|
/* Encapsulation label */
|
|
|
|
label = gtk_label_new (_("Encapsulation:"));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.2);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, row, row + 1,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
|
|
|
|
/* Encapsulation radiobuttons */
|
|
|
|
vbox = gimp_int_radio_group_new (FALSE, NULL,
|
|
|
|
G_CALLBACK (gimp_radio_button_update),
|
|
|
|
&mail_info.encapsulation,
|
|
|
|
mail_info.encapsulation,
|
|
|
|
|
|
|
|
_("_MIME"), ENCAPSULATION_MIME, NULL,
|
|
|
|
_("_Uuencode"), ENCAPSULATION_UUENCODE, NULL,
|
|
|
|
|
|
|
|
NULL);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), vbox, 1, 2, row, row + 2,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (vbox);
|
|
|
|
row += 2;
|
|
|
|
|
|
|
|
/* To entry */
|
1997-11-25 06:05:25 +08:00
|
|
|
entry = gtk_entry_new ();
|
2001-11-12 02:35:25 +08:00
|
|
|
gtk_widget_set_size_request (entry, 200, -1);
|
2005-03-02 10:20:02 +08:00
|
|
|
gtk_entry_set_max_length (GTK_ENTRY (entry), BUFFER_SIZE - 1);
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (entry), mail_info.receipt);
|
2005-04-20 08:40:32 +08:00
|
|
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, row++,
|
2004-05-19 23:58:05 +08:00
|
|
|
_("_Recipient:"), 0.0, 0.5,
|
2000-01-31 11:13:02 +08:00
|
|
|
entry, 1, FALSE);
|
2003-01-07 14:16:02 +08:00
|
|
|
g_signal_connect (entry, "changed",
|
2001-12-29 21:26:29 +08:00
|
|
|
G_CALLBACK (mail_entry_callback),
|
2005-03-02 10:20:02 +08:00
|
|
|
mail_info.receipt);
|
1999-03-19 17:12:36 +08:00
|
|
|
|
2005-04-20 08:40:32 +08:00
|
|
|
gtk_widget_grab_focus (entry);
|
|
|
|
|
1999-11-27 02:03:59 +08:00
|
|
|
/* From entry */
|
1999-03-19 17:12:36 +08:00
|
|
|
entry = gtk_entry_new ();
|
2001-11-12 02:35:25 +08:00
|
|
|
gtk_widget_set_size_request (entry, 200, -1);
|
2005-03-02 10:20:02 +08:00
|
|
|
gtk_entry_set_max_length (GTK_ENTRY (entry), BUFFER_SIZE - 1);
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (entry), mail_info.from);
|
2005-04-20 08:40:32 +08:00
|
|
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, row++,
|
2004-05-19 23:58:05 +08:00
|
|
|
_("_Sender:"), 0.0, 0.5,
|
2000-01-31 11:13:02 +08:00
|
|
|
entry, 1, FALSE);
|
2003-01-07 14:16:02 +08:00
|
|
|
g_signal_connect (entry, "changed",
|
2001-12-29 21:26:29 +08:00
|
|
|
G_CALLBACK (mail_entry_callback),
|
2005-03-02 10:20:02 +08:00
|
|
|
mail_info.from);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Subject entry */
|
|
|
|
entry = gtk_entry_new ();
|
2001-11-12 02:35:25 +08:00
|
|
|
gtk_widget_set_size_request (entry, 200, -1);
|
2005-03-02 10:20:02 +08:00
|
|
|
gtk_entry_set_max_length (GTK_ENTRY (entry), BUFFER_SIZE - 1);
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (entry), mail_info.subject);
|
2005-04-20 08:40:32 +08:00
|
|
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, row++,
|
2004-05-19 23:58:05 +08:00
|
|
|
_("S_ubject:"), 0.0, 0.5,
|
2000-01-31 11:13:02 +08:00
|
|
|
entry, 1, FALSE);
|
2003-01-07 14:16:02 +08:00
|
|
|
g_signal_connect (entry, "changed",
|
2001-12-29 21:26:29 +08:00
|
|
|
G_CALLBACK (mail_entry_callback),
|
2005-03-02 10:20:02 +08:00
|
|
|
mail_info.subject);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-11-27 02:03:59 +08:00
|
|
|
/* Comment entry */
|
1997-11-25 06:05:25 +08:00
|
|
|
entry = gtk_entry_new ();
|
2001-11-12 02:35:25 +08:00
|
|
|
gtk_widget_set_size_request (entry, 200, -1);
|
2005-03-02 10:20:02 +08:00
|
|
|
gtk_entry_set_max_length (GTK_ENTRY (entry), BUFFER_SIZE - 1);
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (entry), mail_info.comment);
|
2005-04-20 08:40:32 +08:00
|
|
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, row++,
|
2004-05-19 23:58:05 +08:00
|
|
|
_("Comm_ent:"), 0.0, 0.5,
|
2000-01-31 11:13:02 +08:00
|
|
|
entry, 1, FALSE);
|
2003-01-07 14:16:02 +08:00
|
|
|
g_signal_connect (entry, "changed",
|
2001-12-29 21:26:29 +08:00
|
|
|
G_CALLBACK (mail_entry_callback),
|
2005-03-02 10:20:02 +08:00
|
|
|
mail_info.comment);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
|
2005-04-20 08:40:32 +08:00
|
|
|
/* Body */
|
2001-09-17 20:01:27 +08:00
|
|
|
scrolled_window = gtk_scrolled_window_new (NULL, NULL);
|
2003-11-15 21:53:33 +08:00
|
|
|
gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolled_window),
|
|
|
|
GTK_SHADOW_IN);
|
2001-09-17 20:01:27 +08:00
|
|
|
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),
|
|
|
|
GTK_POLICY_AUTOMATIC,
|
|
|
|
GTK_POLICY_AUTOMATIC);
|
2005-04-20 08:40:32 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (main_vbox), scrolled_window, TRUE, TRUE, 0);
|
2001-09-17 20:01:27 +08:00
|
|
|
gtk_widget_show (scrolled_window);
|
|
|
|
|
|
|
|
text_buffer = gtk_text_buffer_new (NULL);
|
|
|
|
|
|
|
|
text_view = gtk_text_view_new_with_buffer (text_buffer);
|
2005-03-02 10:20:02 +08:00
|
|
|
g_object_unref (text_buffer);
|
|
|
|
|
2001-09-17 20:01:27 +08:00
|
|
|
gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (text_view), GTK_WRAP_WORD);
|
|
|
|
gtk_container_add (GTK_CONTAINER (scrolled_window), text_view);
|
|
|
|
gtk_widget_show (text_view);
|
|
|
|
|
2003-01-07 14:16:02 +08:00
|
|
|
g_signal_connect (text_buffer, "changed",
|
2001-09-17 20:01:27 +08:00
|
|
|
G_CALLBACK (mesg_body_callback),
|
|
|
|
NULL);
|
1998-07-29 06:22:56 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_widget_show (dlg);
|
2000-01-16 23:38:38 +08:00
|
|
|
|
2003-11-12 02:11:56 +08:00
|
|
|
run = (gimp_dialog_run (GIMP_DIALOG (dlg)) == GTK_RESPONSE_OK);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
gtk_widget_destroy (dlg);
|
|
|
|
|
|
|
|
return run;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2005-03-02 10:20:02 +08:00
|
|
|
static gboolean
|
2003-07-02 20:03:08 +08:00
|
|
|
valid_file (const gchar *filename)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
struct stat buf;
|
|
|
|
|
2005-05-07 03:36:12 +08:00
|
|
|
return g_stat (filename, &buf) == 0 && buf.st_size > 0;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
static gchar *
|
2003-07-02 20:03:08 +08:00
|
|
|
find_content_type (const gchar *filename)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-01-16 23:38:38 +08:00
|
|
|
/* This function returns a MIME Content-type: value based on the
|
|
|
|
filename it is given. */
|
2003-07-02 20:03:08 +08:00
|
|
|
const gchar *type_mappings[20] =
|
2000-01-16 23:38:38 +08:00
|
|
|
{
|
|
|
|
"gif" , "image/gif",
|
|
|
|
"jpg" , "image/jpeg",
|
|
|
|
"jpeg", "image/jpeg",
|
|
|
|
"tif" , "image/tiff",
|
|
|
|
"tiff", "image/tiff",
|
|
|
|
"png" , "image/png",
|
|
|
|
"g3" , "image/g3fax",
|
2005-03-02 10:20:02 +08:00
|
|
|
"ps" , "application/postscript",
|
|
|
|
"eps" , "application/postscript",
|
2000-01-16 23:38:38 +08:00
|
|
|
NULL, NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
gchar *ext;
|
2005-03-02 10:20:02 +08:00
|
|
|
gint i;
|
2000-01-16 23:38:38 +08:00
|
|
|
|
|
|
|
ext = find_extension (filename);
|
2005-03-02 10:20:02 +08:00
|
|
|
|
2000-01-16 23:38:38 +08:00
|
|
|
if (!ext)
|
|
|
|
{
|
2005-03-02 10:20:02 +08:00
|
|
|
return g_strdup ("application/octet-stream");
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
2000-01-16 23:38:38 +08:00
|
|
|
|
2005-03-02 10:20:02 +08:00
|
|
|
i = 0;
|
|
|
|
ext += 1;
|
|
|
|
|
2000-01-16 23:38:38 +08:00
|
|
|
while (type_mappings[i])
|
|
|
|
{
|
2005-05-07 03:36:12 +08:00
|
|
|
if (g_ascii_strcasecmp (ext, type_mappings[i]) == 0)
|
2000-01-16 23:38:38 +08:00
|
|
|
{
|
2005-03-02 10:20:02 +08:00
|
|
|
return g_strdup (type_mappings[i + 1]);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
2005-03-02 10:20:02 +08:00
|
|
|
|
2000-01-16 23:38:38 +08:00
|
|
|
i += 2;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2005-03-02 10:20:02 +08:00
|
|
|
return g_strdup_printf ("image/x-%s", ext);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-01-16 23:38:38 +08:00
|
|
|
static gchar *
|
2003-07-02 20:03:08 +08:00
|
|
|
find_extension (const gchar *filename)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-01-16 23:38:38 +08:00
|
|
|
gchar *filename_copy;
|
|
|
|
gchar *ext;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* we never free this copy - aren't we evil! */
|
2005-01-07 16:56:10 +08:00
|
|
|
filename_copy = g_strdup (filename);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* find the extension, boy! */
|
|
|
|
ext = strrchr (filename_copy, '.');
|
|
|
|
|
2005-01-07 16:56:10 +08:00
|
|
|
while (TRUE)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2005-05-07 03:36:12 +08:00
|
|
|
if (!ext || ext[1] == '\0' || strchr (ext, G_DIR_SEPARATOR))
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2005-01-07 16:56:10 +08:00
|
|
|
g_message (_("some sort of error with the file extension "
|
|
|
|
"or lack thereof"));
|
2003-11-06 23:27:05 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2005-03-02 10:20:02 +08:00
|
|
|
|
2005-05-07 03:36:12 +08:00
|
|
|
if (0 != g_ascii_strcasecmp (ext, ".gz") &&
|
|
|
|
0 != g_ascii_strcasecmp (ext, ".bz2"))
|
2003-11-06 23:27:05 +08:00
|
|
|
{
|
1997-11-25 06:05:25 +08:00
|
|
|
return ext;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* we found somehting, loop back, and look again */
|
|
|
|
*ext = 0;
|
|
|
|
ext = strrchr (filename_copy, '.');
|
|
|
|
}
|
|
|
|
}
|
2005-01-07 16:56:10 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
return ext;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-01-26 01:46:56 +08:00
|
|
|
mail_entry_callback (GtkWidget *widget,
|
2005-03-02 10:20:02 +08:00
|
|
|
gchar *data)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2005-03-02 10:20:02 +08:00
|
|
|
g_strlcpy (data, gtk_entry_get_text (GTK_ENTRY (widget)), BUFFER_SIZE);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
static void
|
2001-09-17 20:01:27 +08:00
|
|
|
mesg_body_callback (GtkTextBuffer *buffer,
|
|
|
|
gpointer data)
|
1998-07-29 06:22:56 +08:00
|
|
|
{
|
2001-09-26 20:52:12 +08:00
|
|
|
GtkTextIter start_iter;
|
|
|
|
GtkTextIter end_iter;
|
2001-09-17 20:01:27 +08:00
|
|
|
|
2001-11-20 22:46:44 +08:00
|
|
|
gtk_text_buffer_get_bounds (buffer, &start_iter, &end_iter);
|
2005-04-20 08:40:32 +08:00
|
|
|
|
|
|
|
g_free (mesg_body);
|
2001-09-17 20:01:27 +08:00
|
|
|
mesg_body = gtk_text_buffer_get_text (buffer, &start_iter, &end_iter, FALSE);
|
2003-11-06 23:27:05 +08:00
|
|
|
}
|
1998-07-29 06:22:56 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
static void
|
2000-01-16 23:38:38 +08:00
|
|
|
create_headers (FILE *mailpipe)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
/* create all the mail header stuff. Feel free to add your own */
|
|
|
|
/* It is advisable to leave the X-Mailer header though, as */
|
|
|
|
/* there is a possibilty of a Gimp mail scanner/reader in the */
|
|
|
|
/* future. It will probabaly need that header. */
|
|
|
|
|
|
|
|
fprintf (mailpipe, "To: %s \n", mail_info.receipt);
|
|
|
|
fprintf (mailpipe, "Subject: %s \n", mail_info.subject);
|
2005-04-20 08:40:32 +08:00
|
|
|
if (strlen (mail_info.from) > 0)
|
|
|
|
fprintf (mailpipe, "From: %s \n", mail_info.from);
|
|
|
|
|
2005-03-02 10:20:02 +08:00
|
|
|
fprintf (mailpipe, "X-Mailer: GIMP Useless Mail Program %s\n", GIMP_VERSION);
|
1999-03-19 17:12:36 +08:00
|
|
|
|
2005-05-07 03:36:12 +08:00
|
|
|
if (mail_info.encapsulation == ENCAPSULATION_MIME)
|
2000-01-16 23:38:38 +08:00
|
|
|
{
|
1997-11-25 06:05:25 +08:00
|
|
|
fprintf (mailpipe, "MIME-Version: 1.0\n");
|
2005-03-02 10:20:02 +08:00
|
|
|
fprintf (mailpipe, "Content-type: multipart/mixed; "
|
|
|
|
"boundary=GUMP-MIME-boundary\n");
|
2000-01-16 23:38:38 +08:00
|
|
|
}
|
2005-03-02 10:20:02 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
fprintf (mailpipe, "\n\n");
|
2005-03-02 10:20:02 +08:00
|
|
|
|
2005-05-07 03:36:12 +08:00
|
|
|
if (mail_info.encapsulation == ENCAPSULATION_MIME)
|
2000-01-16 23:38:38 +08:00
|
|
|
{
|
1997-11-25 06:05:25 +08:00
|
|
|
fprintf (mailpipe, "--GUMP-MIME-boundary\n");
|
2005-04-20 08:40:32 +08:00
|
|
|
fprintf (mailpipe, "Content-type: text/plain; charset=UTF-8\n\n");
|
2000-01-16 23:38:38 +08:00
|
|
|
}
|
2005-03-02 10:20:02 +08:00
|
|
|
|
2005-04-20 08:40:32 +08:00
|
|
|
if (strlen (mail_info.comment) > 0)
|
|
|
|
{
|
|
|
|
fprintf (mailpipe, mail_info.comment);
|
|
|
|
fprintf (mailpipe, "\n\n");
|
|
|
|
}
|
2005-03-02 10:20:02 +08:00
|
|
|
|
2001-09-17 20:01:27 +08:00
|
|
|
if (mesg_body)
|
2003-11-06 23:27:05 +08:00
|
|
|
fprintf (mailpipe, mesg_body);
|
2005-03-02 10:20:02 +08:00
|
|
|
|
1998-07-29 06:22:56 +08:00
|
|
|
fprintf (mailpipe, "\n\n");
|
2005-03-02 10:20:02 +08:00
|
|
|
|
2005-05-07 03:36:12 +08:00
|
|
|
if (mail_info.encapsulation == ENCAPSULATION_MIME)
|
2000-01-16 23:38:38 +08:00
|
|
|
{
|
2003-07-02 20:03:08 +08:00
|
|
|
gchar *content = find_content_type (mail_info.filename);
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
fprintf (mailpipe, "--GUMP-MIME-boundary\n");
|
2005-03-02 10:20:02 +08:00
|
|
|
fprintf (mailpipe, "Content-type: %s\n", content);
|
1997-11-25 06:05:25 +08:00
|
|
|
fprintf (mailpipe, "Content-transfer-encoding: base64\n");
|
2003-07-02 20:03:08 +08:00
|
|
|
fprintf (mailpipe, "Content-disposition: attachment; filename=\"%s\"\n",
|
|
|
|
mail_info.filename);
|
2005-03-02 10:20:02 +08:00
|
|
|
fprintf (mailpipe, "Content-description: %s\n\n", mail_info.filename);
|
2003-07-02 20:03:08 +08:00
|
|
|
|
|
|
|
g_free (content);
|
2000-01-16 23:38:38 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The following code taken from codes.c in the mpack-1.5 distribution
|
2003-11-06 23:27:05 +08:00
|
|
|
* by Carnegie Mellon University.
|
|
|
|
*
|
1997-11-25 06:05:25 +08:00
|
|
|
*
|
|
|
|
* (C) Copyright 1993,1994 by Carnegie Mellon University
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
|
|
|
|
* THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
* AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
|
|
|
|
* FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
|
|
|
|
* AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)
|
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
Permission to use, copy, modify, and distribute this material
|
|
|
|
for any purpose and without fee is hereby granted, provided
|
|
|
|
that the above copyright notice and this permission notice
|
|
|
|
appear in all copies, and that the name of Bellcore not be
|
|
|
|
used in advertising or publicity pertaining to this
|
|
|
|
material without the specific, prior written permission
|
|
|
|
of an authorized representative of Bellcore. BELLCORE
|
|
|
|
MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY
|
|
|
|
OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED "AS IS",
|
1997-11-25 06:05:25 +08:00
|
|
|
WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. */
|
|
|
|
|
|
|
|
|
2000-01-16 23:38:38 +08:00
|
|
|
static gchar basis_64[] =
|
|
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-16 23:38:38 +08:00
|
|
|
static gint
|
|
|
|
to64 (FILE *infile,
|
2003-11-06 23:27:05 +08:00
|
|
|
FILE *outfile)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-01-26 01:46:56 +08:00
|
|
|
gint c1, c2, c3, ct = 0, written = 0;
|
2000-01-16 23:38:38 +08:00
|
|
|
|
|
|
|
while ((c1 = getc (infile)) != EOF)
|
|
|
|
{
|
|
|
|
c2 = getc (infile);
|
|
|
|
if (c2 == EOF)
|
|
|
|
{
|
|
|
|
output64chunk (c1, 0, 0, 2, outfile);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
c3 = getc (infile);
|
|
|
|
if (c3 == EOF)
|
|
|
|
{
|
|
|
|
output64chunk (c1, c2, 0, 1, outfile);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
output64chunk (c1, c2, c3, 0, outfile);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
}
|
2000-01-16 23:38:38 +08:00
|
|
|
ct += 4;
|
|
|
|
if (ct > 71)
|
|
|
|
{
|
|
|
|
putc ('\n', outfile);
|
|
|
|
written += 73;
|
|
|
|
ct = 0;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
}
|
2000-01-16 23:38:38 +08:00
|
|
|
if (ct)
|
|
|
|
{
|
|
|
|
putc ('\n', outfile);
|
|
|
|
ct++;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
2000-01-16 23:38:38 +08:00
|
|
|
|
|
|
|
return written + ct;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-01-16 23:38:38 +08:00
|
|
|
output64chunk (gint c1,
|
|
|
|
gint c2,
|
|
|
|
gint c3,
|
|
|
|
gint pads,
|
|
|
|
FILE *outfile)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2005-03-02 10:20:02 +08:00
|
|
|
putc (basis_64[c1 >> 2], outfile);
|
2000-01-16 23:38:38 +08:00
|
|
|
putc (basis_64[((c1 & 0x3)<< 4) | ((c2 & 0xF0) >> 4)], outfile);
|
2000-01-26 01:46:56 +08:00
|
|
|
|
2000-01-16 23:38:38 +08:00
|
|
|
if (pads == 2)
|
|
|
|
{
|
|
|
|
putc ('=', outfile);
|
|
|
|
putc ('=', outfile);
|
|
|
|
}
|
|
|
|
else if (pads)
|
|
|
|
{
|
|
|
|
putc (basis_64[((c2 & 0xF) << 2) | ((c3 & 0xC0) >>6)], outfile);
|
|
|
|
putc ('=', outfile);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
putc (basis_64[((c2 & 0xF) << 2) | ((c3 & 0xC0) >>6)], outfile);
|
|
|
|
putc (basis_64[c3 & 0x3F], outfile);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
}
|
2005-03-02 10:20:02 +08:00
|
|
|
|
|
|
|
static gint
|
|
|
|
sane_dup2 (gint fd1,
|
|
|
|
gint fd2)
|
|
|
|
{
|
|
|
|
gint ret;
|
|
|
|
|
2005-05-07 03:36:12 +08:00
|
|
|
retry:
|
2005-03-02 10:20:02 +08:00
|
|
|
ret = dup2 (fd1, fd2);
|
|
|
|
|
|
|
|
if (ret < 0 && errno == EINTR)
|
|
|
|
goto retry;
|
2005-05-07 03:36:12 +08:00
|
|
|
|
2005-03-02 10:20:02 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static FILE *
|
|
|
|
sendmail_pipe (gchar **cmd,
|
|
|
|
gint *pid)
|
|
|
|
{
|
|
|
|
gint fd;
|
|
|
|
GError *err = NULL;
|
|
|
|
|
|
|
|
if (! g_spawn_async_with_pipes (NULL, cmd, NULL, G_SPAWN_DO_NOT_REAP_CHILD,
|
|
|
|
NULL, NULL, pid, &fd, NULL, NULL, &err))
|
|
|
|
{
|
|
|
|
g_message (_("Could not start sendmail (%s)"), err->message);
|
|
|
|
g_error_free (err);
|
|
|
|
|
|
|
|
*pid = -1;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return fdopen (fd, "w");
|
|
|
|
}
|